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 Parchment, reference v3.7.2 (42036b), with Swift 6.1 for iOS using Xcode 16.3 on 29 Apr 2025 18:31:30 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Parchment -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

                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:28:9: note: requirement 'alwaysBounceHorizontal' declared here
    var alwaysBounceHorizontal: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:76:65: warning: main actor-isolated property 'contentInsetAdjustmentBehavior' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
                                                                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:31:9: note: requirement 'contentInsetAdjustmentBehavior' declared here
    var contentInsetAdjustmentBehavior: UIScrollView.ContentInsetAdjustmentBehavior { get set }
        ^
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:33:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier: String)
         ^
                                                                              async
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:34:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ nib: UINib?, forCellWithReuseIdentifier: String)
         ^
                                                                     async
UIKit.UIView.addGestureRecognizer:3:24: warning: main actor-isolated instance method 'addGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.addGestureRecognizer:3:24: note: add 'nonisolated' to 'addGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:35:10: note: mark the protocol requirement 'addGestureRecognizer' 'async' to allow actor-isolated conformances
    func addGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                 async
UIKit.UIView.removeGestureRecognizer:3:24: warning: main actor-isolated instance method 'removeGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.removeGestureRecognizer:3:24: note: add 'nonisolated' to 'removeGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:36:10: note: mark the protocol requirement 'removeGestureRecognizer' 'async' to allow actor-isolated conformances
    func removeGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                    async
UIKit.UICollectionView.reloadData:2:22: warning: main actor-isolated instance method 'reloadData()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func reloadData()}
                     ^
UIKit.UICollectionView.reloadData:2:22: note: add 'nonisolated' to 'reloadData()' to make this instance method not isolated to the actor
@MainActor open func reloadData()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:37:10: note: mark the protocol requirement 'reloadData()' 'async' to allow actor-isolated conformances
    func reloadData()
         ^
                      async
UIKit.UIView.layoutIfNeeded:2:22: warning: main actor-isolated instance method 'layoutIfNeeded()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func layoutIfNeeded()}
                     ^
UIKit.UIView.layoutIfNeeded:2:22: note: add 'nonisolated' to 'layoutIfNeeded()' to make this instance method not isolated to the actor
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:38:10: note: mark the protocol requirement 'layoutIfNeeded()' 'async' to allow actor-isolated conformances
    func layoutIfNeeded()
         ^
                          async
UIKit.UIScrollView.setContentOffset:2:22: warning: main actor-isolated instance method 'setContentOffset(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
UIKit.UIScrollView.setContentOffset:2:22: note: add 'nonisolated' to 'setContentOffset(_:animated:)' to make this instance method not isolated to the actor
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:39:10: note: mark the protocol requirement 'setContentOffset(_:animated:)' 'async' to allow actor-isolated conformances
    func setContentOffset(_ contentOffset: CGPoint, animated: Bool)
         ^
                                                                    async
UIKit.UICollectionView.selectItem:2:22: warning: main actor-isolated instance method 'selectItem(at:animated:scrollPosition:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
UIKit.UICollectionView.selectItem:2:22: note: add 'nonisolated' to 'selectItem(at:animated:scrollPosition:)' to make this instance method not isolated to the actor
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:40:10: note: mark the protocol requirement 'selectItem(at:animated:scrollPosition:)' 'async' to allow actor-isolated conformances
    func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)
         ^
                                                                                                               async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PageViewDirection.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:451:57: warning: main actor-isolated property 'indexPathsForVisibleItems' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property (nonatomic, readonly) NSArray<NSIndexPath *> *indexPathsForVisibleItems;
                                                        ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:43:29: note: add '@preconcurrency' to the 'CollectionView' conformance to defer isolation checking to run time
