The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of DTTableViewManager, reference 11.0.1 (ebb417), with Swift 6.0 for iOS using Xcode 16.2 on 1 Dec 2024 09:49:30 UTC.

Swift 6 data race errors: 19

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme DTTableViewManager -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

        if let cell = tableView.dequeueReusableCell(withIdentifier: mapping.reuseIdentifier) {
                                ^
UIKit.UITableView:168:15: note: calls to instance method 'dequeueReusableCell(withIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func dequeueReusableCell(withIdentifier identifier: String) -> UITableViewCell?
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:84:10: note: add '@MainActor' to make instance method 'registerCellClass(_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell:ModelTransfer>(_ cellClass : Cell.Type, handler: @escaping (Cell, Cell.ModelType, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Cell.ModelType>) -> Void)?) where Cell: UITableViewCell
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:89:47: warning: main actor-isolated property 'reuseIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if let cellReuseIdentifier = cell.reuseIdentifier, cellReuseIdentifier != mapping.reuseIdentifier {
                                              ^
UIKit.UITableViewCell:40:25: note: property declared here
    @MainActor open var reuseIdentifier: String? { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:84:10: note: add '@MainActor' to make instance method 'registerCellClass(_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell:ModelTransfer>(_ cellClass : Cell.Type, handler: @escaping (Cell, Cell.ModelType, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Cell.ModelType>) -> Void)?) where Cell: UITableViewCell
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:93:53: warning: call to main actor-isolated class method 'nibExists(withNibName:inBundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if let xibName = mapping.xibName, UINib.nibExists(withNibName: xibName, inBundle: mapping.bundle) {
                                                    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/UINib+Existance.swift:31:23: note: calls to class method 'nibExists(withNibName:inBundle:)' from outside of its actor context are implicitly asynchronous
    public class func nibExists(withNibName nibName: String,
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:84:10: note: add '@MainActor' to make instance method 'registerCellClass(_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell:ModelTransfer>(_ cellClass : Cell.Type, handler: @escaping (Cell, Cell.ModelType, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Cell.ModelType>) -> Void)?) where Cell: UITableViewCell
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:94:27: warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let nib = UINib(nibName: xibName, bundle: mapping.bundle)
                          ^
UIKit.UINib:3:41: note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
    @MainActor public /*not inherited*/ init(nibName name: String, bundle bundleOrNil: Bundle?)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:84:10: note: add '@MainActor' to make instance method 'registerCellClass(_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell:ModelTransfer>(_ cellClass : Cell.Type, handler: @escaping (Cell, Cell.ModelType, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Cell.ModelType>) -> Void)?) where Cell: UITableViewCell
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:95:27: warning: call to main actor-isolated instance method 'register(_:forCellReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                tableView.register(nib, forCellReuseIdentifier: mapping.reuseIdentifier)
                          ^
UIKit.UITableView:182:26: note: calls to instance method 'register(_:forCellReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func register(_ nib: UINib?, forCellReuseIdentifier identifier: String)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:84:10: note: add '@MainActor' to make instance method 'registerCellClass(_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell:ModelTransfer>(_ cellClass : Cell.Type, handler: @escaping (Cell, Cell.ModelType, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Cell.ModelType>) -> Void)?) where Cell: UITableViewCell
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:97:27: warning: call to main actor-isolated instance method 'register(_:forCellReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                tableView.register(Cell.self, forCellReuseIdentifier: mapping.reuseIdentifier)
                          ^
UIKit.UITableView:187:26: note: calls to instance method 'register(_:forCellReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func register(_ cellClass: AnyClass?, forCellReuseIdentifier identifier: String)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:84:10: note: add '@MainActor' to make instance method 'registerCellClass(_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell:ModelTransfer>(_ cellClass : Cell.Type, handler: @escaping (Cell, Cell.ModelType, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Cell.ModelType>) -> Void)?) where Cell: UITableViewCell
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:107:33: warning: call to main actor-isolated instance method 'dequeueReusableCell(withIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        if let cell = tableView.dequeueReusableCell(withIdentifier: mapping.reuseIdentifier) {
                                ^
UIKit.UITableView:168:15: note: calls to instance method 'dequeueReusableCell(withIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func dequeueReusableCell(withIdentifier identifier: String) -> UITableViewCell?
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:104:10: note: add '@MainActor' to make instance method 'registerCellClass(_:_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell: UITableViewCell, Model>(_ cellType: Cell.Type, _ modelType: Model.Type, handler: @escaping (Cell, Model, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Model>) -> Void)? = nil)
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:109:47: warning: main actor-isolated property 'reuseIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if let cellReuseIdentifier = cell.reuseIdentifier, cellReuseIdentifier != mapping.reuseIdentifier {
                                              ^
UIKit.UITableViewCell:40:25: note: property declared here
    @MainActor open var reuseIdentifier: String? { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:104:10: note: add '@MainActor' to make instance method 'registerCellClass(_:_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell: UITableViewCell, Model>(_ cellType: Cell.Type, _ modelType: Model.Type, handler: @escaping (Cell, Model, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Model>) -> Void)? = nil)
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:116:49: warning: call to main actor-isolated class method 'nibExists(withNibName:inBundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        if let xibName = mapping.xibName, UINib.nibExists(withNibName: xibName, inBundle: mapping.bundle) {
                                                ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/UINib+Existance.swift:31:23: note: calls to class method 'nibExists(withNibName:inBundle:)' from outside of its actor context are implicitly asynchronous
    public class func nibExists(withNibName nibName: String,
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:104:10: note: add '@MainActor' to make instance method 'registerCellClass(_:_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell: UITableViewCell, Model>(_ cellType: Cell.Type, _ modelType: Model.Type, handler: @escaping (Cell, Model, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Model>) -> Void)? = nil)
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:117:23: warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let nib = UINib(nibName: xibName, bundle: mapping.bundle)
                      ^
UIKit.UINib:3:41: note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
    @MainActor public /*not inherited*/ init(nibName name: String, bundle bundleOrNil: Bundle?)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:104:10: note: add '@MainActor' to make instance method 'registerCellClass(_:_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell: UITableViewCell, Model>(_ cellType: Cell.Type, _ modelType: Model.Type, handler: @escaping (Cell, Model, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Model>) -> Void)? = nil)
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:118:23: warning: call to main actor-isolated instance method 'register(_:forCellReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            tableView.register(nib, forCellReuseIdentifier: mapping.reuseIdentifier)
                      ^
UIKit.UITableView:182:26: note: calls to instance method 'register(_:forCellReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func register(_ nib: UINib?, forCellReuseIdentifier identifier: String)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:104:10: note: add '@MainActor' to make instance method 'registerCellClass(_:_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell: UITableViewCell, Model>(_ cellType: Cell.Type, _ modelType: Model.Type, handler: @escaping (Cell, Model, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Model>) -> Void)? = nil)
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:120:23: warning: call to main actor-isolated instance method 'register(_:forCellReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            tableView.register(Cell.self, forCellReuseIdentifier: mapping.reuseIdentifier)
                      ^
UIKit.UITableView:187:26: note: calls to instance method 'register(_:forCellReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func register(_ cellClass: AnyClass?, forCellReuseIdentifier identifier: String)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:104:10: note: add '@MainActor' to make instance method 'registerCellClass(_:_:handler:mapping:)' part of global actor 'MainActor'
    func registerCellClass<Cell: UITableViewCell, Model>(_ cellType: Cell.Type, _ modelType: Model.Type, handler: @escaping (Cell, Model, IndexPath) -> Void, mapping: ((TableViewCellModelMapping<Cell, Model>) -> Void)? = nil)
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:130:20: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        var cell = Cell(frame: .zero)
                   ^
UIKit.UITableViewCell:83:24: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    public convenience init(frame: CGRect)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:126:10: note: add '@MainActor' to make instance method 'verifyCell(_:nibName:withReuseIdentifier:in:)' part of global actor 'MainActor'
    func verifyCell<Cell:UITableViewCell>(_ cell: Cell.Type,
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:131:41: warning: call to main actor-isolated class method 'nibExists(withNibName:inBundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        if let nibName = nibName, UINib.nibExists(withNibName: nibName, inBundle: bundle) {
                                        ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/UINib+Existance.swift:31:23: note: calls to class method 'nibExists(withNibName:inBundle:)' from outside of its actor context are implicitly asynchronous
    public class func nibExists(withNibName nibName: String,
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:126:10: note: add '@MainActor' to make instance method 'verifyCell(_:nibName:withReuseIdentifier:in:)' part of global actor 'MainActor'
    func verifyCell<Cell:UITableViewCell>(_ cell: Cell.Type,
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:132:23: warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let nib = UINib(nibName: nibName, bundle: bundle)
                      ^
UIKit.UINib:3:41: note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
    @MainActor public /*not inherited*/ init(nibName name: String, bundle bundleOrNil: Bundle?)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:126:10: note: add '@MainActor' to make instance method 'verifyCell(_:nibName:withReuseIdentifier:in:)' part of global actor 'MainActor'
    func verifyCell<Cell:UITableViewCell>(_ cell: Cell.Type,
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:133:31: warning: call to main actor-isolated instance method 'instantiate(withOwner:options:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let objects = nib.instantiate(withOwner: cell, options: nil)
                              ^
UIKit.UINib:9:15: note: calls to instance method 'instantiate(withOwner:options:)' from outside of its actor context are implicitly asynchronous
    open func instantiate(withOwner ownerOrNil: Any?, options optionsOrNil: [UINib.OptionsKey : Any]? = nil) -> [Any]
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:126:10: note: add '@MainActor' to make instance method 'verifyCell(_:nibName:withReuseIdentifier:in:)' part of global actor 'MainActor'
    func verifyCell<Cell:UITableViewCell>(_ cell: Cell.Type,
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:146:43: warning: main actor-isolated property 'reuseIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        if let cellReuseIdentifier = cell.reuseIdentifier, cellReuseIdentifier != reuseIdentifier {
                                          ^
UIKit.UITableViewCell:40:25: note: property declared here
    @MainActor open var reuseIdentifier: String? { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:126:10: note: add '@MainActor' to make instance method 'verifyCell(_:nibName:withReuseIdentifier:in:)' part of global actor 'MainActor'
    func verifyCell<Cell:UITableViewCell>(_ cell: Cell.Type,
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:153:43: warning: main actor-isolated property 'reuseIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        if let cellReuseIdentifier = cell.reuseIdentifier, cellReuseIdentifier != reuseIdentifier {
                                          ^
UIKit.UITableViewCell:40:25: note: property declared here
    @MainActor open var reuseIdentifier: String? { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:151:10: note: add '@MainActor' to make instance method 'verifyCellInstance(_:withReuseIdentifier:)' part of global actor 'MainActor'
    func verifyCellInstance(_ cell: UITableViewCell,
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:159:20: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        var view = View(frame: .zero)
                   ^
UIKit.UIView:4:23: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(frame: CGRect)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:158:10: note: add '@MainActor' to make instance method 'verifyHeaderFooterView(_:nibName:in:)' part of global actor 'MainActor'
    func verifyHeaderFooterView<View:UIView>(_ view: View.Type, nibName: String?, in bundle: Bundle) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:160:41: warning: call to main actor-isolated class method 'nibExists(withNibName:inBundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        if let nibName = nibName, UINib.nibExists(withNibName: nibName, inBundle: bundle) {
                                        ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/UINib+Existance.swift:31:23: note: calls to class method 'nibExists(withNibName:inBundle:)' from outside of its actor context are implicitly asynchronous
    public class func nibExists(withNibName nibName: String,
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:158:10: note: add '@MainActor' to make instance method 'verifyHeaderFooterView(_:nibName:in:)' part of global actor 'MainActor'
    func verifyHeaderFooterView<View:UIView>(_ view: View.Type, nibName: String?, in bundle: Bundle) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:161:23: warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let nib = UINib(nibName: nibName, bundle: bundle)
                      ^
UIKit.UINib:3:41: note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
    @MainActor public /*not inherited*/ init(nibName name: String, bundle bundleOrNil: Bundle?)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:158:10: note: add '@MainActor' to make instance method 'verifyHeaderFooterView(_:nibName:in:)' part of global actor 'MainActor'
    func verifyHeaderFooterView<View:UIView>(_ view: View.Type, nibName: String?, in bundle: Bundle) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:162:31: warning: call to main actor-isolated instance method 'instantiate(withOwner:options:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let objects = nib.instantiate(withOwner: view, options: nil)
                              ^
UIKit.UINib:9:15: note: calls to instance method 'instantiate(withOwner:options:)' from outside of its actor context are implicitly asynchronous
    open func instantiate(withOwner ownerOrNil: Any?, options optionsOrNil: [UINib.OptionsKey : Any]? = nil) -> [Any]
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:158:10: note: add '@MainActor' to make instance method 'verifyHeaderFooterView(_:nibName:in:)' part of global actor 'MainActor'
    func verifyHeaderFooterView<View:UIView>(_ view: View.Type, nibName: String?, in bundle: Bundle) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:182:53: warning: call to main actor-isolated class method 'nibExists(withNibName:inBundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if let nibName = mapping.xibName, UINib.nibExists(withNibName: nibName, inBundle: mapping.bundle) {
                                                    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/UINib+Existance.swift:31:23: note: calls to class method 'nibExists(withNibName:inBundle:)' from outside of its actor context are implicitly asynchronous
    public class func nibExists(withNibName nibName: String,
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:177:10: note: add '@MainActor' to make instance method 'registerSupplementaryClass(_:ofKind:handler:mapping:)' part of global actor 'MainActor'
    func registerSupplementaryClass<View:ModelTransfer>(_ supplementaryClass: View.Type, ofKind kind: String, handler: @escaping (View, View.ModelType, Int) -> Void, mapping: ((TableViewHeaderFooterViewModelMapping<View, View.ModelType>) -> Void)?) where View:UIView
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:183:27: warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let nib = UINib(nibName: nibName, bundle: mapping.bundle)
                          ^
UIKit.UINib:3:41: note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
    @MainActor public /*not inherited*/ init(nibName name: String, bundle bundleOrNil: Bundle?)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:177:10: note: add '@MainActor' to make instance method 'registerSupplementaryClass(_:ofKind:handler:mapping:)' part of global actor 'MainActor'
    func registerSupplementaryClass<View:ModelTransfer>(_ supplementaryClass: View.Type, ofKind kind: String, handler: @escaping (View, View.ModelType, Int) -> Void, mapping: ((TableViewHeaderFooterViewModelMapping<View, View.ModelType>) -> Void)?) where View:UIView
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:184:27: warning: call to main actor-isolated instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                tableView.register(nib, forHeaderFooterViewReuseIdentifier: mapping.reuseIdentifier)
                          ^
UIKit.UITableView:192:15: note: calls to instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func register(_ nib: UINib?, forHeaderFooterViewReuseIdentifier identifier: String)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:177:10: note: add '@MainActor' to make instance method 'registerSupplementaryClass(_:ofKind:handler:mapping:)' part of global actor 'MainActor'
    func registerSupplementaryClass<View:ModelTransfer>(_ supplementaryClass: View.Type, ofKind kind: String, handler: @escaping (View, View.ModelType, Int) -> Void, mapping: ((TableViewHeaderFooterViewModelMapping<View, View.ModelType>) -> Void)?) where View:UIView
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:186:27: warning: call to main actor-isolated instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                tableView.register(View.self, forHeaderFooterViewReuseIdentifier: mapping.reuseIdentifier)
                          ^
UIKit.UITableView:197:15: note: calls to instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func register(_ aClass: AnyClass?, forHeaderFooterViewReuseIdentifier identifier: String)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:177:10: note: add '@MainActor' to make instance method 'registerSupplementaryClass(_:ofKind:handler:mapping:)' part of global actor 'MainActor'
    func registerSupplementaryClass<View:ModelTransfer>(_ supplementaryClass: View.Type, ofKind kind: String, handler: @escaping (View, View.ModelType, Int) -> Void, mapping: ((TableViewHeaderFooterViewModelMapping<View, View.ModelType>) -> Void)?) where View:UIView
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:198:53: warning: call to main actor-isolated class method 'nibExists(withNibName:inBundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if let nibName = mapping.xibName, UINib.nibExists(withNibName: nibName, inBundle: mapping.bundle) {
                                                    ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/UINib+Existance.swift:31:23: note: calls to class method 'nibExists(withNibName:inBundle:)' from outside of its actor context are implicitly asynchronous
    public class func nibExists(withNibName nibName: String,
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:193:10: note: add '@MainActor' to make instance method 'registerSupplementaryClass(_:ofKind:handler:mapping:)' part of global actor 'MainActor'
    func registerSupplementaryClass<View, Model>(_ supplementaryClass: View.Type, ofKind kind: String, handler: @escaping (View, Model, Int) -> Void, mapping: ((TableViewHeaderFooterViewModelMapping<View, Model>) -> Void)?) where View:UIView
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:199:27: warning: call to main actor-isolated initializer 'init(nibName:bundle:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let nib = UINib(nibName: nibName, bundle: mapping.bundle)
                          ^
UIKit.UINib:3:41: note: calls to initializer 'init(nibName:bundle:)' from outside of its actor context are implicitly asynchronous
    @MainActor public /*not inherited*/ init(nibName name: String, bundle bundleOrNil: Bundle?)
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:193:10: note: add '@MainActor' to make instance method 'registerSupplementaryClass(_:ofKind:handler:mapping:)' part of global actor 'MainActor'
    func registerSupplementaryClass<View, Model>(_ supplementaryClass: View.Type, ofKind kind: String, handler: @escaping (View, Model, Int) -> Void, mapping: ((TableViewHeaderFooterViewModelMapping<View, Model>) -> Void)?) where View:UIView
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:200:27: warning: call to main actor-isolated instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                tableView.register(nib, forHeaderFooterViewReuseIdentifier: mapping.reuseIdentifier)
                          ^
UIKit.UITableView:192:15: note: calls to instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func register(_ nib: UINib?, forHeaderFooterViewReuseIdentifier identifier: String)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:193:10: note: add '@MainActor' to make instance method 'registerSupplementaryClass(_:ofKind:handler:mapping:)' part of global actor 'MainActor'
    func registerSupplementaryClass<View, Model>(_ supplementaryClass: View.Type, ofKind kind: String, handler: @escaping (View, Model, Int) -> Void, mapping: ((TableViewHeaderFooterViewModelMapping<View, Model>) -> Void)?) where View:UIView
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:202:27: warning: call to main actor-isolated instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                tableView.register(View.self, forHeaderFooterViewReuseIdentifier: mapping.reuseIdentifier)
                          ^
UIKit.UITableView:197:15: note: calls to instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func register(_ aClass: AnyClass?, forHeaderFooterViewReuseIdentifier identifier: String)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:193:10: note: add '@MainActor' to make instance method 'registerSupplementaryClass(_:ofKind:handler:mapping:)' part of global actor 'MainActor'
    func registerSupplementaryClass<View, Model>(_ supplementaryClass: View.Type, ofKind kind: String, handler: @escaping (View, Model, Int) -> Void, mapping: ((TableViewHeaderFooterViewModelMapping<View, Model>) -> Void)?) where View:UIView
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:214:19: warning: call to main actor-isolated instance method 'register(_:forCellReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        tableView.register(nil as AnyClass?, forCellReuseIdentifier: String(describing: Cell.self))
                  ^
UIKit.UITableView:187:26: note: calls to instance method 'register(_:forCellReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func register(_ cellClass: AnyClass?, forCellReuseIdentifier identifier: String)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:209:10: note: add '@MainActor' to make instance method 'unregisterCellClass' part of global actor 'MainActor'
    func unregisterCellClass<Cell:ModelTransfer>(_ cellClass: Cell.Type) where Cell: UITableViewCell {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:215:19: warning: call to main actor-isolated instance method 'register(_:forCellReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        tableView.register(nil as UINib?, forCellReuseIdentifier: String(describing: Cell.self))
                  ^
UIKit.UITableView:182:26: note: calls to instance method 'register(_:forCellReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func register(_ nib: UINib?, forCellReuseIdentifier identifier: String)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:209:10: note: add '@MainActor' to make instance method 'unregisterCellClass' part of global actor 'MainActor'
    func unregisterCellClass<Cell:ModelTransfer>(_ cellClass: Cell.Type) where Cell: UITableViewCell {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:223:19: warning: call to main actor-isolated instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        tableView.register(nil as AnyClass?, forHeaderFooterViewReuseIdentifier: String(describing: View.self))
                  ^
UIKit.UITableView:197:15: note: calls to instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func register(_ aClass: AnyClass?, forHeaderFooterViewReuseIdentifier identifier: String)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:218:10: note: add '@MainActor' to make instance method 'unregisterHeaderClass' part of global actor 'MainActor'
    func unregisterHeaderClass<View:ModelTransfer>(_ headerClass: View.Type) where View: UIView {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:224:19: warning: call to main actor-isolated instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        tableView.register(nil as UINib?, forHeaderFooterViewReuseIdentifier: String(describing: self))
                  ^
UIKit.UITableView:192:15: note: calls to instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func register(_ nib: UINib?, forHeaderFooterViewReuseIdentifier identifier: String)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:218:10: note: add '@MainActor' to make instance method 'unregisterHeaderClass' part of global actor 'MainActor'
    func unregisterHeaderClass<View:ModelTransfer>(_ headerClass: View.Type) where View: UIView {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:232:19: warning: call to main actor-isolated instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        tableView.register(nil as AnyClass?, forHeaderFooterViewReuseIdentifier: String(describing: View.self))
                  ^
UIKit.UITableView:197:15: note: calls to instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func register(_ aClass: AnyClass?, forHeaderFooterViewReuseIdentifier identifier: String)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:227:10: note: add '@MainActor' to make instance method 'unregisterFooterClass' part of global actor 'MainActor'
    func unregisterFooterClass<View:ModelTransfer>(_ footerClass: View.Type) where View: UIView {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:233:19: warning: call to main actor-isolated instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        tableView.register(nil as UINib?, forHeaderFooterViewReuseIdentifier: String(describing: self))
                  ^
UIKit.UITableView:192:15: note: calls to instance method 'register(_:forHeaderFooterViewReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
    open func register(_ nib: UINib?, forHeaderFooterViewReuseIdentifier identifier: String)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:227:10: note: add '@MainActor' to make instance method 'unregisterFooterClass' part of global actor 'MainActor'
    func unregisterFooterClass<View:ModelTransfer>(_ footerClass: View.Type) where View: UIView {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:255:36: warning: call to main actor-isolated instance method 'cellForRow(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        guard let cell = tableView.cellForRow(at: indexPath) else { return }
                                   ^
UIKit.UITableView:67:15: note: calls to instance method 'cellForRow(at:)' from outside of its actor context are implicitly asynchronous
    open func cellForRow(at indexPath: IndexPath) -> UITableViewCell?
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift:254:10: note: add '@MainActor' to make instance method 'updateCellAt(_:with:)' part of global actor 'MainActor'
    func updateCellAt(_ indexPath : IndexPath, with model: Any) {
         ^
    @MainActor
SwiftCompile normal arm64 Compiling\ TableViewHeaderFooterViewModelMapping.swift,\ TableViewUpdater.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift:51:49: warning: call to main actor-isolated instance method 'dequeueReusableHeaderFooterView(withIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if let headerFooterView = tableView.dequeueReusableHeaderFooterView(withIdentifier: self.reuseIdentifier) {
                                                ^
UIKit.UITableView:177:26: note: calls to instance method 'dequeueReusableHeaderFooterView(withIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func dequeueReusableHeaderFooterView(withIdentifier identifier: String) -> UITableViewHeaderFooterView?
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift:88:49: warning: call to main actor-isolated instance method 'dequeueReusableHeaderFooterView(withIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if let headerFooterView = tableView.dequeueReusableHeaderFooterView(withIdentifier: self.reuseIdentifier) {
                                                ^
UIKit.UITableView:177:26: note: calls to instance method 'dequeueReusableHeaderFooterView(withIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func dequeueReusableHeaderFooterView(withIdentifier identifier: String) -> UITableViewHeaderFooterView?
                         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewHeaderFooterViewModelMapping.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewUpdater.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:84:49: warning: main actor-isolated property 'window' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        if !animateChangesOffScreen, tableView?.window == nil {
                                                ^
UIKit.UIView:4:25: note: property declared here
    @MainActor open var window: UIWindow? { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:80:15: note: add '@MainActor' to make instance method 'storageDidPerformUpdate' part of global actor 'MainActor'
    open func storageDidPerformUpdate(_ update : StorageUpdate)
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:85:24: warning: call to main actor-isolated instance method 'reloadData()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            tableView?.reloadData()
                       ^
UIKit.UITableView:128:15: note: calls to instance method 'reloadData()' from outside of its actor context are implicitly asynchronous
    open func reloadData()
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:80:15: note: add '@MainActor' to make instance method 'storageDidPerformUpdate' part of global actor 'MainActor'
    open func storageDidPerformUpdate(_ update : StorageUpdate)
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:90:20: warning: call to main actor-isolated instance method 'performBatchUpdates(_:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        tableView?.performBatchUpdates({ [weak self] in
                   ^
UIKit.UITableView:89:15: note: calls to instance method 'performBatchUpdates(_:completion:)' from outside of its actor context are implicitly asynchronous
    open func performBatchUpdates(_ updates: (() -> Void)?, completion: ((Bool) -> Void)? = nil)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:80:15: note: add '@MainActor' to make instance method 'storageDidPerformUpdate' part of global actor 'MainActor'
    open func storageDidPerformUpdate(_ update : StorageUpdate)
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:106:32: warning: call to main actor-isolated instance method 'insertRows(at:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    tableView?.insertRows(at: [indexPath], with: insertRowAnimation)
                               ^
UIKit.UITableView:105:15: note: calls to instance method 'insertRows(at:with:)' from outside of its actor context are implicitly asynchronous
    open func insertRows(at indexPaths: [IndexPath], with animation: UITableView.RowAnimation)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:101:18: note: add '@MainActor' to make instance method 'applyObjectChanges(from:)' part of global actor 'MainActor'
    private func applyObjectChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:110:32: warning: call to main actor-isolated instance method 'deleteRows(at:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    tableView?.deleteRows(at: [indexPath], with: deleteRowAnimation)
                               ^
UIKit.UITableView:108:15: note: calls to instance method 'deleteRows(at:with:)' from outside of its actor context are implicitly asynchronous
    open func deleteRows(at indexPaths: [IndexPath], with animation: UITableView.RowAnimation)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:101:18: note: add '@MainActor' to make instance method 'applyObjectChanges(from:)' part of global actor 'MainActor'
    private func applyObjectChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:117:36: warning: call to main actor-isolated instance method 'reloadRows(at:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        tableView?.reloadRows(at: [indexPath], with: reloadRowAnimation)
                                   ^
UIKit.UITableView:117:15: note: calls to instance method 'reloadRows(at:with:)' from outside of its actor context are implicitly asynchronous
    open func reloadRows(at indexPaths: [IndexPath], with animation: UITableView.RowAnimation)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:101:18: note: add '@MainActor' to make instance method 'applyObjectChanges(from:)' part of global actor 'MainActor'
    private func applyObjectChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:123:36: warning: call to main actor-isolated instance method 'moveRow(at:to:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        tableView?.moveRow(at: source, to: destination)
                                   ^
UIKit.UITableView:112:15: note: calls to instance method 'moveRow(at:to:)' from outside of its actor context are implicitly asynchronous
    open func moveRow(at indexPath: IndexPath, to newIndexPath: IndexPath)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:101:18: note: add '@MainActor' to make instance method 'applyObjectChanges(from:)' part of global actor 'MainActor'
    private func applyObjectChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:125:36: warning: call to main actor-isolated instance method 'deleteRows(at:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        tableView?.deleteRows(at: [source], with: deleteRowAnimation)
                                   ^
UIKit.UITableView:108:15: note: calls to instance method 'deleteRows(at:with:)' from outside of its actor context are implicitly asynchronous
    open func deleteRows(at indexPaths: [IndexPath], with animation: UITableView.RowAnimation)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:101:18: note: add '@MainActor' to make instance method 'applyObjectChanges(from:)' part of global actor 'MainActor'
    private func applyObjectChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:126:36: warning: call to main actor-isolated instance method 'insertRows(at:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                        tableView?.insertRows(at: [destination], with: insertRowAnimation)
                                   ^
UIKit.UITableView:105:15: note: calls to instance method 'insertRows(at:with:)' from outside of its actor context are implicitly asynchronous
    open func insertRows(at indexPaths: [IndexPath], with animation: UITableView.RowAnimation)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:101:18: note: add '@MainActor' to make instance method 'applyObjectChanges(from:)' part of global actor 'MainActor'
    private func applyObjectChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:138:32: warning: call to main actor-isolated instance method 'deleteSections(_:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    tableView?.deleteSections([index], with: deleteSectionAnimation)
                               ^
UIKit.UITableView:95:15: note: calls to instance method 'deleteSections(_:with:)' from outside of its actor context are implicitly asynchronous
    open func deleteSections(_ sections: IndexSet, with animation: UITableView.RowAnimation)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:133:18: note: add '@MainActor' to make instance method 'applySectionChanges(from:)' part of global actor 'MainActor'
    private func applySectionChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:142:32: warning: call to main actor-isolated instance method 'insertSections(_:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    tableView?.insertSections([index], with: insertSectionAnimation)
                               ^
UIKit.UITableView:92:15: note: calls to instance method 'insertSections(_:with:)' from outside of its actor context are implicitly asynchronous
    open func insertSections(_ sections: IndexSet, with animation: UITableView.RowAnimation)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:133:18: note: add '@MainActor' to make instance method 'applySectionChanges(from:)' part of global actor 'MainActor'
    private func applySectionChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:146:32: warning: call to main actor-isolated instance method 'reloadSections(_:with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    tableView?.reloadSections([index], with: reloadSectionAnimation)
                               ^
UIKit.UITableView:101:15: note: calls to instance method 'reloadSections(_:with:)' from outside of its actor context are implicitly asynchronous
    open func reloadSections(_ sections: IndexSet, with animation: UITableView.RowAnimation)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:133:18: note: add '@MainActor' to make instance method 'applySectionChanges(from:)' part of global actor 'MainActor'
    private func applySectionChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:150:32: warning: call to main actor-isolated instance method 'moveSection(_:toSection:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    tableView?.moveSection(source, toSection: destination)
                               ^
UIKit.UITableView:99:15: note: calls to instance method 'moveSection(_:toSection:)' from outside of its actor context are implicitly asynchronous
    open func moveSection(_ section: Int, toSection newSection: Int)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:133:18: note: add '@MainActor' to make instance method 'applySectionChanges(from:)' part of global actor 'MainActor'
    private func applySectionChanges(from update: StorageUpdate) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:160:20: warning: call to main actor-isolated instance method 'reloadData()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        tableView?.reloadData()
                   ^
UIKit.UITableView:128:15: note: calls to instance method 'reloadData()' from outside of its actor context are implicitly asynchronous
    open func reloadData()
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:157:15: note: add '@MainActor' to make instance method 'storageNeedsReloading()' part of global actor 'MainActor'
    open func storageNeedsReloading()
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:90:20: warning: sending task-isolated value of type '() -> Void' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
        tableView?.performBatchUpdates({ [weak self] in
        ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift:90:20: warning: sending task-isolated value of type '(Bool) -> Void' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
        tableView?.performBatchUpdates({ [weak self] in
        ~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftDriverJobDiscovery normal arm64 Compiling ViewModelMapping.swift (in target 'DTModelStorage' from project 'DTModelStorage')
SwiftCompile normal arm64 Compiling\ HostingTableViewCell.swift,\ TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/HostingTableViewCell.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/TableViewCellModelMapping.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift:70:34: warning: call to main actor-isolated instance method 'dequeueReusableCell(withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let cell = tableView.dequeueReusableCell(withIdentifier: self.reuseIdentifier, for: indexPath)
                                 ^
UIKit.UITableView:172:26: note: calls to instance method 'dequeueReusableCell(withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func dequeueReusableCell(withIdentifier identifier: String, for indexPath: IndexPath) -> UITableViewCell
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift:102:34: warning: call to main actor-isolated instance method 'dequeueReusableCell(withIdentifier:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let cell = tableView.dequeueReusableCell(withIdentifier: self.reuseIdentifier, for: indexPath)
                                 ^
UIKit.UITableView:172:26: note: calls to instance method 'dequeueReusableCell(withIdentifier:for:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func dequeueReusableCell(withIdentifier identifier: String, for indexPath: IndexPath) -> UITableViewCell
                         ^
SwiftDriverJobDiscovery normal arm64 Compiling CoreDataStorage.swift, EventReactions.swift (in target 'DTModelStorage' from project 'DTModelStorage')
SwiftDriverJobDiscovery normal arm64 Compiling DTTableViewDropPlaceholderContext.swift, DTTableViewManager+DataSource.swift, DTTableViewManager+Delegate.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftCompile normal arm64 Compiling\ DTTableViewDiffableDataSource.swift,\ DTTableViewDragDelegate.swift,\ DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDiffableDataSource.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDragDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDropDelegate.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDiffableDataSource.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDragDelegate.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDropDelegate.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDiffableDataSource.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDragDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDropDelegate.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDiffableDataSource.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDragDelegate.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDropDelegate.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:101:10: warning: main actor-isolated instance method 'numberOfSections()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    func numberOfSections() -> Int {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:101:10: note: add 'nonisolated' to 'numberOfSections()' to make this instance method not isolated to the actor
    func numberOfSections() -> Int {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:155: note: add '@preconcurrency' to the 'Storage' conformance to defer isolation checking to run time
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                                                                                                                                          ^
                                                                                                                                                          @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/StorageProtocols.swift:33:10: note: mark the protocol requirement 'numberOfSections()' 'async' to allow actor-isolated conformances
    func numberOfSections() -> Int
         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:105:10: warning: main actor-isolated instance method 'numberOfItems(inSection:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    func numberOfItems(inSection section: Int) -> Int {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:105:10: note: add 'nonisolated' to 'numberOfItems(inSection:)' to make this instance method not isolated to the actor
    func numberOfItems(inSection section: Int) -> Int {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/StorageProtocols.swift:36:10: note: mark the protocol requirement 'numberOfItems(inSection:)' 'async' to allow actor-isolated conformances
    func numberOfItems(inSection section: Int) -> Int
         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:109:10: warning: main actor-isolated instance method 'item(at:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    func item(at indexPath: IndexPath) -> Any? {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:109:10: note: add 'nonisolated' to 'item(at:)' to make this instance method not isolated to the actor
    func item(at indexPath: IndexPath) -> Any? {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/StorageProtocols.swift:39:10: note: mark the protocol requirement 'item(at:)' 'async' to allow actor-isolated conformances
    func item(at indexPath: IndexPath) -> Any?
         ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:54:9: warning: main actor-isolated property 'headerModelProvider' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    var headerModelProvider: ((Int) -> Any?)?
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:164: note: add '@preconcurrency' to the 'SupplementaryStorage' conformance to defer isolation checking to run time
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                                                                                                                                                   ^
                                                                                                                                                                   @preconcurrency
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/StorageProtocols.swift:46:9: note: 'headerModelProvider' declared here
    var headerModelProvider: ((_ sectionIndex: Int) -> Any?)? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:57:9: warning: main actor-isolated property 'footerModelProvider' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    var footerModelProvider: ((Int) -> Any?)?
        ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/StorageProtocols.swift:49:9: note: 'footerModelProvider' declared here
    var footerModelProvider: ((_ sectionIndex: Int) -> Any?)? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:70:9: warning: main actor-isolated property 'supplementaryModelProvider' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    var supplementaryModelProvider: ((String, IndexPath) -> Any?)? {
        ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/StorageProtocols.swift:52:9: note: 'supplementaryModelProvider' declared here
    var supplementaryModelProvider: ((_ kind: String, _ sectionIndexPath: IndexPath) -> Any?)? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:88:9: warning: main actor-isolated property 'supplementaryHeaderKind' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    var supplementaryHeaderKind: String?
        ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/StorageProtocols.swift:55:9: note: 'supplementaryHeaderKind' declared here
    var supplementaryHeaderKind: String? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:91:9: warning: main actor-isolated property 'supplementaryFooterKind' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    var supplementaryFooterKind: String?
        ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage/Sources/DTModelStorage/StorageProtocols.swift:58:9: note: 'supplementaryFooterKind' declared here
    var supplementaryFooterKind: String?  { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift:64:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    public var minimalHeaderHeightForTableView: (UITableView) -> CGFloat = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift:69:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    public var minimalFooterHeightForTableView: (UITableView) -> CGFloat = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:98:15: warning: type 'SectionIdentifierType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        super.init(tableView: tableView, cellProvider: cellProvider)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:37: note: consider making generic parameter 'SectionIdentifierType' conform to the 'Sendable' protocol
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                    ^
                                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:98:15: warning: type 'ItemIdentifierType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        super.init(tableView: tableView, cellProvider: cellProvider)
              ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:60: note: consider making generic parameter 'ItemIdentifierType' conform to the 'Sendable' protocol
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                                           ^
                                                                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:102:9: warning: type 'SectionIdentifierType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        numberOfSections(in: tableView)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:37: note: consider making generic parameter 'SectionIdentifierType' conform to the 'Sendable' protocol
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                    ^
                                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:102:9: warning: type 'ItemIdentifierType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        numberOfSections(in: tableView)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:60: note: consider making generic parameter 'ItemIdentifierType' conform to the 'Sendable' protocol
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                                           ^
                                                                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:106:9: warning: type 'SectionIdentifierType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        tableView(tableView, numberOfRowsInSection: section)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:37: note: consider making generic parameter 'SectionIdentifierType' conform to the 'Sendable' protocol
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                    ^
                                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:106:9: warning: type 'ItemIdentifierType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        tableView(tableView, numberOfRowsInSection: section)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:60: note: consider making generic parameter 'ItemIdentifierType' conform to the 'Sendable' protocol
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                                           ^
                                                                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:110:36: warning: type 'SectionIdentifierType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        guard let itemIdentifier = itemIdentifier(for: indexPath) else {
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:37: note: consider making generic parameter 'SectionIdentifierType' conform to the 'Sendable' protocol
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                    ^
                                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:110:36: warning: type 'ItemIdentifierType' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
        guard let itemIdentifier = itemIdentifier(for: indexPath) else {
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift:33:60: note: consider making generic parameter 'ItemIdentifierType' conform to the 'Sendable' protocol
class DTTableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>: UITableViewDiffableDataSource<SectionIdentifierType, ItemIdentifierType>, Storage, SupplementaryStorage
                                                           ^
                                                                             : Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDiffableDataSource.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDragDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDropDelegate.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDiffableDataSource.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDragDelegate.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDropDelegate.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift:100:20: warning: main actor-isolated property 'dragDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        tableView?.dragDelegate = nil
                   ^
UIKit.UITableView:16:30: note: mutation of this property is only permitted within the actor
    @MainActor weak open var dragDelegate: (any UITableViewDragDelegate)? { get set }
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift:101:20: warning: main actor-isolated property 'dragDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        tableView?.dragDelegate = self
                   ^
UIKit.UITableView:16:30: note: mutation of this property is only permitted within the actor
    @MainActor weak open var dragDelegate: (any UITableViewDragDelegate)? { get set }
                             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDelegateWrapper.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDiffableDataSource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDragDelegate.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropPlaceholderContext.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+DataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Delegate.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Deprecated.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drag.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Drop.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Prefetch.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+Registration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager+SwiftUIRegistration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManager.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewManagerAnomalyHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewPrefetchDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingCellViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingConfigurationViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/HostingTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewCellModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewHeaderFooterViewModelMapping.swift /Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/TableViewUpdater.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/supplementaryOutputs-2 -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name DTTableViewManager -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name iphoneos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDiffableDataSource.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDragDelegate.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDropDelegate.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDiffableDataSource.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDragDelegate.o -index-unit-output-path /DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewDropDelegate.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift:40:20: warning: main actor-isolated property 'dropDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        tableView?.dropDelegate = nil
                   ^
UIKit.UITableView:18:19: note: mutation of this property is only permitted within the actor
    weak open var dropDelegate: (any UITableViewDropDelegate)? { get set }
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/DTTableViewManager/DTTableViewDropDelegate.swift:41:20: warning: main actor-isolated property 'dropDelegate' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        tableView?.dropDelegate = self
                   ^
UIKit.UITableView:18:19: note: mutation of this property is only permitted within the actor
    weak open var dropDelegate: (any UITableViewDropDelegate)? { get set }
                  ^
SwiftDriverJobDiscovery normal arm64 Compiling DTTableViewManager+Deprecated.swift, DTTableViewManager+Drag.swift, DTTableViewManager+Drop.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriver\ Compilation DTModelStorage normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DTModelStorage' from project 'DTModelStorage')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DTModelStorage -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/Objects-normal/arm64/DTModelStorage.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/Objects-normal/arm64/DTModelStorage-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/Objects-normal/arm64/DTModelStorage.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/Objects-normal/arm64/DTModelStorage_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/Objects-normal/arm64/DTModelStorage-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTModelStorage.o normal (in target 'DTModelStorage' from project 'DTModelStorage')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/Objects-normal/arm64/DTModelStorage.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/Objects-normal/arm64/DTModelStorage_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/Objects-normal/arm64/DTModelStorage.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTModelStorage.build/Debug-iphoneos/DTModelStorage.build/Objects-normal/arm64/DTModelStorage_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTModelStorage.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTModelStorage.o (in target 'DTModelStorage' from project 'DTModelStorage')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DTModelStorage
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTModelStorage.o
SwiftDriverJobDiscovery normal arm64 Emitting module for DTTableViewManager (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriver\ Compilation\ Requirements DTTableViewManager normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DTTableViewManager -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DTTableViewManager-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager-Swift.h (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/DTTableViewManager-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.swiftmodule (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.swiftdoc (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.abi.json (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.swiftsourceinfo (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling TableViewHeaderFooterViewModelMapping.swift, TableViewUpdater.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriverJobDiscovery normal arm64 Compiling DTTableViewDataSource.swift, DTTableViewDelegate.swift, DTTableViewDelegateWrapper.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriverJobDiscovery normal arm64 Compiling DTTableViewDiffableDataSource.swift, DTTableViewDragDelegate.swift, DTTableViewDropDelegate.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriverJobDiscovery normal arm64 Compiling DTTableViewManager+Prefetch.swift, DTTableViewManager+Registration.swift, DTTableViewManager+SwiftUIRegistration.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriverJobDiscovery normal arm64 Compiling Exports.swift, HostingCellViewModelMapping.swift, HostingConfigurationViewModelMapping.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriverJobDiscovery normal arm64 Compiling TableViewConfiguration.swift, TableViewFactory.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriverJobDiscovery normal arm64 Compiling HostingTableViewCell.swift, TableViewCellModelMapping.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriverJobDiscovery normal arm64 Compiling DTTableViewManager.swift, DTTableViewManagerAnomalyHandler.swift, DTTableViewPrefetchDataSource.swift (in target 'DTTableViewManager' from project 'DTTableViewManager')
SwiftDriver\ Compilation DTTableViewManager normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name DTTableViewManager -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.1-22B74-f2ea1940d4ae1642e20681c3a33270e4.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.o normal (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DTTableViewManager.build/Debug-iphoneos/DTTableViewManager.build/Objects-normal/arm64/DTTableViewManager_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.o (in target 'DTTableViewManager' from project 'DTTableViewManager')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DTTableViewManager.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "dtmodelstorage",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "11.0.0",
            "upper_bound" : "12.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/DenTelezhkin/DTModelStorage"
    }
  ],
  "manifest_display_name" : "DTTableViewManager",
  "name" : "DTTableViewManager",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "DTTableViewManager",
      "targets" : [
        "DTTableViewManager"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "DTTableViewManager",
      "module_type" : "SwiftTarget",
      "name" : "DTTableViewManager",
      "path" : "Sources/DTTableViewManager",
      "product_dependencies" : [
        "DTModelStorage"
      ],
      "product_memberships" : [
        "DTTableViewManager"
      ],
      "sources" : [
        "DTTableViewDataSource.swift",
        "DTTableViewDelegate.swift",
        "DTTableViewDelegateWrapper.swift",
        "DTTableViewDiffableDataSource.swift",
        "DTTableViewDragDelegate.swift",
        "DTTableViewDropDelegate.swift",
        "DTTableViewDropPlaceholderContext.swift",
        "DTTableViewManager+DataSource.swift",
        "DTTableViewManager+Delegate.swift",
        "DTTableViewManager+Deprecated.swift",
        "DTTableViewManager+Drag.swift",
        "DTTableViewManager+Drop.swift",
        "DTTableViewManager+Prefetch.swift",
        "DTTableViewManager+Registration.swift",
        "DTTableViewManager+SwiftUIRegistration.swift",
        "DTTableViewManager.swift",
        "DTTableViewManagerAnomalyHandler.swift",
        "DTTableViewPrefetchDataSource.swift",
        "Exports.swift",
        "HostingCellViewModelMapping.swift",
        "HostingConfigurationViewModelMapping.swift",
        "HostingTableViewCell.swift",
        "TableViewCellModelMapping.swift",
        "TableViewConfiguration.swift",
        "TableViewFactory.swift",
        "TableViewHeaderFooterViewModelMapping.swift",
        "TableViewUpdater.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.