extension UICollectionView: CollectionView {}
                            ^
                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:17:9: note: requirement 'indexPathsForVisibleItems' declared here
    var indexPathsForVisibleItems: [IndexPath] { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:160:56: warning: main actor-isolated property 'isDragging' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic, readonly, getter=isDragging) BOOL dragging;
                                                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:18:9: note: requirement 'isDragging' declared here
    var isDragging: Bool { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: warning: main actor-isolated property 'window' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic,readonly) UIWindow     *window;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:19:9: note: requirement 'window' declared here
    var window: UIWindow? { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:221:55: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic,readonly) UIView       *superview;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:20:9: note: requirement 'superview' declared here
    var superview: UIView? { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:21:9: note: requirement 'bounds' declared here
    var bounds: CGRect { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:55:59: warning: main actor-isolated property 'contentOffset' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         CGPoint                      contentOffset;                  // default CGPointZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:22:9: note: requirement 'contentOffset' declared here
    var contentOffset: CGPoint { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:56:59: warning: main actor-isolated property 'contentSize' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         CGSize                       contentSize;                    // default CGSizeZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:23:9: note: requirement 'contentSize' declared here
    var contentSize: CGSize { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:57:59: warning: main actor-isolated property 'contentInset' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         UIEdgeInsets                 contentInset;                   // default UIEdgeInsetsZero. add additional scroll area around content
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:24:9: note: requirement 'contentInset' declared here
    var contentInset: UIEdgeInsets { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:126:59: warning: main actor-isolated property 'showsHorizontalScrollIndicator' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         BOOL                         showsHorizontalScrollIndicator; // default YES. show indicator while we are tracking. fades out after tracking
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:25:9: note: requirement 'showsHorizontalScrollIndicator' declared here
    var showsHorizontalScrollIndicator: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:369:71: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UICollectionViewDataSource> dataSource;
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:26:9: note: requirement 'dataSource' declared here
    var dataSource: UICollectionViewDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:115:59: warning: main actor-isolated property 'isScrollEnabled' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic,getter=isScrollEnabled) BOOL          scrollEnabled;                  // default YES. turn off any dragging temporarily
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:27:9: note: requirement 'isScrollEnabled' declared here
    var isScrollEnabled: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:113:59: warning: main actor-isolated property 'alwaysBounceHorizontal' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         BOOL                         alwaysBounceHorizontal;         // default NO. if YES and bounces is YES, even if content is smaller than bounds, allow drag horizontally
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:28:9: note: requirement 'alwaysBounceHorizontal' declared here
    var alwaysBounceHorizontal: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:76:65: warning: main actor-isolated property 'contentInsetAdjustmentBehavior' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
                                                                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:31:9: note: requirement 'contentInsetAdjustmentBehavior' declared here
    var contentInsetAdjustmentBehavior: UIScrollView.ContentInsetAdjustmentBehavior { get set }
        ^
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:33:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier: String)
         ^
                                                                              async
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:34:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ nib: UINib?, forCellWithReuseIdentifier: String)
         ^
                                                                     async
UIKit.UIView.addGestureRecognizer:3:24: warning: main actor-isolated instance method 'addGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.addGestureRecognizer:3:24: note: add 'nonisolated' to 'addGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:35:10: note: mark the protocol requirement 'addGestureRecognizer' 'async' to allow actor-isolated conformances
    func addGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                 async
UIKit.UIView.removeGestureRecognizer:3:24: warning: main actor-isolated instance method 'removeGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.removeGestureRecognizer:3:24: note: add 'nonisolated' to 'removeGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:36:10: note: mark the protocol requirement 'removeGestureRecognizer' 'async' to allow actor-isolated conformances
    func removeGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                    async
UIKit.UICollectionView.reloadData:2:22: warning: main actor-isolated instance method 'reloadData()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func reloadData()}
                     ^
UIKit.UICollectionView.reloadData:2:22: note: add 'nonisolated' to 'reloadData()' to make this instance method not isolated to the actor
@MainActor open func reloadData()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:37:10: note: mark the protocol requirement 'reloadData()' 'async' to allow actor-isolated conformances
    func reloadData()
         ^
                      async
UIKit.UIView.layoutIfNeeded:2:22: warning: main actor-isolated instance method 'layoutIfNeeded()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func layoutIfNeeded()}
                     ^
UIKit.UIView.layoutIfNeeded:2:22: note: add 'nonisolated' to 'layoutIfNeeded()' to make this instance method not isolated to the actor
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:38:10: note: mark the protocol requirement 'layoutIfNeeded()' 'async' to allow actor-isolated conformances
    func layoutIfNeeded()
         ^
                          async
UIKit.UIScrollView.setContentOffset:2:22: warning: main actor-isolated instance method 'setContentOffset(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
UIKit.UIScrollView.setContentOffset:2:22: note: add 'nonisolated' to 'setContentOffset(_:animated:)' to make this instance method not isolated to the actor
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:39:10: note: mark the protocol requirement 'setContentOffset(_:animated:)' 'async' to allow actor-isolated conformances
    func setContentOffset(_ contentOffset: CGPoint, animated: Bool)
         ^
                                                                    async
UIKit.UICollectionView.selectItem:2:22: warning: main actor-isolated instance method 'selectItem(at:animated:scrollPosition:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
UIKit.UICollectionView.selectItem:2:22: note: add 'nonisolated' to 'selectItem(at:animated:scrollPosition:)' to make this instance method not isolated to the actor
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:40:10: note: mark the protocol requirement 'selectItem(at:animated:scrollPosition:)' 'async' to allow actor-isolated conformances
    func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)
         ^
                                                                                                               async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PageViewState.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:451:57: warning: main actor-isolated property 'indexPathsForVisibleItems' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property (nonatomic, readonly) NSArray<NSIndexPath *> *indexPathsForVisibleItems;
                                                        ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:43:29: note: add '@preconcurrency' to the 'CollectionView' conformance to defer isolation checking to run time
extension UICollectionView: CollectionView {}
                            ^
                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:17:9: note: requirement 'indexPathsForVisibleItems' declared here
    var indexPathsForVisibleItems: [IndexPath] { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:160:56: warning: main actor-isolated property 'isDragging' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic, readonly, getter=isDragging) BOOL dragging;
                                                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:18:9: note: requirement 'isDragging' declared here
    var isDragging: Bool { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: warning: main actor-isolated property 'window' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic,readonly) UIWindow     *window;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:19:9: note: requirement 'window' declared here
    var window: UIWindow? { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:221:55: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic,readonly) UIView       *superview;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:20:9: note: requirement 'superview' declared here
    var superview: UIView? { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:21:9: note: requirement 'bounds' declared here
    var bounds: CGRect { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:55:59: warning: main actor-isolated property 'contentOffset' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         CGPoint                      contentOffset;                  // default CGPointZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:22:9: note: requirement 'contentOffset' declared here
    var contentOffset: CGPoint { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:56:59: warning: main actor-isolated property 'contentSize' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         CGSize                       contentSize;                    // default CGSizeZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:23:9: note: requirement 'contentSize' declared here
    var contentSize: CGSize { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:57:59: warning: main actor-isolated property 'contentInset' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         UIEdgeInsets                 contentInset;                   // default UIEdgeInsetsZero. add additional scroll area around content
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:24:9: note: requirement 'contentInset' declared here
    var contentInset: UIEdgeInsets { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:126:59: warning: main actor-isolated property 'showsHorizontalScrollIndicator' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         BOOL                         showsHorizontalScrollIndicator; // default YES. show indicator while we are tracking. fades out after tracking
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:25:9: note: requirement 'showsHorizontalScrollIndicator' declared here
    var showsHorizontalScrollIndicator: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:369:71: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UICollectionViewDataSource> dataSource;
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:26:9: note: requirement 'dataSource' declared here
    var dataSource: UICollectionViewDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:115:59: warning: main actor-isolated property 'isScrollEnabled' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic,getter=isScrollEnabled) BOOL          scrollEnabled;                  // default YES. turn off any dragging temporarily
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:27:9: note: requirement 'isScrollEnabled' declared here
    var isScrollEnabled: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:113:59: warning: main actor-isolated property 'alwaysBounceHorizontal' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         BOOL                         alwaysBounceHorizontal;         // default NO. if YES and bounces is YES, even if content is smaller than bounds, allow drag horizontally
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:28:9: note: requirement 'alwaysBounceHorizontal' declared here
    var alwaysBounceHorizontal: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:76:65: warning: main actor-isolated property 'contentInsetAdjustmentBehavior' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
                                                                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:31:9: note: requirement 'contentInsetAdjustmentBehavior' declared here
    var contentInsetAdjustmentBehavior: UIScrollView.ContentInsetAdjustmentBehavior { get set }
        ^
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:33:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier: String)
         ^
                                                                              async
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:34:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ nib: UINib?, forCellWithReuseIdentifier: String)
         ^
                                                                     async
UIKit.UIView.addGestureRecognizer:3:24: warning: main actor-isolated instance method 'addGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.addGestureRecognizer:3:24: note: add 'nonisolated' to 'addGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:35:10: note: mark the protocol requirement 'addGestureRecognizer' 'async' to allow actor-isolated conformances
    func addGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                 async
UIKit.UIView.removeGestureRecognizer:3:24: warning: main actor-isolated instance method 'removeGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.removeGestureRecognizer:3:24: note: add 'nonisolated' to 'removeGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:36:10: note: mark the protocol requirement 'removeGestureRecognizer' 'async' to allow actor-isolated conformances
    func removeGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                    async
UIKit.UICollectionView.reloadData:2:22: warning: main actor-isolated instance method 'reloadData()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func reloadData()}
                     ^
UIKit.UICollectionView.reloadData:2:22: note: add 'nonisolated' to 'reloadData()' to make this instance method not isolated to the actor
@MainActor open func reloadData()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:37:10: note: mark the protocol requirement 'reloadData()' 'async' to allow actor-isolated conformances
    func reloadData()
         ^
                      async
UIKit.UIView.layoutIfNeeded:2:22: warning: main actor-isolated instance method 'layoutIfNeeded()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func layoutIfNeeded()}
                     ^
UIKit.UIView.layoutIfNeeded:2:22: note: add 'nonisolated' to 'layoutIfNeeded()' to make this instance method not isolated to the actor
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:38:10: note: mark the protocol requirement 'layoutIfNeeded()' 'async' to allow actor-isolated conformances
    func layoutIfNeeded()
         ^
                          async
UIKit.UIScrollView.setContentOffset:2:22: warning: main actor-isolated instance method 'setContentOffset(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
UIKit.UIScrollView.setContentOffset:2:22: note: add 'nonisolated' to 'setContentOffset(_:animated:)' to make this instance method not isolated to the actor
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:39:10: note: mark the protocol requirement 'setContentOffset(_:animated:)' 'async' to allow actor-isolated conformances
    func setContentOffset(_ contentOffset: CGPoint, animated: Bool)
         ^
                                                                    async
UIKit.UICollectionView.selectItem:2:22: warning: main actor-isolated instance method 'selectItem(at:animated:scrollPosition:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
UIKit.UICollectionView.selectItem:2:22: note: add 'nonisolated' to 'selectItem(at:animated:scrollPosition:)' to make this instance method not isolated to the actor
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:40:10: note: mark the protocol requirement 'selectItem(at:animated:scrollPosition:)' 'async' to allow actor-isolated conformances
    func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)
         ^
                                                                                                               async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:32:16: warning: main actor-isolated property 'state' cannot be used to satisfy nonisolated requirement from protocol 'CollectionViewLayout'; this is an error in the Swift 6 language mode
    public var state: PagingState = .empty
               ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:14:39: note: add '@preconcurrency' to the 'CollectionViewLayout' conformance to defer isolation checking to run time
extension PagingCollectionViewLayout: CollectionViewLayout {}
                                      ^
                                      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:4:9: note: requirement 'state' declared here
    var state: PagingState { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:37:16: warning: main actor-isolated property 'visibleItems' cannot be used to satisfy nonisolated requirement from protocol 'CollectionViewLayout'; this is an error in the Swift 6 language mode
    public var visibleItems = PagingItems(items: [])
               ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:5:9: note: requirement 'visibleItems' declared here
    var visibleItems: PagingItems { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:78:18: warning: main actor-isolated property 'sizeCache' cannot be used to satisfy nonisolated requirement from protocol 'CollectionViewLayout'; this is an error in the Swift 6 language mode
    internal var sizeCache: PagingSizeCache?
                 ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:6:9: note: requirement 'sizeCache' declared here
    var sizeCache: PagingSizeCache? { get set }
        ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:111:22: warning: main actor-isolated property 'contentInsets' cannot be used to satisfy nonisolated requirement from protocol 'CollectionViewLayout'; this is an error in the Swift 6 language mode
    private(set) var contentInsets: UIEdgeInsets = .zero
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:7:9: note: requirement 'contentInsets' declared here
    var contentInsets: UIEdgeInsets { get }
        ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:42:29: warning: main actor-isolated property 'layoutAttributes' cannot be used to satisfy nonisolated requirement from protocol 'CollectionViewLayout'; this is an error in the Swift 6 language mode
    public private(set) var layoutAttributes: [IndexPath: PagingCellLayoutAttributes] = [:]
                            ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:8:9: note: requirement 'layoutAttributes' declared here
    var layoutAttributes: [IndexPath: PagingCellLayoutAttributes] { get }
        ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:117:24: warning: main actor-isolated instance method 'prepare()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionViewLayout'; this is an error in the Swift 6 language mode
    open override func prepare() {
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:117:24: note: add 'nonisolated' to 'prepare()' to make this instance method not isolated to the actor
    open override func prepare() {
                       ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:9:10: note: mark the protocol requirement 'prepare()' 'async' to allow actor-isolated conformances
    func prepare()
         ^
                   async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:138:24: warning: main actor-isolated instance method 'invalidateLayout()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionViewLayout'; this is an error in the Swift 6 language mode
    open override func invalidateLayout() {
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:138:24: note: add 'nonisolated' to 'invalidateLayout()' to make this instance method not isolated to the actor
    open override func invalidateLayout() {
                       ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:10:10: note: mark the protocol requirement 'invalidateLayout()' 'async' to allow actor-isolated conformances
    func invalidateLayout()
         ^
                            async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:143:24: warning: main actor-isolated instance method 'invalidateLayout(with:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionViewLayout'; this is an error in the Swift 6 language mode
    open override func invalidateLayout(with context: UICollectionViewLayoutInvalidationContext) {
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCollectionViewLayout.swift:143:24: note: add 'nonisolated' to 'invalidateLayout(with:)' to make this instance method not isolated to the actor
    open override func invalidateLayout(with context: UICollectionViewLayoutInvalidationContext) {
                       ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:11:10: note: mark the protocol requirement 'invalidateLayout(with:)' 'async' to allow actor-isolated conformances
    func invalidateLayout(with context: UICollectionViewLayoutInvalidationContext)
         ^
                                                                                   async
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:451:57: warning: main actor-isolated property 'indexPathsForVisibleItems' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property (nonatomic, readonly) NSArray<NSIndexPath *> *indexPathsForVisibleItems;
                                                        ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:43:29: note: add '@preconcurrency' to the 'CollectionView' conformance to defer isolation checking to run time
extension UICollectionView: CollectionView {}
                            ^
                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:17:9: note: requirement 'indexPathsForVisibleItems' declared here
    var indexPathsForVisibleItems: [IndexPath] { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:160:56: warning: main actor-isolated property 'isDragging' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic, readonly, getter=isDragging) BOOL dragging;
                                                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:18:9: note: requirement 'isDragging' declared here
    var isDragging: Bool { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: warning: main actor-isolated property 'window' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic,readonly) UIWindow     *window;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:19:9: note: requirement 'window' declared here
    var window: UIWindow? { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:221:55: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic,readonly) UIView       *superview;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:20:9: note: requirement 'superview' declared here
    var superview: UIView? { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:21:9: note: requirement 'bounds' declared here
    var bounds: CGRect { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:55:59: warning: main actor-isolated property 'contentOffset' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         CGPoint                      contentOffset;                  // default CGPointZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:22:9: note: requirement 'contentOffset' declared here
    var contentOffset: CGPoint { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:56:59: warning: main actor-isolated property 'contentSize' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         CGSize                       contentSize;                    // default CGSizeZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:23:9: note: requirement 'contentSize' declared here
    var contentSize: CGSize { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:57:59: warning: main actor-isolated property 'contentInset' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         UIEdgeInsets                 contentInset;                   // default UIEdgeInsetsZero. add additional scroll area around content
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:24:9: note: requirement 'contentInset' declared here
    var contentInset: UIEdgeInsets { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:126:59: warning: main actor-isolated property 'showsHorizontalScrollIndicator' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         BOOL                         showsHorizontalScrollIndicator; // default YES. show indicator while we are tracking. fades out after tracking
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:25:9: note: requirement 'showsHorizontalScrollIndicator' declared here
    var showsHorizontalScrollIndicator: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:369:71: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UICollectionViewDataSource> dataSource;
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:26:9: note: requirement 'dataSource' declared here
    var dataSource: UICollectionViewDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:115:59: warning: main actor-isolated property 'isScrollEnabled' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic,getter=isScrollEnabled) BOOL          scrollEnabled;                  // default YES. turn off any dragging temporarily
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:27:9: note: requirement 'isScrollEnabled' declared here
    var isScrollEnabled: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:113:59: warning: main actor-isolated property 'alwaysBounceHorizontal' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         BOOL                         alwaysBounceHorizontal;         // default NO. if YES and bounces is YES, even if content is smaller than bounds, allow drag horizontally
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:28:9: note: requirement 'alwaysBounceHorizontal' declared here
    var alwaysBounceHorizontal: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:76:65: warning: main actor-isolated property 'contentInsetAdjustmentBehavior' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
                                                                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:31:9: note: requirement 'contentInsetAdjustmentBehavior' declared here
    var contentInsetAdjustmentBehavior: UIScrollView.ContentInsetAdjustmentBehavior { get set }
        ^
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:33:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier: String)
         ^
                                                                              async
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:34:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ nib: UINib?, forCellWithReuseIdentifier: String)
         ^
                                                                     async
UIKit.UIView.addGestureRecognizer:3:24: warning: main actor-isolated instance method 'addGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.addGestureRecognizer:3:24: note: add 'nonisolated' to 'addGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:35:10: note: mark the protocol requirement 'addGestureRecognizer' 'async' to allow actor-isolated conformances
    func addGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                 async
UIKit.UIView.removeGestureRecognizer:3:24: warning: main actor-isolated instance method 'removeGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.removeGestureRecognizer:3:24: note: add 'nonisolated' to 'removeGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:36:10: note: mark the protocol requirement 'removeGestureRecognizer' 'async' to allow actor-isolated conformances
    func removeGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                    async
UIKit.UICollectionView.reloadData:2:22: warning: main actor-isolated instance method 'reloadData()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func reloadData()}
                     ^
UIKit.UICollectionView.reloadData:2:22: note: add 'nonisolated' to 'reloadData()' to make this instance method not isolated to the actor
@MainActor open func reloadData()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:37:10: note: mark the protocol requirement 'reloadData()' 'async' to allow actor-isolated conformances
    func reloadData()
         ^
                      async
UIKit.UIView.layoutIfNeeded:2:22: warning: main actor-isolated instance method 'layoutIfNeeded()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func layoutIfNeeded()}
                     ^
UIKit.UIView.layoutIfNeeded:2:22: note: add 'nonisolated' to 'layoutIfNeeded()' to make this instance method not isolated to the actor
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:38:10: note: mark the protocol requirement 'layoutIfNeeded()' 'async' to allow actor-isolated conformances
    func layoutIfNeeded()
         ^
                          async
UIKit.UIScrollView.setContentOffset:2:22: warning: main actor-isolated instance method 'setContentOffset(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
UIKit.UIScrollView.setContentOffset:2:22: note: add 'nonisolated' to 'setContentOffset(_:animated:)' to make this instance method not isolated to the actor
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:39:10: note: mark the protocol requirement 'setContentOffset(_:animated:)' 'async' to allow actor-isolated conformances
    func setContentOffset(_ contentOffset: CGPoint, animated: Bool)
         ^
                                                                    async
UIKit.UICollectionView.selectItem:2:22: warning: main actor-isolated instance method 'selectItem(at:animated:scrollPosition:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
UIKit.UICollectionView.selectItem:2:22: note: add 'nonisolated' to 'selectItem(at:animated:scrollPosition:)' to make this instance method not isolated to the actor
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:40:10: note: mark the protocol requirement 'selectItem(at:animated:scrollPosition:)' 'async' to allow actor-isolated conformances
    func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)
         ^
                                                                                                               async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingInvalidationContext.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:451:57: warning: main actor-isolated property 'indexPathsForVisibleItems' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property (nonatomic, readonly) NSArray<NSIndexPath *> *indexPathsForVisibleItems;
                                                        ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:43:29: note: add '@preconcurrency' to the 'CollectionView' conformance to defer isolation checking to run time
extension UICollectionView: CollectionView {}
                            ^
                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:17:9: note: requirement 'indexPathsForVisibleItems' declared here
    var indexPathsForVisibleItems: [IndexPath] { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:160:56: warning: main actor-isolated property 'isDragging' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic, readonly, getter=isDragging) BOOL dragging;
                                                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:18:9: note: requirement 'isDragging' declared here
    var isDragging: Bool { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:223:55: warning: main actor-isolated property 'window' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic,readonly) UIWindow     *window;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:19:9: note: requirement 'window' declared here
    var window: UIWindow? { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:221:55: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nullable, nonatomic,readonly) UIView       *superview;
                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:20:9: note: requirement 'superview' declared here
    var superview: UIView? { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:21:9: note: requirement 'bounds' declared here
    var bounds: CGRect { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:55:59: warning: main actor-isolated property 'contentOffset' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         CGPoint                      contentOffset;                  // default CGPointZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:22:9: note: requirement 'contentOffset' declared here
    var contentOffset: CGPoint { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:56:59: warning: main actor-isolated property 'contentSize' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         CGSize                       contentSize;                    // default CGSizeZero
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:23:9: note: requirement 'contentSize' declared here
    var contentSize: CGSize { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:57:59: warning: main actor-isolated property 'contentInset' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         UIEdgeInsets                 contentInset;                   // default UIEdgeInsetsZero. add additional scroll area around content
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:24:9: note: requirement 'contentInset' declared here
    var contentInset: UIEdgeInsets { get }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:126:59: warning: main actor-isolated property 'showsHorizontalScrollIndicator' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         BOOL                         showsHorizontalScrollIndicator; // default YES. show indicator while we are tracking. fades out after tracking
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:25:9: note: requirement 'showsHorizontalScrollIndicator' declared here
    var showsHorizontalScrollIndicator: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionView.h:369:71: warning: main actor-isolated property 'dataSource' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property (nonatomic, weak, nullable) id <UICollectionViewDataSource> dataSource;
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:26:9: note: requirement 'dataSource' declared here
    var dataSource: UICollectionViewDataSource? { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:115:59: warning: main actor-isolated property 'isScrollEnabled' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic,getter=isScrollEnabled) BOOL          scrollEnabled;                  // default YES. turn off any dragging temporarily
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:27:9: note: requirement 'isScrollEnabled' declared here
    var isScrollEnabled: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:113:59: warning: main actor-isolated property 'alwaysBounceHorizontal' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic)         BOOL                         alwaysBounceHorizontal;         // default NO. if YES and bounces is YES, even if content is smaller than bounds, allow drag horizontally
                                                          ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:28:9: note: requirement 'alwaysBounceHorizontal' declared here
    var alwaysBounceHorizontal: Bool { get set }
        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIScrollView.h:76:65: warning: main actor-isolated property 'contentInsetAdjustmentBehavior' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior API_AVAILABLE(ios(11.0), tvos(11.0)) API_UNAVAILABLE(watchos);
                                                                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:31:9: note: requirement 'contentInsetAdjustmentBehavior' declared here
    var contentInsetAdjustmentBehavior: UIScrollView.ContentInsetAdjustmentBehavior { get set }
        ^
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:33:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ cellClass: AnyClass?, forCellWithReuseIdentifier: String)
         ^
                                                                              async
UIKit.UICollectionView.register:2:22: warning: main actor-isolated instance method 'register(_:forCellWithReuseIdentifier:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
UIKit.UICollectionView.register:2:22: note: add 'nonisolated' to 'register(_:forCellWithReuseIdentifier:)' to make this instance method not isolated to the actor
@MainActor open func register(_ nib: UINib?, forCellWithReuseIdentifier identifier: String)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:34:10: note: mark the protocol requirement 'register(_:forCellWithReuseIdentifier:)' 'async' to allow actor-isolated conformances
    func register(_ nib: UINib?, forCellWithReuseIdentifier: String)
         ^
                                                                     async
UIKit.UIView.addGestureRecognizer:3:24: warning: main actor-isolated instance method 'addGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.addGestureRecognizer:3:24: note: add 'nonisolated' to 'addGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func addGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:35:10: note: mark the protocol requirement 'addGestureRecognizer' 'async' to allow actor-isolated conformances
    func addGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                 async
UIKit.UIView.removeGestureRecognizer:3:24: warning: main actor-isolated instance method 'removeGestureRecognizer' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
UIKit.UIView.removeGestureRecognizer:3:24: note: add 'nonisolated' to 'removeGestureRecognizer' to make this instance method not isolated to the actor
  @MainActor open func removeGestureRecognizer(_ gestureRecognizer: UIGestureRecognizer)}
                       ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:36:10: note: mark the protocol requirement 'removeGestureRecognizer' 'async' to allow actor-isolated conformances
    func removeGestureRecognizer(_ recognizer: UIGestureRecognizer)
         ^
                                                                    async
UIKit.UICollectionView.reloadData:2:22: warning: main actor-isolated instance method 'reloadData()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func reloadData()}
                     ^
UIKit.UICollectionView.reloadData:2:22: note: add 'nonisolated' to 'reloadData()' to make this instance method not isolated to the actor
@MainActor open func reloadData()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:37:10: note: mark the protocol requirement 'reloadData()' 'async' to allow actor-isolated conformances
    func reloadData()
         ^
                      async
UIKit.UIView.layoutIfNeeded:2:22: warning: main actor-isolated instance method 'layoutIfNeeded()' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func layoutIfNeeded()}
                     ^
UIKit.UIView.layoutIfNeeded:2:22: note: add 'nonisolated' to 'layoutIfNeeded()' to make this instance method not isolated to the actor
@MainActor open func layoutIfNeeded()}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:38:10: note: mark the protocol requirement 'layoutIfNeeded()' 'async' to allow actor-isolated conformances
    func layoutIfNeeded()
         ^
                          async
UIKit.UIScrollView.setContentOffset:2:22: warning: main actor-isolated instance method 'setContentOffset(_:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
UIKit.UIScrollView.setContentOffset:2:22: note: add 'nonisolated' to 'setContentOffset(_:animated:)' to make this instance method not isolated to the actor
@MainActor open func setContentOffset(_ contentOffset: CGPoint, animated: Bool)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:39:10: note: mark the protocol requirement 'setContentOffset(_:animated:)' 'async' to allow actor-isolated conformances
    func setContentOffset(_ contentOffset: CGPoint, animated: Bool)
         ^
                                                                    async
UIKit.UICollectionView.selectItem:2:22: warning: main actor-isolated instance method 'selectItem(at:animated:scrollPosition:)' cannot be used to satisfy nonisolated requirement from protocol 'CollectionView'; this is an error in the Swift 6 language mode
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
UIKit.UICollectionView.selectItem:2:22: note: add 'nonisolated' to 'selectItem(at:animated:scrollPosition:)' to make this instance method not isolated to the actor
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
                     ^
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/CollectionView.swift:40:10: note: mark the protocol requirement 'selectItem(at:animated:scrollPosition:)' 'async' to allow actor-isolated conformances
    func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)
         ^
                                                                                                               async
SwiftDriverJobDiscovery normal arm64 Compiling ConstraintViewDSL.swift, Debugging.swift, LayoutConstraint.swift (in target 'SnapKit' from project 'SnapKit')
SwiftDriverJobDiscovery normal arm64 Compiling ConstraintLayoutGuide.swift, ConstraintLayoutGuideDSL.swift, ConstraintLayoutSupport.swift, ConstraintLayoutSupportDSL.swift (in target 'SnapKit' from project 'SnapKit')
SwiftCompile normal arm64 Compiling\ PagingBorderOptions.swift,\ PagingMenuItemSource.swift,\ PagingDistance.swift,\ PagingViewControllerDataSource.swift,\ PagingStaticDataSource.swift /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingBorderOptions.swift /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingMenuItemSource.swift /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingDistance.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingViewControllerDataSource.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingStaticDataSource.swift (in target 'Parchment' from project 'Parchment')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745951486111423-swift-frontend-Parchment-PagingBorderOptions.swift-arm64_apple_ios13.0-o-Onone-4144949390.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5150 seconds (4.9568 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0292 (  7.5%)   0.0276 ( 22.2%)   0.0568 ( 11.0%)   2.2776 ( 45.9%)  parse-and-resolve-imports
   0.0272 (  7.0%)   0.0257 ( 20.7%)   0.0529 ( 10.3%)   2.2737 ( 45.9%)  Import resolution
   0.0749 ( 19.2%)   0.0152 ( 12.2%)   0.0901 ( 17.5%)   0.0901 (  1.8%)  perform-sema
   0.0746 ( 19.1%)   0.0152 ( 12.2%)   0.0898 ( 17.4%)   0.0898 (  1.8%)  Type checking and Semantic analysis
   0.0545 ( 13.9%)   0.0086 (  7.0%)   0.0631 ( 12.3%)   0.0631 (  1.3%)  typecheck-stmt
   0.0435 ( 11.1%)   0.0062 (  5.0%)   0.0497 (  9.6%)   0.0497 (  1.0%)  typecheck-expr
   0.0279 (  7.1%)   0.0072 (  5.8%)   0.0350 (  6.8%)   0.0350 (  0.7%)  typecheck-decl
   0.0129 (  3.3%)   0.0041 (  3.3%)   0.0169 (  3.3%)   0.0169 (  0.3%)  IRGen
   0.0143 (  3.7%)   0.0017 (  1.4%)   0.0160 (  3.1%)   0.0160 (  0.3%)  precheck-target
   0.0055 (  1.4%)   0.0061 (  4.9%)   0.0116 (  2.3%)   0.0116 (  0.2%)  import-clang-decl
   0.0081 (  2.1%)   0.0023 (  1.8%)   0.0103 (  2.0%)   0.0103 (  0.2%)  build-rewrite-system
   0.0059 (  1.5%)   0.0008 (  0.6%)   0.0067 (  1.3%)   0.0067 (  0.1%)  SILGen
   0.0064 (  1.6%)   0.0001 (  0.1%)   0.0066 (  1.3%)   0.0066 (  0.1%)  SIL optimization
   0.0043 (  1.1%)   0.0006 (  0.5%)   0.0049 (  1.0%)   0.0049 (  0.1%)  SILGen-function
   0.0011 (  0.3%)   0.0028 (  2.2%)   0.0039 (  0.8%)   0.0040 (  0.1%)  load-stdlib
   0.0004 (  0.1%)   0.0001 (  0.1%)   0.0005 (  0.1%)   0.0005 (  0.0%)  load-all-members
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.3908 (100.0%)   0.1242 (100.0%)   0.5150 (100.0%)   4.9568 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6722 seconds (2.8995 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.5291 (100.0%)   0.1431 (100.0%)   0.6722 (100.0%)   2.8995 (100.0%)  Building Target
   0.5291 (100.0%)   0.1431 (100.0%)   0.6722 (100.0%)   2.8995 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingBorderOptions.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingMenuItemSource.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingDistance.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingDistance.swift:16:27: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return attributes.bounds.width
                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:49:30: note: property declared here
@property (nonatomic) CGRect bounds API_AVAILABLE(ios(7.0));
                             ^
/Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingDistance.swift:21:27: warning: main actor-isolated property 'center' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return attributes.center.x
                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:46:31: note: property declared here
@property (nonatomic) CGPoint center;
                              ^
/Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingDistance.swift:25:29: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return toAttributes.bounds.width
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:49:30: note: property declared here
@property (nonatomic) CGRect bounds API_AVAILABLE(ios(7.0));
                             ^
/Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingDistance.swift:29:29: warning: main actor-isolated property 'center' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return toAttributes.center.x
                            ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:46:31: note: property declared here
@property (nonatomic) CGPoint center;
                              ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingViewControllerDataSource.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingStaticDataSource.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingStaticDataSource.swift:19:50: warning: main actor-isolated property 'title' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            PagingIndexItem(index: $0, title: $1.title ?? "")
                                                 ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: property declared here
@property(nullable, nonatomic,copy) NSString *title;  // Localized title for use by a parent controller.
                                              ^
SwiftDriverJobDiscovery normal arm64 Compiling ConstraintRelation.swift, ConstraintView+Extensions.swift, ConstraintView.swift (in target 'SnapKit' from project 'SnapKit')
SwiftCompile normal arm64 Compiling\ PageViewController.swift,\ PagingViewControllerDelegate.swift,\ PagingTransition.swift,\ PagingFiniteDataSource.swift,\ PageViewManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingViewControllerDelegate.swift /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingTransition.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingFiniteDataSource.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift (in target 'Parchment' from project 'Parchment')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:224:10: warning: main actor-isolated instance method 'viewControllerBefore' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDataSource'; this is an error in the Swift 6 language mode
    func viewControllerBefore(_ viewController: UIViewController) -> UIViewController? {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:224:10: note: add 'nonisolated' to 'viewControllerBefore' to make this instance method not isolated to the actor
    func viewControllerBefore(_ viewController: UIViewController) -> UIViewController? {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:219:31: note: add '@preconcurrency' to the 'PageViewManagerDataSource' conformance to defer isolation checking to run time
extension PageViewController: PageViewManagerDataSource {
                              ^
                              @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDataSource.swift:4:10: note: mark the protocol requirement 'viewControllerBefore' 'async' to allow actor-isolated conformances
    func viewControllerBefore(_ viewController: UIViewController) -> UIViewController?
         ^
                                                                  async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:220:10: warning: main actor-isolated instance method 'viewControllerAfter' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDataSource'; this is an error in the Swift 6 language mode
    func viewControllerAfter(_ viewController: UIViewController) -> UIViewController? {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:220:10: note: add 'nonisolated' to 'viewControllerAfter' to make this instance method not isolated to the actor
    func viewControllerAfter(_ viewController: UIViewController) -> UIViewController? {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDataSource.swift:5:10: note: mark the protocol requirement 'viewControllerAfter' 'async' to allow actor-isolated conformances
    func viewControllerAfter(_ viewController: UIViewController) -> UIViewController?
         ^
                                                                 async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:232:10: warning: main actor-isolated instance method 'scrollForward()' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func scrollForward() {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:232:10: note: add 'nonisolated' to 'scrollForward()' to make this instance method not isolated to the actor
    func scrollForward() {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:231:31: note: add '@preconcurrency' to the 'PageViewManagerDelegate' conformance to defer isolation checking to run time
extension PageViewController: PageViewManagerDelegate {
                              ^
                              @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:4:10: note: mark the protocol requirement 'scrollForward()' 'async' to allow actor-isolated conformances
    func scrollForward()
         ^
                         async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:252:10: warning: main actor-isolated instance method 'scrollReverse()' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func scrollReverse() {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:252:10: note: add 'nonisolated' to 'scrollReverse()' to make this instance method not isolated to the actor
    func scrollReverse() {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:5:10: note: mark the protocol requirement 'scrollReverse()' 'async' to allow actor-isolated conformances
    func scrollReverse()
         ^
                         async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:272:10: warning: main actor-isolated instance method 'layoutViews(for:keepContentOffset:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func layoutViews(for viewControllers: [UIViewController], keepContentOffset: Bool) {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:272:10: note: add 'nonisolated' to 'layoutViews(for:keepContentOffset:)' to make this instance method not isolated to the actor
    func layoutViews(for viewControllers: [UIViewController], keepContentOffset: Bool) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:6:10: note: mark the protocol requirement 'layoutViews(for:keepContentOffset:)' 'async' to allow actor-isolated conformances
    func layoutViews(for viewControllers: [UIViewController], keepContentOffset: Bool)
         ^
                                                                                       async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:324:10: warning: main actor-isolated instance method 'addViewController' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func addViewController(_ viewController: UIViewController) {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:324:10: note: add 'nonisolated' to 'addViewController' to make this instance method not isolated to the actor
    func addViewController(_ viewController: UIViewController) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:7:10: note: mark the protocol requirement 'addViewController' 'async' to allow actor-isolated conformances
    func addViewController(_ viewController: UIViewController)
         ^
                                                               async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:331:10: warning: main actor-isolated instance method 'removeViewController' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func removeViewController(_ viewController: UIViewController) {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:331:10: note: add 'nonisolated' to 'removeViewController' to make this instance method not isolated to the actor
    func removeViewController(_ viewController: UIViewController) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:8:10: note: mark the protocol requirement 'removeViewController' 'async' to allow actor-isolated conformances
    func removeViewController(_ viewController: UIViewController)
         ^
                                                                  async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:338:10: warning: main actor-isolated instance method 'beginAppearanceTransition(isAppearing:viewController:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func beginAppearanceTransition(isAppearing: Bool, viewController: UIViewController, animated: Bool) {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:338:10: note: add 'nonisolated' to 'beginAppearanceTransition(isAppearing:viewController:animated:)' to make this instance method not isolated to the actor
    func beginAppearanceTransition(isAppearing: Bool, viewController: UIViewController, animated: Bool) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:9:10: note: mark the protocol requirement 'beginAppearanceTransition(isAppearing:viewController:animated:)' 'async' to allow actor-isolated conformances
    func beginAppearanceTransition(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:342:10: warning: main actor-isolated instance method 'endAppearanceTransition(viewController:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func endAppearanceTransition(viewController: UIViewController) {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:342:10: note: add 'nonisolated' to 'endAppearanceTransition(viewController:)' to make this instance method not isolated to the actor
    func endAppearanceTransition(viewController: UIViewController) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:14:10: note: mark the protocol requirement 'endAppearanceTransition(viewController:)' 'async' to allow actor-isolated conformances
    func endAppearanceTransition(viewController: UIViewController)
         ^
                                                                   async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:346:10: warning: main actor-isolated instance method 'willScroll(from:to:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func willScroll(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:346:10: note: add 'nonisolated' to 'willScroll(from:to:)' to make this instance method not isolated to the actor
    func willScroll(
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:15:10: note: mark the protocol requirement 'willScroll(from:to:)' 'async' to allow actor-isolated conformances
    func willScroll(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:370:10: warning: main actor-isolated instance method 'isScrolling(from:to:progress:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func isScrolling(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:370:10: note: add 'nonisolated' to 'isScrolling(from:to:progress:)' to make this instance method not isolated to the actor
    func isScrolling(
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:19:10: note: mark the protocol requirement 'isScrolling(from:to:progress:)' 'async' to allow actor-isolated conformances
    func isScrolling(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:357:10: warning: main actor-isolated instance method 'didFinishScrolling(from:to:transitionSuccessful:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewManagerDelegate'; this is an error in the Swift 6 language mode
    func didFinishScrolling(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewController.swift:357:10: note: add 'nonisolated' to 'didFinishScrolling(from:to:transitionSuccessful:)' to make this instance method not isolated to the actor
    func didFinishScrolling(
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift:24:10: note: mark the protocol requirement 'didFinishScrolling(from:to:transitionSuccessful:)' 'async' to allow actor-isolated conformances
    func didFinishScrolling(
         ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingViewControllerDelegate.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingTransition.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingFiniteDataSource.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewManagerDelegate.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745951486113601-swift-frontend-Parchment-PageViewController.swift-arm64_apple_ios13.0-o-Onone-3664522777.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8198 seconds (5.8700 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0345 (  5.8%)   0.0412 ( 18.6%)   0.0757 (  9.2%)   2.5972 ( 44.2%)  parse-and-resolve-imports
   0.0320 (  5.3%)   0.0385 ( 17.3%)   0.0704 (  8.6%)   2.5920 ( 44.2%)  Import resolution
   0.1175 ( 19.6%)   0.0283 ( 12.8%)   0.1458 ( 17.8%)   0.1469 (  2.5%)  perform-sema
   0.1169 ( 19.6%)   0.0282 ( 12.7%)   0.1452 ( 17.7%)   0.1463 (  2.5%)  Type checking and Semantic analysis
   0.0659 ( 11.0%)   0.0161 (  7.3%)   0.0820 ( 10.0%)   0.0822 (  1.4%)  typecheck-expr
   0.0621 ( 10.4%)   0.0122 (  5.5%)   0.0743 (  9.1%)   0.0754 (  1.3%)  typecheck-stmt
   0.0512 (  8.6%)   0.0157 (  7.1%)   0.0668 (  8.2%)   0.0669 (  1.1%)  typecheck-decl
   0.0269 (  4.5%)   0.0072 (  3.3%)   0.0341 (  4.2%)   0.0343 (  0.6%)  precheck-target
   0.0210 (  3.5%)   0.0088 (  4.0%)   0.0298 (  3.6%)   0.0303 (  0.5%)  IRGen
   0.0139 (  2.3%)   0.0118 (  5.3%)   0.0258 (  3.1%)   0.0269 (  0.5%)  import-clang-decl
   0.0163 (  2.7%)   0.0028 (  1.3%)   0.0191 (  2.3%)   0.0192 (  0.3%)  SILGen
   0.0107 (  1.8%)   0.0039 (  1.8%)   0.0146 (  1.8%)   0.0146 (  0.2%)  build-rewrite-system
   0.0081 (  1.4%)   0.0031 (  1.4%)   0.0113 (  1.4%)   0.0126 (  0.2%)  load-all-members
   0.0093 (  1.6%)   0.0015 (  0.7%)   0.0108 (  1.3%)   0.0108 (  0.2%)  SILGen-function
   0.0099 (  1.7%)   0.0003 (  0.1%)   0.0102 (  1.2%)   0.0104 (  0.2%)  SIL optimization
   0.0010 (  0.2%)   0.0020 (  0.9%)   0.0030 (  0.4%)   0.0030 (  0.1%)  load-stdlib
   0.0004 (  0.1%)   0.0001 (  0.1%)   0.0005 (  0.1%)   0.0005 (  0.0%)  typecheck-for-each
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  perform-whole-module-type-checking
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.5979 (100.0%)   0.2218 (100.0%)   0.8198 (100.0%)   5.8700 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4171 seconds (2.9447 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.3101 (100.0%)   0.1070 (100.0%)   0.4171 (100.0%)   2.9447 (100.0%)  Building Target
   0.3101 (100.0%)   0.1070 (100.0%)   0.4171 (100.0%)   2.9447 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ PagingViewControllerSizeDelegate.swift,\ PagingViewControllerInfiniteDataSource.swift,\ PagingDiff.swift,\ PagingIndicatorView.swift,\ UIEdgeInsets.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingViewControllerSizeDelegate.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingViewControllerInfiniteDataSource.swift /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingDiff.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingIndicatorView.swift /Users/admin/builder/spi-builder-workspace/Parchment/Extensions/UIEdgeInsets.swift (in target 'Parchment' from project 'Parchment')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745951486116878-swift-frontend-Parchment-PagingViewControllerSizeDelegate.swift-arm64_apple_ios13.0-o-Onone-686800865.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3610 seconds (4.9878 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0290 ( 11.7%)   0.0275 ( 24.2%)   0.0566 ( 15.7%)   2.3700 ( 47.5%)  parse-and-resolve-imports
   0.0270 ( 10.9%)   0.0256 ( 22.5%)   0.0526 ( 14.6%)   2.3660 ( 47.4%)  Import resolution
   0.0397 ( 16.1%)   0.0111 (  9.8%)   0.0508 ( 14.1%)   0.0508 (  1.0%)  perform-sema
   0.0395 ( 16.0%)   0.0110 (  9.7%)   0.0506 ( 14.0%)   0.0506 (  1.0%)  Type checking and Semantic analysis
   0.0262 ( 10.6%)   0.0061 (  5.4%)   0.0324 (  9.0%)   0.0324 (  0.6%)  typecheck-stmt
   0.0149 (  6.0%)   0.0040 (  3.5%)   0.0189 (  5.2%)   0.0189 (  0.4%)  precheck-target
   0.0133 (  5.4%)   0.0049 (  4.3%)   0.0183 (  5.1%)   0.0183 (  0.4%)  typecheck-decl
   0.0125 (  5.1%)   0.0053 (  4.6%)   0.0178 (  4.9%)   0.0178 (  0.4%)  IRGen
   0.0137 (  5.5%)   0.0035 (  3.1%)   0.0172 (  4.8%)   0.0172 (  0.3%)  typecheck-expr
   0.0073 (  2.9%)   0.0074 (  6.5%)   0.0146 (  4.1%)   0.0146 (  0.3%)  import-clang-decl
   0.0063 (  2.5%)   0.0018 (  1.6%)   0.0081 (  2.2%)   0.0081 (  0.2%)  build-rewrite-system
   0.0044 (  1.8%)   0.0026 (  2.3%)   0.0070 (  1.9%)   0.0070 (  0.1%)  load-all-members
   0.0041 (  1.7%)   0.0005 (  0.5%)   0.0046 (  1.3%)   0.0046 (  0.1%)  SILGen
   0.0045 (  1.8%)   0.0001 (  0.1%)   0.0046 (  1.3%)   0.0046 (  0.1%)  SIL optimization
   0.0028 (  1.1%)   0.0003 (  0.2%)   0.0031 (  0.8%)   0.0031 (  0.1%)  SILGen-function
   0.0010 (  0.4%)   0.0017 (  1.5%)   0.0027 (  0.7%)   0.0027 (  0.1%)  load-stdlib
   0.0009 (  0.4%)   0.0001 (  0.1%)   0.0010 (  0.3%)   0.0010 (  0.0%)  typecheck-for-each
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2473 (100.0%)   0.1137 (100.0%)   0.3610 (100.0%)   4.9878 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5779 seconds (2.9013 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.4397 (100.0%)   0.1382 (100.0%)   0.5779 (100.0%)   2.9013 (100.0%)  Building Target
   0.4397 (100.0%)   0.1382 (100.0%)   0.5779 (100.0%)   2.9013 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingViewControllerSizeDelegate.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingViewControllerInfiniteDataSource.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingDiff.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingIndicatorView.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Extensions/UIEdgeInsets.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal arm64 Compiling ConstraintOffsetTarget.swift, ConstraintPriority.swift, ConstraintPriorityTarget.swift, ConstraintRelatableTarget.swift (in target 'SnapKit' from project 'SnapKit')
SwiftDriverJobDiscovery normal arm64 Compiling LayoutConstraintItem.swift, Typealiases.swift, UILayoutSupport+Extensions.swift (in target 'SnapKit' from project 'SnapKit')
SwiftCompile normal arm64 Compiling\ PagingState.swift,\ AnyPagingItem.swift,\ PagingIndicatorMetric.swift,\ PageViewControllerDelegate.swift,\ PagingIndexItem.swift,\ PagingSizeCache.swift /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingState.swift /Users/admin/builder/spi-builder-workspace/Parchment/Structs/AnyPagingItem.swift /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingIndicatorMetric.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewControllerDelegate.swift /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingIndexItem.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingSizeCache.swift (in target 'Parchment' from project 'Parchment')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745951486119777-swift-frontend-Parchment-PagingState.swift-arm64_apple_ios13.0-o-Onone-1288967030.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4995 seconds (5.3056 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0321 (  9.1%)   0.0338 ( 22.8%)   0.0659 ( 13.2%)   2.4681 ( 46.5%)  parse-and-resolve-imports
   0.0297 (  8.5%)   0.0311 ( 21.0%)   0.0609 ( 12.2%)   2.4629 ( 46.4%)  Import resolution
   0.0613 ( 17.5%)   0.0174 ( 11.7%)   0.0787 ( 15.8%)   0.0791 (  1.5%)  perform-sema
   0.0611 ( 17.4%)   0.0173 ( 11.7%)   0.0784 ( 15.7%)   0.0787 (  1.5%)  Type checking and Semantic analysis
   0.0411 ( 11.7%)   0.0094 (  6.4%)   0.0505 ( 10.1%)   0.0506 (  1.0%)  typecheck-stmt
   0.0293 (  8.4%)   0.0071 (  4.8%)   0.0365 (  7.3%)   0.0366 (  0.7%)  typecheck-expr
   0.0246 (  7.0%)   0.0087 (  5.9%)   0.0333 (  6.7%)   0.0336 (  0.6%)  typecheck-decl
   0.0156 (  4.5%)   0.0049 (  3.3%)   0.0205 (  4.1%)   0.0206 (  0.4%)  IRGen
   0.0134 (  3.8%)   0.0040 (  2.7%)   0.0174 (  3.5%)   0.0175 (  0.3%)  precheck-target
   0.0149 (  4.3%)   0.0020 (  1.3%)   0.0169 (  3.4%)   0.0172 (  0.3%)  SILGen
   0.0051 (  1.5%)   0.0074 (  5.0%)   0.0125 (  2.5%)   0.0127 (  0.2%)  import-clang-decl
   0.0084 (  2.4%)   0.0009 (  0.6%)   0.0093 (  1.9%)   0.0095 (  0.2%)  SILGen-function
   0.0068 (  1.9%)   0.0022 (  1.5%)   0.0090 (  1.8%)   0.0090 (  0.2%)  build-rewrite-system
   0.0065 (  1.8%)   0.0001 (  0.1%)   0.0065 (  1.3%)   0.0066 (  0.1%)  SIL optimization
   0.0010 (  0.3%)   0.0019 (  1.3%)   0.0028 (  0.6%)   0.0028 (  0.1%)  load-stdlib
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.3513 (100.0%)   0.1482 (100.0%)   0.4995 (100.0%)   5.3056 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4887 seconds (2.8959 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.3662 (100.0%)   0.1225 (100.0%)   0.4887 (100.0%)   2.8959 (100.0%)  Building Target
   0.3662 (100.0%)   0.1225 (100.0%)   0.4887 (100.0%)   2.8959 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingState.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Structs/AnyPagingItem.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingIndicatorMetric.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewControllerDelegate.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingIndexItem.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingSizeCache.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ PagingViewController.swift,\ PagingOptions.swift,\ PagingMenuInteraction.swift,\ PagingIndicatorOptions.swift,\ PagingTitleCell.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingOptions.swift /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingMenuInteraction.swift /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingIndicatorOptions.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingTitleCell.swift (in target 'Parchment' from project 'Parchment')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:571:17: warning: main actor-isolated instance method 'pageViewController(_:viewControllerBeforeViewController:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewControllerDataSource'; this is an error in the Swift 6 language mode
    public func pageViewController(_: PageViewController, viewControllerBeforeViewController _: UIViewController) -> UIViewController? {
                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:571:17: note: add 'nonisolated' to 'pageViewController(_:viewControllerBeforeViewController:)' to make this instance method not isolated to the actor
    public func pageViewController(_: PageViewController, viewControllerBeforeViewController _: UIViewController) -> UIViewController? {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:17:5: note: add '@preconcurrency' to the 'PageViewControllerDataSource' conformance to defer isolation checking to run time
    PageViewControllerDataSource,
    ^
    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewControllerDataSource.swift:11:10: note: mark the protocol requirement 'pageViewController(_:viewControllerBeforeViewController:)' 'async' to allow actor-isolated conformances
    func pageViewController(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:580:17: warning: main actor-isolated instance method 'pageViewController(_:viewControllerAfterViewController:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewControllerDataSource'; this is an error in the Swift 6 language mode
    public func pageViewController(_: PageViewController, viewControllerAfterViewController _: UIViewController) -> UIViewController? {
                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:580:17: note: add 'nonisolated' to 'pageViewController(_:viewControllerAfterViewController:)' to make this instance method not isolated to the actor
    public func pageViewController(_: PageViewController, viewControllerAfterViewController _: UIViewController) -> UIViewController? {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewControllerDataSource.swift:21:10: note: mark the protocol requirement 'pageViewController(_:viewControllerAfterViewController:)' 'async' to allow actor-isolated conformances
    func pageViewController(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:605:17: warning: main actor-isolated instance method 'pageViewController(_:willStartScrollingFrom:destinationViewController:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewControllerDelegate'; this is an error in the Swift 6 language mode
    public func pageViewController(_: PageViewController, willStartScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController) {
                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:605:17: note: add 'nonisolated' to 'pageViewController(_:willStartScrollingFrom:destinationViewController:)' to make this instance method not isolated to the actor
    public func pageViewController(_: PageViewController, willStartScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController) {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:18:5: note: add '@preconcurrency' to the 'PageViewControllerDelegate' conformance to defer isolation checking to run time
    PageViewControllerDelegate {
    ^
    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewControllerDelegate.swift:16:10: note: mark the protocol requirement 'pageViewController(_:willStartScrollingFrom:destinationViewController:)' 'async' to allow actor-isolated conformances
    func pageViewController(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:591:17: warning: main actor-isolated instance method 'pageViewController(_:isScrollingFrom:destinationViewController:progress:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewControllerDelegate'; this is an error in the Swift 6 language mode
    public func pageViewController(_: PageViewController, isScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController?, progress: CGFloat) {
                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:591:17: note: add 'nonisolated' to 'pageViewController(_:isScrollingFrom:destinationViewController:progress:)' to make this instance method not isolated to the actor
    public func pageViewController(_: PageViewController, isScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController?, progress: CGFloat) {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewControllerDelegate.swift:33:10: note: mark the protocol requirement 'pageViewController(_:isScrollingFrom:destinationViewController:progress:)' 'async' to allow actor-isolated conformances
    func pageViewController(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:616:17: warning: main actor-isolated instance method 'pageViewController(_:didFinishScrollingFrom:destinationViewController:transitionSuccessful:)' cannot be used to satisfy nonisolated requirement from protocol 'PageViewControllerDelegate'; this is an error in the Swift 6 language mode
    public func pageViewController(_: PageViewController, didFinishScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController, transitionSuccessful: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:616:17: note: add 'nonisolated' to 'pageViewController(_:didFinishScrollingFrom:destinationViewController:transitionSuccessful:)' to make this instance method not isolated to the actor
    public func pageViewController(_: PageViewController, didFinishScrollingFrom startingViewController: UIViewController, destinationViewController: UIViewController, transitionSuccessful: Bool) {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewControllerDelegate.swift:50:10: note: mark the protocol requirement 'pageViewController(_:didFinishScrollingFrom:destinationViewController:transitionSuccessful:)' 'async' to allow actor-isolated conformances
    func pageViewController(
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:634:17: warning: main actor-isolated instance method 'pagingItemBefore(pagingItem:)' cannot be used to satisfy nonisolated requirement from protocol 'PagingMenuDataSource'; this is an error in the Swift 6 language mode
    public func pagingItemBefore(pagingItem: PagingItem) -> PagingItem? {
                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:634:17: note: add 'nonisolated' to 'pagingItemBefore(pagingItem:)' to make this instance method not isolated to the actor
    public func pagingItemBefore(pagingItem: PagingItem) -> PagingItem? {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:633:33: note: add '@preconcurrency' to the 'PagingMenuDataSource' conformance to defer isolation checking to run time
extension PagingViewController: PagingMenuDataSource {
                                ^
                                @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingMenuDataSource.swift:4:10: note: mark the protocol requirement 'pagingItemBefore(pagingItem:)' 'async' to allow actor-isolated conformances
    func pagingItemBefore(pagingItem: PagingItem) -> PagingItem?
         ^
                                                  async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:638:17: warning: main actor-isolated instance method 'pagingItemAfter(pagingItem:)' cannot be used to satisfy nonisolated requirement from protocol 'PagingMenuDataSource'; this is an error in the Swift 6 language mode
    public func pagingItemAfter(pagingItem: PagingItem) -> PagingItem? {
                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:638:17: note: add 'nonisolated' to 'pagingItemAfter(pagingItem:)' to make this instance method not isolated to the actor
    public func pagingItemAfter(pagingItem: PagingItem) -> PagingItem? {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingMenuDataSource.swift:5:10: note: mark the protocol requirement 'pagingItemAfter(pagingItem:)' 'async' to allow actor-isolated conformances
    func pagingItemAfter(pagingItem: PagingItem) -> PagingItem?
         ^
                                                 async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:644:10: warning: main actor-isolated instance method 'width(for:isSelected:)' cannot be used to satisfy nonisolated requirement from protocol 'PagingControllerSizeDelegate'; this is an error in the Swift 6 language mode
    func width(for pagingItem: PagingItem, isSelected: Bool) -> CGFloat {
         ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:644:10: note: add 'nonisolated' to 'width(for:isSelected:)' to make this instance method not isolated to the actor
    func width(for pagingItem: PagingItem, isSelected: Bool) -> CGFloat {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:643:33: note: add '@preconcurrency' to the 'PagingControllerSizeDelegate' conformance to defer isolation checking to run time
extension PagingViewController: PagingControllerSizeDelegate {
                                ^
                                @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingController.swift:4:10: note: mark the protocol requirement 'width(for:isSelected:)' 'async' to allow actor-isolated conformances
    func width(for: PagingItem, isSelected: Bool) -> CGFloat
         ^
                                                  async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:650:17: warning: main actor-isolated instance method 'selectContent(pagingItem:direction:animated:)' cannot be used to satisfy nonisolated requirement from protocol 'PagingMenuDelegate'; this is an error in the Swift 6 language mode
    public func selectContent(pagingItem: PagingItem, direction: PagingDirection, animated: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:650:17: note: add 'nonisolated' to 'selectContent(pagingItem:direction:animated:)' to make this instance method not isolated to the actor
    public func selectContent(pagingItem: PagingItem, direction: PagingDirection, animated: Bool) {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:649:33: note: add '@preconcurrency' to the 'PagingMenuDelegate' conformance to defer isolation checking to run time
extension PagingViewController: PagingMenuDelegate {
                                ^
                                @preconcurrency
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingMenuDelegate.swift:4:10: note: mark the protocol requirement 'selectContent(pagingItem:direction:animated:)' 'async' to allow actor-isolated conformances
    func selectContent(pagingItem: PagingItem, direction: PagingDirection, animated: Bool)
         ^
                                                                                           async
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:670:17: warning: main actor-isolated instance method 'removeContent()' cannot be used to satisfy nonisolated requirement from protocol 'PagingMenuDelegate'; this is an error in the Swift 6 language mode
    public func removeContent() {
                ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingViewController.swift:670:17: note: add 'nonisolated' to 'removeContent()' to make this instance method not isolated to the actor
    public func removeContent() {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingMenuDelegate.swift:5:10: note: mark the protocol requirement 'removeContent()' 'async' to allow actor-isolated conformances
    func removeContent()
         ^
                         async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingOptions.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingMenuInteraction.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingIndicatorOptions.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingTitleCell.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745951486120284-swift-frontend-Parchment-PagingViewController.swift-arm64_apple_ios13.0-o-Onone-2782065560.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 1.1122 seconds (5.9709 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0333 (  3.9%)   0.0370 ( 14.7%)   0.0703 (  6.3%)   2.4945 ( 41.8%)  parse-and-resolve-imports
   0.0309 (  3.6%)   0.0346 ( 13.7%)   0.0655 (  5.9%)   2.4897 ( 41.7%)  Import resolution
   0.1721 ( 20.0%)   0.0377 ( 15.0%)   0.2098 ( 18.9%)   0.2120 (  3.6%)  perform-sema
   0.1711 ( 19.9%)   0.0376 ( 14.9%)   0.2086 ( 18.8%)   0.2108 (  3.5%)  Type checking and Semantic analysis
   0.0952 ( 11.1%)   0.0190 (  7.5%)   0.1143 ( 10.3%)   0.1157 (  1.9%)  typecheck-expr
   0.0901 ( 10.5%)   0.0239 (  9.5%)   0.1139 ( 10.2%)   0.1152 (  1.9%)  typecheck-decl
   0.0870 ( 10.1%)   0.0154 (  6.1%)   0.1023 (  9.2%)   0.1035 (  1.7%)  typecheck-stmt
   0.0416 (  4.8%)   0.0134 (  5.3%)   0.0550 (  4.9%)   0.0551 (  0.9%)  IRGen
   0.0354 (  4.1%)   0.0056 (  2.2%)   0.0410 (  3.7%)   0.0416 (  0.7%)  SILGen
   0.0186 (  2.2%)   0.0135 (  5.3%)   0.0320 (  2.9%)   0.0321 (  0.5%)  import-clang-decl
   0.0230 (  2.7%)   0.0031 (  1.2%)   0.0261 (  2.3%)   0.0266 (  0.4%)  precheck-target
   0.0208 (  2.4%)   0.0025 (  1.0%)   0.0233 (  2.1%)   0.0236 (  0.4%)  SILGen-function
   0.0177 (  2.1%)   0.0002 (  0.1%)   0.0179 (  1.6%)   0.0181 (  0.3%)  SIL optimization
   0.0130 (  1.5%)   0.0045 (  1.8%)   0.0175 (  1.6%)   0.0177 (  0.3%)  build-rewrite-system
   0.0080 (  0.9%)   0.0024 (  1.0%)   0.0104 (  0.9%)   0.0104 (  0.2%)  load-all-members
   0.0009 (  0.1%)   0.0018 (  0.7%)   0.0027 (  0.2%)   0.0027 (  0.0%)  load-stdlib
   0.0007 (  0.1%)   0.0001 (  0.0%)   0.0007 (  0.1%)   0.0007 (  0.0%)  typecheck-for-each
   0.0006 (  0.1%)   0.0000 (  0.0%)   0.0006 (  0.1%)   0.0007 (  0.0%)  perform-whole-module-type-checking
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  SIL verification, pre-optimization
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.8601 (100.0%)   0.2521 (100.0%)   1.1122 (100.0%)   5.9709 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6286 seconds (3.0593 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.5086 (100.0%)   0.1200 (100.0%)   0.6286 (100.0%)   3.0593 (100.0%)  Building Target
   0.5086 (100.0%)   0.1200 (100.0%)   0.6286 (100.0%)   3.0593 (100.0%)  Total
SwiftDriverJobDiscovery normal arm64 Compiling ConstraintMakerPrioritizable.swift, ConstraintMakerRelatable+Extensions.swift, ConstraintMakerRelatable.swift, ConstraintMultiplierTarget.swift (in target 'SnapKit' from project 'SnapKit')
SwiftCompile normal arm64 Compiling\ PagingCellViewModel.swift,\ PagingDirection.swift,\ PagingView.swift,\ PagingMenuDataSource.swift,\ PagingCell.swift,\ PageViewControllerDataSource.swift /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingCellViewModel.swift /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingDirection.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingView.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingMenuDataSource.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCell.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewControllerDataSource.swift (in target 'Parchment' from project 'Parchment')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745951486120825-swift-frontend-Parchment-PagingCellViewModel.swift-arm64_apple_ios13.0-o-Onone-82442520.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3096 seconds (4.6579 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0286 ( 13.6%)   0.0264 ( 26.6%)   0.0550 ( 17.8%)   2.2289 ( 47.9%)  parse-and-resolve-imports
   0.0266 ( 12.6%)   0.0246 ( 24.7%)   0.0511 ( 16.5%)   2.2251 ( 47.8%)  Import resolution
   0.0295 ( 14.0%)   0.0095 (  9.6%)   0.0390 ( 12.6%)   0.0390 (  0.8%)  perform-sema
   0.0293 ( 13.9%)   0.0095 (  9.5%)   0.0387 ( 12.5%)   0.0387 (  0.8%)  Type checking and Semantic analysis
   0.0242 ( 11.5%)   0.0083 (  8.3%)   0.0324 ( 10.5%)   0.0324 (  0.7%)  typecheck-decl
   0.0124 (  5.9%)   0.0035 (  3.5%)   0.0159 (  5.1%)   0.0158 (  0.3%)  IRGen
   0.0076 (  3.6%)   0.0078 (  7.9%)   0.0154 (  5.0%)   0.0156 (  0.3%)  import-clang-decl
   0.0093 (  4.4%)   0.0014 (  1.4%)   0.0107 (  3.5%)   0.0107 (  0.2%)  typecheck-expr
   0.0091 (  4.4%)   0.0014 (  1.4%)   0.0106 (  3.4%)   0.0106 (  0.2%)  typecheck-stmt
   0.0091 (  4.3%)   0.0008 (  0.8%)   0.0099 (  3.2%)   0.0099 (  0.2%)  SILGen
   0.0053 (  2.5%)   0.0031 (  3.1%)   0.0084 (  2.7%)   0.0086 (  0.2%)  load-all-members
   0.0067 (  3.2%)   0.0005 (  0.5%)   0.0072 (  2.3%)   0.0072 (  0.2%)  SILGen-function
   0.0055 (  2.6%)   0.0000 (  0.0%)   0.0056 (  1.8%)   0.0056 (  0.1%)  SIL optimization
   0.0038 (  1.8%)   0.0008 (  0.9%)   0.0046 (  1.5%)   0.0046 (  0.1%)  build-rewrite-system
   0.0023 (  1.1%)   0.0002 (  0.2%)   0.0024 (  0.8%)   0.0024 (  0.1%)  precheck-target
   0.0009 (  0.4%)   0.0016 (  1.6%)   0.0024 (  0.8%)   0.0024 (  0.1%)  load-stdlib
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2102 (100.0%)   0.0994 (100.0%)   0.3096 (100.0%)   4.6579 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7220 seconds (2.9032 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.5565 (100.0%)   0.1655 (100.0%)   0.7220 (100.0%)   2.9032 (100.0%)  Building Target
   0.5565 (100.0%)   0.1655 (100.0%)   0.7220 (100.0%)   2.9032 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Structs/PagingCellViewModel.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Enums/PagingDirection.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingView.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingMenuDataSource.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCell.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PageViewControllerDataSource.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal arm64 Compiling ConstraintInsetTarget.swift, ConstraintInsets.swift, ConstraintItem.swift, ConstraintLayoutGuide+Extensions.swift (in target 'SnapKit' from project 'SnapKit')
SwiftDriverJobDiscovery normal arm64 Compiling ConstraintDSL.swift, ConstraintDescription.swift, ConstraintDirectionalInsetTarget.swift, ConstraintDirectionalInsets.swift (in target 'SnapKit' from project 'SnapKit')
SwiftDriver\ Compilation SnapKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SnapKit' from project 'SnapKit')
    cd /Users/admin/builder/spi-builder-workspace/Parchment.xcodeproj
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SnapKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit.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.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.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.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit-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/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit.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/SnapKit.build/Debug-iphoneos/SnapKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit_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/SnapKit.build/Debug-iphoneos/SnapKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.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/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/Parchment.xcodeproj -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for Parchment (in target 'Parchment' from project 'Parchment')
SwiftCompile normal arm64 Compiling\ PagingCellLayoutAttributes.swift,\ PageViewManager.swift,\ PagingMenuView.swift,\ PagingLayout.swift,\ PagingMenuDelegate.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCellLayoutAttributes.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewManager.swift /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingMenuView.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingLayout.swift /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingMenuDelegate.swift (in target 'Parchment' from project 'Parchment')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745951488654119-swift-frontend-Parchment-PagingCellLayoutAttributes.swift-arm64_apple_ios13.0-o-Onone-2410245462.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.9688 seconds (0.9762 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1460 ( 19.7%)   0.0309 ( 13.7%)   0.1769 ( 18.3%)   0.1783 ( 18.3%)  perform-sema
   0.1452 ( 19.6%)   0.0307 ( 13.6%)   0.1759 ( 18.2%)   0.1773 ( 18.2%)  Type checking and Semantic analysis
   0.1010 ( 13.6%)   0.0181 (  8.0%)   0.1191 ( 12.3%)   0.1200 ( 12.3%)  typecheck-expr
   0.0867 ( 11.7%)   0.0141 (  6.2%)   0.1008 ( 10.4%)   0.1017 ( 10.4%)  typecheck-stmt
   0.0597 (  8.0%)   0.0169 (  7.5%)   0.0766 (  7.9%)   0.0772 (  7.9%)  typecheck-decl
   0.0343 (  4.6%)   0.0391 ( 17.3%)   0.0734 (  7.6%)   0.0739 (  7.6%)  parse-and-resolve-imports
   0.0318 (  4.3%)   0.0363 ( 16.0%)   0.0681 (  7.0%)   0.0685 (  7.0%)  Import resolution
   0.0357 (  4.8%)   0.0060 (  2.7%)   0.0417 (  4.3%)   0.0420 (  4.3%)  precheck-target
   0.0261 (  3.5%)   0.0096 (  4.3%)   0.0358 (  3.7%)   0.0358 (  3.7%)  IRGen
   0.0149 (  2.0%)   0.0133 (  5.9%)   0.0282 (  2.9%)   0.0282 (  2.9%)  import-clang-decl
   0.0199 (  2.7%)   0.0027 (  1.2%)   0.0226 (  2.3%)   0.0233 (  2.4%)  SILGen
   0.0130 (  1.7%)   0.0012 (  0.5%)   0.0142 (  1.5%)   0.0143 (  1.5%)  SILGen-function
   0.0093 (  1.2%)   0.0030 (  1.3%)   0.0123 (  1.3%)   0.0124 (  1.3%)  build-rewrite-system
   0.0101 (  1.4%)   0.0001 (  0.0%)   0.0101 (  1.0%)   0.0101 (  1.0%)  SIL optimization
   0.0073 (  1.0%)   0.0024 (  1.1%)   0.0097 (  1.0%)   0.0097 (  1.0%)  load-all-members
   0.0010 (  0.1%)   0.0017 (  0.8%)   0.0027 (  0.3%)   0.0029 (  0.3%)  load-stdlib
   0.0004 (  0.0%)   0.0000 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  perform-whole-module-type-checking
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.7425 (100.0%)   0.2263 (100.0%)   0.9688 (100.0%)   0.9762 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4841 seconds (0.4893 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.3765 (100.0%)   0.1077 (100.0%)   0.4841 (100.0%)   0.4893 (100.0%)  Building Target
   0.3765 (100.0%)   0.1077 (100.0%)   0.4841 (100.0%)   0.4893 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCellLayoutAttributes.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCellLayoutAttributes.swift:16:16: warning: main actor-isolated property 'progress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if progress != rhs.progress {
               ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCellLayoutAttributes.swift:6:14: note: property declared here
    open var progress: CGFloat = 0.0
             ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCellLayoutAttributes.swift:16:32: warning: main actor-isolated property 'progress' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            if progress != rhs.progress {
                               ^
/Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingCellLayoutAttributes.swift:6:14: note: property declared here
    open var progress: CGFloat = 0.0
             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PageViewManager.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Classes/PagingMenuView.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingLayout.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Parchment/Protocols/PagingMenuDelegate.swift (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SnapKit.o normal (in target 'SnapKit' from project 'SnapKit')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SnapKit
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.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.3.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.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.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/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SnapKit.o
SwiftDriver\ Compilation\ Requirements Parchment normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Parchment -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.SwiftFileList -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/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 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment-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/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.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/Parchment.build/Debug-iphoneos/Parchment.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment-2b3a172759768ecae4ab80bed0f6565e-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment-project-headers.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/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling PagingBorderOptions.swift, PagingMenuItemSource.swift, PagingDistance.swift, PagingViewControllerDataSource.swift, PagingStaticDataSource.swift (in target 'Parchment' from project 'Parchment')
SwiftDriverJobDiscovery normal arm64 Compiling PagingState.swift, AnyPagingItem.swift, PagingIndicatorMetric.swift, PageViewControllerDelegate.swift, PagingIndexItem.swift, PagingSizeCache.swift (in target 'Parchment' from project 'Parchment')
SwiftDriverJobDiscovery normal arm64 Compiling PagingViewControllerSizeDelegate.swift, PagingViewControllerInfiniteDataSource.swift, PagingDiff.swift, PagingIndicatorView.swift, UIEdgeInsets.swift (in target 'Parchment' from project 'Parchment')
SwiftDriverJobDiscovery normal arm64 Compiling PagingCellViewModel.swift, PagingDirection.swift, PagingView.swift, PagingMenuDataSource.swift, PagingCell.swift, PageViewControllerDataSource.swift (in target 'Parchment' from project 'Parchment')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+constraints.swift, PageViewDirection.swift, PageViewState.swift, CollectionView.swift, PagingInvalidationContext.swift (in target 'Parchment' from project 'Parchment')
SwiftDriverJobDiscovery normal arm64 Compiling PagingItem.swift, UIColor+interpolation.swift, InvalidationState.swift, PagingController.swift, Tween.swift (in target 'Parchment' from project 'Parchment')
SwiftDriverJobDiscovery normal arm64 Compiling PagingIndicatorLayoutAttributes.swift, PagingItems.swift, PagingCollectionViewLayout.swift, PagingMenuItemSize.swift, PageViewManagerDataSource.swift (in target 'Parchment' from project 'Parchment')
SwiftDriverJobDiscovery normal arm64 Compiling PageViewController.swift, PagingViewControllerDelegate.swift, PagingTransition.swift, PagingFiniteDataSource.swift, PageViewManagerDelegate.swift (in target 'Parchment' from project 'Parchment')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Headers/Parchment-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment-Swift.h (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Headers/Parchment-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Modules/Parchment.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.swiftdoc (in target 'Parchment' from project 'Parchment')
    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/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Modules/Parchment.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Modules/Parchment.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.swiftmodule (in target 'Parchment' from project 'Parchment')
    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/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Modules/Parchment.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Modules/Parchment.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.abi.json (in target 'Parchment' from project 'Parchment')
    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/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Modules/Parchment.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Modules/Parchment.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.swiftsourceinfo (in target 'Parchment' from project 'Parchment')
    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/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Modules/Parchment.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
ScanDependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources/Parchment_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    builtin-ScanDependencies -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.o.scan -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wunreachable-code -Wquoted-include-in-framework-header -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources/Parchment_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.o -index-unit-output-path /Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.o
ExtractAppIntentsMetadata (in target 'SnapKit' from project 'SnapKit')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SnapKit
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SnapKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier snapkit.SnapKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SnapKit.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SnapKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/SnapKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/SnapKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 11:31:29.158 appintentsmetadataprocessor[757:4361] Starting appintentsmetadataprocessor export
2025-04-29 11:31:29.202 appintentsmetadataprocessor[757:4361] Extracted no relevant App Intents symbols, skipping writing output
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources/Parchment_vers.c normal arm64 c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wunreachable-code -Wquoted-include-in-framework-header -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-implicit-fallthrough -fstrict-aliasing -Wdeprecated-declarations -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/7187679823f38a2a940e0043cdf9d637-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.dia -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources/Parchment_vers.c -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.o -index-unit-output-path /Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_vers.o
SwiftDriverJobDiscovery normal arm64 Compiling PagingCellLayoutAttributes.swift, PageViewManager.swift, PagingMenuView.swift, PagingLayout.swift, PagingMenuDelegate.swift (in target 'Parchment' from project 'Parchment')
SwiftDriverJobDiscovery normal arm64 Compiling PagingViewController.swift, PagingOptions.swift, PagingMenuInteraction.swift, PagingIndicatorOptions.swift, PagingTitleCell.swift (in target 'Parchment' from project 'Parchment')
SwiftDriver\ Compilation Parchment normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Parchment -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.SwiftFileList -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.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 -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/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 -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment-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/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.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/Parchment.build/Debug-iphoneos/Parchment.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_const_extract_protocols.json -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment-generated-files.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment-own-target-headers.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment-2b3a172759768ecae4ab80bed0f6565e-VFS-iphoneos/all-product-headers.yaml -Xcc -iquote -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment-project-headers.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/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment-Swift.h -import-underlying-module -Xcc -ivfsoverlay -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/unextended-module-overlay.yaml -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SnapKit.o (in target 'SnapKit' from project 'SnapKit')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SnapKit
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SnapKit.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Info.plist /Users/admin/builder/spi-builder-workspace/Parchment/Resources/Info.plist (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/Parchment/Resources/Info.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Parchment normal (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.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 -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 -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.LinkFileList -install_name @rpath/Parchment.framework/Parchment -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.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/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.swiftmodule -Wl,-no_warn_duplicate_libraries -weak_framework SwiftUI -compatibility_version 1 -current_version 1 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Parchment -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SnapKit.build/Debug-iphoneos/SnapKit.build/Objects-normal/arm64/SnapKit.swiftmodule
ExtractAppIntentsMetadata (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Parchment --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier com.martinrechsteiner.Parchment --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Parchment --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Objects-normal/arm64/Parchment.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-29 11:31:29.457 appintentsmetadataprocessor[761:4383] Starting appintentsmetadataprocessor export
2025-04-29 11:31:29.458 appintentsmetadataprocessor[761:4383] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
AppIntentsSSUTraining (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsnltrainingprocessor --infoplist-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Info.plist --temp-dir-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/ssu --bundle-id com.martinrechsteiner.Parchment --product-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework --extracted-metadata-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Metadata.appintents --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Parchment.build/Debug-iphoneos/Parchment.build/Parchment.DependencyMetadataFileList --archive-ssu-assets
2025-04-29 11:31:29.480 appintentsnltrainingprocessor[762:4384] Parsing options for appintentsnltrainingprocessor
2025-04-29 11:31:29.481 appintentsnltrainingprocessor[762:4384] No AppShortcuts found - Skipping.
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos/Parchment.framework/Parchment.tbd (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -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 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework/Parchment -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos/Parchment.framework/Parchment.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework (in target 'Parchment' from project 'Parchment')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Parchment.framework
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "snapkit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.6.0",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/SnapKit/SnapKit"
    }
  ],
  "manifest_display_name" : "Parchment",
  "name" : "Parchment",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Parchment",
      "targets" : [
        "Parchment"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Parchment",
      "module_type" : "SwiftTarget",
      "name" : "Parchment",
      "path" : "Parchment",
      "product_dependencies" : [
        "SnapKit"
      ],
      "product_memberships" : [
        "Parchment"
      ],
      "sources" : [
        "Classes/PageViewController.swift",
        "Classes/PageViewManager.swift",
        "Classes/PagingCell.swift",
        "Classes/PagingCellLayoutAttributes.swift",
        "Classes/PagingCollectionViewLayout.swift",
        "Classes/PagingController.swift",
        "Classes/PagingFiniteDataSource.swift",
        "Classes/PagingIndicatorLayoutAttributes.swift",
        "Classes/PagingIndicatorView.swift",
        "Classes/PagingInvalidationContext.swift",
        "Classes/PagingMenuView.swift",
        "Classes/PagingOptions.swift",
        "Classes/PagingSizeCache.swift",
        "Classes/PagingStaticDataSource.swift",
        "Classes/PagingTitleCell.swift",
        "Classes/PagingView.swift",
        "Classes/PagingViewController.swift",
        "Enums/InvalidationState.swift",
        "Enums/PageViewDirection.swift",
        "Enums/PageViewState.swift",
        "Enums/PagingBorderOptions.swift",
        "Enums/PagingDirection.swift",
        "Enums/PagingIndicatorOptions.swift",
        "Enums/PagingMenuInteraction.swift",
        "Enums/PagingMenuItemSize.swift",
        "Enums/PagingMenuItemSource.swift",
        "Enums/PagingState.swift",
        "Extensions/UIColor+interpolation.swift",
        "Extensions/UIEdgeInsets.swift",
        "Extensions/UIView+constraints.swift",
        "Protocols/CollectionView.swift",
        "Protocols/PageViewControllerDataSource.swift",
        "Protocols/PageViewControllerDelegate.swift",
        "Protocols/PageViewManagerDataSource.swift",
        "Protocols/PageViewManagerDelegate.swift",
        "Protocols/PagingItem.swift",
        "Protocols/PagingLayout.swift",
        "Protocols/PagingMenuDataSource.swift",
        "Protocols/PagingMenuDelegate.swift",
        "Protocols/PagingViewControllerDataSource.swift",
        "Protocols/PagingViewControllerDelegate.swift",
        "Protocols/PagingViewControllerInfiniteDataSource.swift",
        "Protocols/PagingViewControllerSizeDelegate.swift",
        "Protocols/Tween.swift",
        "Structs/AnyPagingItem.swift",
        "Structs/PagingCellViewModel.swift",
        "Structs/PagingDiff.swift",
        "Structs/PagingDistance.swift",
        "Structs/PagingIndexItem.swift",
        "Structs/PagingIndicatorMetric.swift",
        "Structs/PagingItems.swift",
        "Structs/PagingTransition.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.