This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 ESPullToRefresh with Swift 6.0 for iOS using Xcode 16.0.

Swift 6 data race errors: 23

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme ESPullToRefresh -destination generic/platform=ios OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    |         `- note: 'trigger' declared here
 76 |
 77 |     // Offset y refresh event executed by this parameter you can customize the animation to perform when you refresh the view of reservations height
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:38:14: warning: main actor-isolated property 'executeIncremental' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 36 |     open var insets: UIEdgeInsets = UIEdgeInsets.zero
 37 |     open var trigger: CGFloat = 42.0
 38 |     open var executeIncremental: CGFloat = 42.0
    |              `- warning: main actor-isolated property 'executeIncremental' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 39 |     open var state: ESRefreshViewState = .pullToRefresh
 40 |
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:78:9: note: 'executeIncremental' declared here
 76 |
 77 |     // Offset y refresh event executed by this parameter you can customize the animation to perform when you refresh the view of reservations height
 78 |     var executeIncremental: CGFloat {set get}
    |         `- note: 'executeIncremental' declared here
 79 |
 80 |     // Current refresh state, default is .pullToRefresh
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:39:14: warning: main actor-isolated property 'state' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 37 |     open var trigger: CGFloat = 42.0
 38 |     open var executeIncremental: CGFloat = 42.0
 39 |     open var state: ESRefreshViewState = .pullToRefresh
    |              `- warning: main actor-isolated property 'state' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 40 |
 41 |     fileprivate let titleLabel: UILabel = {
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:81:9: note: 'state' declared here
 79 |
 80 |     // Current refresh state, default is .pullToRefresh
 81 |     var state: ESRefreshViewState {set get}
    |         `- note: 'state' declared here
 82 |
 83 | }
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:89:15: warning: main actor-isolated instance method 'refreshAnimationBegin(view:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 29 | import UIKit
 30 |
 31 | open class ESRefreshHeaderAnimator: UIView, ESRefreshProtocol, ESRefreshAnimatorProtocol, ESRefreshImpactProtocol {
    |                                             `- note: add '@preconcurrency' to the 'ESRefreshProtocol' conformance to defer isolation checking to run time
 32 |     open var pullToRefreshDescription = NSLocalizedString("Pull to refresh", comment: "") {
 33 |         didSet {
    :
 87 |     }
 88 |
 89 |     open func refreshAnimationBegin(view: ESRefreshComponent) {
    |               |- warning: main actor-isolated instance method 'refreshAnimationBegin(view:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'refreshAnimationBegin(view:)' to make this instance method not isolated to the actor
 90 |         indicatorView.startAnimating()
 91 |         indicatorView.isHidden = false
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:49:19: note: mark the protocol requirement 'refreshAnimationBegin(view:)' 'async' to allow actor-isolated conformances
 47 |      You can refresh your animation logic here, it will need to start the animation each time a refresh
 48 |     */
 49 |     mutating func refreshAnimationBegin(view: ESRefreshComponent)
    |                   `- note: mark the protocol requirement 'refreshAnimationBegin(view:)' 'async' to allow actor-isolated conformances
 50 |
 51 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:97:15: warning: main actor-isolated instance method 'refreshAnimationEnd(view:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 95 |     }
 96 |
 97 |     open func refreshAnimationEnd(view: ESRefreshComponent) {
    |               |- warning: main actor-isolated instance method 'refreshAnimationEnd(view:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'refreshAnimationEnd(view:)' to make this instance method not isolated to the actor
 98 |         indicatorView.stopAnimating()
 99 |         indicatorView.isHidden = true
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:55:19: note: mark the protocol requirement 'refreshAnimationEnd(view:)' 'async' to allow actor-isolated conformances
 53 |      Here you can reset your refresh control UI, such as a Stop UIImageView animations or some opened Timer refresh, etc., it will be executed once each time the need to end the animation
 54 |      */
 55 |     mutating func refreshAnimationEnd(view: ESRefreshComponent)
    |                   `- note: mark the protocol requirement 'refreshAnimationEnd(view:)' 'async' to allow actor-isolated conformances
 56 |
 57 |     /**
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:105:15: warning: main actor-isolated instance method 'refresh(view:progressDidChange:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
103 |     }
104 |
105 |     open func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat) {
    |               |- warning: main actor-isolated instance method 'refresh(view:progressDidChange:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'refresh(view:progressDidChange:)' to make this instance method not isolated to the actor
106 |         // Do nothing
107 |
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:60:19: note: mark the protocol requirement 'refresh(view:progressDidChange:)' 'async' to allow actor-isolated conformances
 58 |      Pulling status callback , progress is the percentage of the current offset with trigger, and avoid doing too many tasks in this process so as not to affect the fluency.
 59 |      */
 60 |     mutating func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat)
    |                   `- note: mark the protocol requirement 'refresh(view:progressDidChange:)' 'async' to allow actor-isolated conformances
 61 |
 62 |     mutating func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState)
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:110:15: warning: main actor-isolated instance method 'refresh(view:stateDidChange:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
108 |     }
109 |
110 |     open func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState) {
    |               |- warning: main actor-isolated instance method 'refresh(view:stateDidChange:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'refresh(view:stateDidChange:)' to make this instance method not isolated to the actor
111 |         guard self.state != state else {
112 |             return
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:62:19: note: mark the protocol requirement 'refresh(view:stateDidChange:)' 'async' to allow actor-isolated conformances
 60 |     mutating func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat)
 61 |
 62 |     mutating func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState)
    |                   `- note: mark the protocol requirement 'refresh(view:stateDidChange:)' 'async' to allow actor-isolated conformances
 63 | }
 64 |
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:42:14: warning: main actor-isolated property 'view' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 29 | import UIKit
 30 |
 31 | open class ESRefreshHeaderAnimator: UIView, ESRefreshProtocol, ESRefreshAnimatorProtocol, ESRefreshImpactProtocol {
    |                                                                `- note: add '@preconcurrency' to the 'ESRefreshAnimatorProtocol' conformance to defer isolation checking to run time
 32 |     open var pullToRefreshDescription = NSLocalizedString("Pull to refresh", comment: "") {
 33 |         didSet {
    :
 40 |     open var loadingDescription = NSLocalizedString("Loading...", comment: "")
 41 |
 42 |     open var view: UIView { return self }
    |              `- warning: main actor-isolated property 'view' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 43 |     open var insets: UIEdgeInsets = UIEdgeInsets.zero
 44 |     open var trigger: CGFloat = 60.0
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:69:9: note: 'view' declared here
 67 |
 68 |     // The view that called when component refresh, returns a custom view or self if 'self' is the customized views.
 69 |     var view: UIView {get}
    |         `- note: 'view' declared here
 70 |
 71 |     // Customized inset.
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:43:14: warning: main actor-isolated property 'insets' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 41 |
 42 |     open var view: UIView { return self }
 43 |     open var insets: UIEdgeInsets = UIEdgeInsets.zero
    |              `- warning: main actor-isolated property 'insets' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 44 |     open var trigger: CGFloat = 60.0
 45 |     open var executeIncremental: CGFloat = 60.0
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:72:9: note: 'insets' declared here
 70 |
 71 |     // Customized inset.
 72 |     var insets: UIEdgeInsets {set get}
    |         `- note: 'insets' declared here
 73 |
 74 |     // Refresh event is executed threshold required y offset, set a value greater than 0.0, the default is 60.0
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:44:14: warning: main actor-isolated property 'trigger' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 42 |     open var view: UIView { return self }
 43 |     open var insets: UIEdgeInsets = UIEdgeInsets.zero
 44 |     open var trigger: CGFloat = 60.0
    |              `- warning: main actor-isolated property 'trigger' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 45 |     open var executeIncremental: CGFloat = 60.0
 46 |     open var state: ESRefreshViewState = .pullToRefresh
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:75:9: note: 'trigger' declared here
 73 |
 74 |     // Refresh event is executed threshold required y offset, set a value greater than 0.0, the default is 60.0
 75 |     var trigger: CGFloat {set get}
    |         `- note: 'trigger' declared here
 76 |
 77 |     // Offset y refresh event executed by this parameter you can customize the animation to perform when you refresh the view of reservations height
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:45:14: warning: main actor-isolated property 'executeIncremental' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 43 |     open var insets: UIEdgeInsets = UIEdgeInsets.zero
 44 |     open var trigger: CGFloat = 60.0
 45 |     open var executeIncremental: CGFloat = 60.0
    |              `- warning: main actor-isolated property 'executeIncremental' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 46 |     open var state: ESRefreshViewState = .pullToRefresh
 47 |
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:78:9: note: 'executeIncremental' declared here
 76 |
 77 |     // Offset y refresh event executed by this parameter you can customize the animation to perform when you refresh the view of reservations height
 78 |     var executeIncremental: CGFloat {set get}
    |         `- note: 'executeIncremental' declared here
 79 |
 80 |     // Current refresh state, default is .pullToRefresh
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:46:14: warning: main actor-isolated property 'state' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 44 |     open var trigger: CGFloat = 60.0
 45 |     open var executeIncremental: CGFloat = 60.0
 46 |     open var state: ESRefreshViewState = .pullToRefresh
    |              `- warning: main actor-isolated property 'state' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 47 |
 48 |     fileprivate let imageView: UIImageView = {
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:81:9: note: 'state' declared here
 79 |
 80 |     // Current refresh state, default is .pullToRefresh
 81 |     var state: ESRefreshViewState {set get}
    |         `- note: 'state' declared here
 82 |
 83 | }
/Users/admin/builder/spi-builder-workspace/Sources/ES.swift:12:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
10 |
11 |
12 | public protocol ESExtensionsProvider: class {
   |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
13 |     associatedtype CompatibleType
14 |     var es: CompatibleType { get }
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:30:16: warning: static property 'sharedManager' is not concurrency-safe because non-'Sendable' type 'ESRefreshDataManager' may have shared mutable state; this is an error in the Swift 6 language mode
 26 | import Foundation
 27 |
 28 | open class ESRefreshDataManager {
    |            `- note: class 'ESRefreshDataManager' does not conform to the 'Sendable' protocol
 29 |
 30 |     static let sharedManager = ESRefreshDataManager.init()
    |                |- warning: static property 'sharedManager' is not concurrency-safe because non-'Sendable' type 'ESRefreshDataManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'sharedManager' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 |     static let lastRefreshKey: String = "com.espulltorefresh.lastRefreshKey"
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:29:13: warning: var 'kESRefreshHeaderKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 27 | import UIKit
 28 |
 29 | private var kESRefreshHeaderKey: Void?
    |             |- warning: var 'kESRefreshHeaderKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'kESRefreshHeaderKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'kESRefreshHeaderKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 30 | private var kESRefreshFooterKey: Void?
 31 |
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:30:13: warning: var 'kESRefreshFooterKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 | private var kESRefreshHeaderKey: Void?
 30 | private var kESRefreshFooterKey: Void?
    |             |- warning: var 'kESRefreshFooterKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |             |- note: convert 'kESRefreshFooterKey' to a 'let' constant to make 'Sendable' shared state immutable
    |             |- note: annotate 'kESRefreshFooterKey' with '@MainActor' if property should only be accessed from the main actor
    |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 31 |
 32 | public extension UIScrollView {
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:91:24: warning: static property 'impacter' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 89 |  */
 90 | fileprivate class ESRefreshImpacter {
 91 |     static private var impacter: AnyObject? = {
    |                        |- warning: static property 'impacter' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'impacter' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'impacter' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 92 |         if #available(iOS 10.0, *) {
 93 |             if NSClassFromString("UIFeedbackGenerator") != nil {
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:91:24: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 89 |  */
 90 | fileprivate class ESRefreshImpacter {
 91 |     static private var impacter: AnyObject? = {
    |                        `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 92 |         if #available(iOS 10.0, *) {
 93 |             if NSClassFromString("UIFeedbackGenerator") != nil {
SwiftCompile normal arm64 Compiling\ ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshComponent.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:83:9: warning: call to main actor-isolated instance method 'removeObserver()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        removeObserver()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:181:22: note: calls to instance method 'removeObserver()' from outside of its actor context are implicitly asynchronous
    fileprivate func removeObserver() {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:175:124: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
            scrollView.addObserver(self, forKeyPath: ESRefreshComponent.offsetKeyPath, options: [.initial, .new], context: &ESRefreshComponent.context)
                                                                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:176:129: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
            scrollView.addObserver(self, forKeyPath: ESRefreshComponent.contentSizeKeyPath, options: [.initial, .new], context: &ESRefreshComponent.context)
                                                                                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:183:100: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
            scrollView.removeObserver(self, forKeyPath: ESRefreshComponent.offsetKeyPath, context: &ESRefreshComponent.context)
                                                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:184:105: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
            scrollView.removeObserver(self, forKeyPath: ESRefreshComponent.contentSizeKeyPath, context: &ESRefreshComponent.context)
                                                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:190:23: warning: forming 'UnsafeMutableRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        if context == &ESRefreshComponent.context {
                      ^
SwiftCompile normal arm64 Compiling\ ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ES.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ES.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ES.swift:12:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
public protocol ESExtensionsProvider: class {
                                      ^~~~~
                                      AnyObject
SwiftCompile normal arm64 Compiling\ ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshHeaderAnimator.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:89:15: warning: main actor-isolated instance method 'refreshAnimationBegin(view:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func refreshAnimationBegin(view: ESRefreshComponent) {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:89:15: note: add 'nonisolated' to 'refreshAnimationBegin(view:)' to make this instance method not isolated to the actor
    open func refreshAnimationBegin(view: ESRefreshComponent) {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:31:45: note: add '@preconcurrency' to the 'ESRefreshProtocol' conformance to defer isolation checking to run time
open class ESRefreshHeaderAnimator: UIView, ESRefreshProtocol, ESRefreshAnimatorProtocol, ESRefreshImpactProtocol {
                                            ^
                                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:49:19: note: mark the protocol requirement 'refreshAnimationBegin(view:)' 'async' to allow actor-isolated conformances
    mutating func refreshAnimationBegin(view: ESRefreshComponent)
                  ^
                                                                  async
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:97:15: warning: main actor-isolated instance method 'refreshAnimationEnd(view:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func refreshAnimationEnd(view: ESRefreshComponent) {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:97:15: note: add 'nonisolated' to 'refreshAnimationEnd(view:)' to make this instance method not isolated to the actor
    open func refreshAnimationEnd(view: ESRefreshComponent) {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:55:19: note: mark the protocol requirement 'refreshAnimationEnd(view:)' 'async' to allow actor-isolated conformances
    mutating func refreshAnimationEnd(view: ESRefreshComponent)
                  ^
                                                                async
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:105:15: warning: main actor-isolated instance method 'refresh(view:progressDidChange:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat) {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:105:15: note: add 'nonisolated' to 'refresh(view:progressDidChange:)' to make this instance method not isolated to the actor
    open func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat) {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:60:19: note: mark the protocol requirement 'refresh(view:progressDidChange:)' 'async' to allow actor-isolated conformances
    mutating func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat)
                  ^
                                                                                         async
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:110:15: warning: main actor-isolated instance method 'refresh(view:stateDidChange:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState) {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:110:15: note: add 'nonisolated' to 'refresh(view:stateDidChange:)' to make this instance method not isolated to the actor
    open func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState) {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:62:19: note: mark the protocol requirement 'refresh(view:stateDidChange:)' 'async' to allow actor-isolated conformances
    mutating func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState)
                  ^
                                                                                              async
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:42:14: warning: main actor-isolated property 'view' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var view: UIView { return self }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:31:64: note: add '@preconcurrency' to the 'ESRefreshAnimatorProtocol' conformance to defer isolation checking to run time
open class ESRefreshHeaderAnimator: UIView, ESRefreshProtocol, ESRefreshAnimatorProtocol, ESRefreshImpactProtocol {
                                                               ^
                                                               @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:69:9: note: 'view' declared here
    var view: UIView {get}
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:43:14: warning: main actor-isolated property 'insets' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var insets: UIEdgeInsets = UIEdgeInsets.zero
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:72:9: note: 'insets' declared here
    var insets: UIEdgeInsets {set get}
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:44:14: warning: main actor-isolated property 'trigger' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var trigger: CGFloat = 60.0
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:75:9: note: 'trigger' declared here
    var trigger: CGFloat {set get}
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:45:14: warning: main actor-isolated property 'executeIncremental' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var executeIncremental: CGFloat = 60.0
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:78:9: note: 'executeIncremental' declared here
    var executeIncremental: CGFloat {set get}
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift:46:14: warning: main actor-isolated property 'state' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var state: ESRefreshViewState = .pullToRefresh
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:81:9: note: 'state' declared here
    var state: ESRefreshViewState {set get}
        ^
SwiftCompile normal arm64 Compiling\ ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh+Manager.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:30:16: warning: static property 'sharedManager' is not concurrency-safe because non-'Sendable' type 'ESRefreshDataManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sharedManager = ESRefreshDataManager.init()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:28:12: note: class 'ESRefreshDataManager' does not conform to the 'Sendable' protocol
open class ESRefreshDataManager {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:30:16: note: annotate 'sharedManager' with '@MainActor' if property should only be accessed from the main actor
    static let sharedManager = ESRefreshDataManager.init()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:30:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sharedManager = ESRefreshDataManager.init()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:84:26: warning: capture of 'self' with non-sendable type 'ESRefreshDataManager?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
            let result = self?.isExpired(forKey: key) ?? true
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:28:12: note: class 'ESRefreshDataManager' does not conform to the 'Sendable' protocol
open class ESRefreshDataManager {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:86:17: warning: capture of 'block' with non-sendable type '((Bool) -> ())?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                block?(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:86:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                block?(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:86:17: warning: capture of 'block' with non-sendable type '((Bool) -> ())?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
                block?(result)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:86:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                block?(result)
                ^
SwiftCompile normal arm64 Compiling\ ESRefreshProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshProtocol.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:91:24: warning: static property 'impacter' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    static private var impacter: AnyObject? = {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:91:24: note: convert 'impacter' to a 'let' constant to make 'Sendable' shared state immutable
    static private var impacter: AnyObject? = {
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:91:24: note: annotate 'impacter' with '@MainActor' if property should only be accessed from the main actor
    static private var impacter: AnyObject? = {
                       ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:91:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static private var impacter: AnyObject? = {
                       ^
           nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:91:24: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    static private var impacter: AnyObject? = {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:105:26: warning: call to main actor-isolated instance method 'impactOccurred()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                impacter.impactOccurred()
                         ^
UIKit.UIImpactFeedbackGenerator:4:26: note: calls to instance method 'impactOccurred()' from outside of its actor context are implicitly asynchronous
    @MainActor open func impactOccurred()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:102:24: note: add '@MainActor' to make static method 'impact()' part of global actor 'MainActor'
    static public func impact() -> Void {
                       ^
           @MainActor
SwiftCompile normal arm64 Compiling\ ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:29:13: warning: var 'kESRefreshHeaderKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
private var kESRefreshHeaderKey: Void?
            ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:29:13: note: convert 'kESRefreshHeaderKey' to a 'let' constant to make 'Sendable' shared state immutable
private var kESRefreshHeaderKey: Void?
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:29:13: note: annotate 'kESRefreshHeaderKey' with '@MainActor' if property should only be accessed from the main actor
private var kESRefreshHeaderKey: Void?
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:29:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var kESRefreshHeaderKey: Void?
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:30:13: warning: var 'kESRefreshFooterKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
private var kESRefreshFooterKey: Void?
            ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:30:13: note: convert 'kESRefreshFooterKey' to a 'let' constant to make 'Sendable' shared state immutable
private var kESRefreshFooterKey: Void?
        ~~~ ^
        let
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:30:13: note: annotate 'kESRefreshFooterKey' with '@MainActor' if property should only be accessed from the main actor
private var kESRefreshFooterKey: Void?
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:30:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private var kESRefreshFooterKey: Void?
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:52:22: warning: call to main actor-isolated initializer 'init(frame:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let header = ESRefreshHeaderView(frame: CGRect.zero, handler: handler)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:205:24: note: calls to initializer 'init(frame:handler:)' from outside of its actor context are implicitly asynchronous
    public convenience init(frame: CGRect, handler: @escaping ESRefreshHandler) {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:50:10: note: add '@MainActor' to make instance method 'addPullToRefresh(handler:)' part of global actor 'MainActor'
    func addPullToRefresh(handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:53:30: warning: main actor-isolated property 'animator' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        let headerH = header.animator.executeIncremental
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:39:14: note: property declared here
    open var animator: (ESRefreshProtocol & ESRefreshAnimatorProtocol)!
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:50:10: note: add '@MainActor' to make instance method 'addPullToRefresh(handler:)' part of global actor 'MainActor'
    func addPullToRefresh(handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:54:16: warning: main actor-isolated property 'frame' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        header.frame = CGRect.init(x: 0.0, y: -headerH /* - contentInset.top */, width: self.base.bounds.size.width, height: headerH)
               ^
UIKit.UIView:2:25: note: mutation of this property is only permitted within the actor
    @MainActor open var frame: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:50:10: note: add '@MainActor' to make instance method 'addPullToRefresh(handler:)' part of global actor 'MainActor'
    func addPullToRefresh(handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:54:99: warning: main actor-isolated property 'bounds' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        header.frame = CGRect.init(x: 0.0, y: -headerH /* - contentInset.top */, width: self.base.bounds.size.width, height: headerH)
                                                                                                  ^
UIKit.UIView:3:14: note: property declared here
    open var bounds: CGRect { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:50:10: note: add '@MainActor' to make instance method 'addPullToRefresh(handler:)' part of global actor 'MainActor'
    func addPullToRefresh(handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:55:19: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.addSubview(header)
                  ^
UIKit.UIView:12:26: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
    @MainActor open func addSubview(_ view: UIView)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:50:10: note: add '@MainActor' to make instance method 'addPullToRefresh(handler:)' part of global actor 'MainActor'
    func addPullToRefresh(handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:56:19: warning: main actor-isolated property 'header' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.header = header
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:35:9: note: mutation of this property is only permitted within the actor
    var header: ESRefreshHeaderView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:50:10: note: add '@MainActor' to make instance method 'addPullToRefresh(handler:)' part of global actor 'MainActor'
    func addPullToRefresh(handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:63:22: warning: call to main actor-isolated initializer 'init(frame:handler:animator:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let header = ESRefreshHeaderView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:72:24: note: calls to initializer 'init(frame:handler:animator:)' from outside of its actor context are implicitly asynchronous
    public convenience init(frame: CGRect, handler: @escaping ESRefreshHandler, animator: ESRefreshProtocol & ESRefreshAnimatorProtocol) {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:61:10: note: add '@MainActor' to make instance method 'addPullToRefresh(animator:handler:)' part of global actor 'MainActor'
    func addPullToRefresh(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:65:16: warning: main actor-isolated property 'frame' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        header.frame = CGRect.init(x: 0.0, y: -headerH /* - contentInset.top */, width: self.base.bounds.size.width, height: headerH)
               ^
UIKit.UIView:2:25: note: mutation of this property is only permitted within the actor
    @MainActor open var frame: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:61:10: note: add '@MainActor' to make instance method 'addPullToRefresh(animator:handler:)' part of global actor 'MainActor'
    func addPullToRefresh(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:65:99: warning: main actor-isolated property 'bounds' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        header.frame = CGRect.init(x: 0.0, y: -headerH /* - contentInset.top */, width: self.base.bounds.size.width, height: headerH)
                                                                                                  ^
UIKit.UIView:3:14: note: property declared here
    open var bounds: CGRect { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:61:10: note: add '@MainActor' to make instance method 'addPullToRefresh(animator:handler:)' part of global actor 'MainActor'
    func addPullToRefresh(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:66:19: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.addSubview(header)
                  ^
UIKit.UIView:12:26: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
    @MainActor open func addSubview(_ view: UIView)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:61:10: note: add '@MainActor' to make instance method 'addPullToRefresh(animator:handler:)' part of global actor 'MainActor'
    func addPullToRefresh(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:67:19: warning: main actor-isolated property 'header' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.header = header
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:35:9: note: mutation of this property is only permitted within the actor
    var header: ESRefreshHeaderView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:61:10: note: add '@MainActor' to make instance method 'addPullToRefresh(animator:handler:)' part of global actor 'MainActor'
    func addPullToRefresh(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshHeaderView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:75:22: warning: call to main actor-isolated initializer 'init(frame:handler:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let footer = ESRefreshFooterView(frame: CGRect.zero, handler: handler)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:366:24: note: calls to initializer 'init(frame:handler:)' from outside of its actor context are implicitly asynchronous
    public convenience init(frame: CGRect, handler: @escaping ESRefreshHandler) {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:73:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:76:30: warning: main actor-isolated property 'animator' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        let footerH = footer.animator.executeIncremental
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:39:14: note: property declared here
    open var animator: (ESRefreshProtocol & ESRefreshAnimatorProtocol)!
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:73:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:77:16: warning: main actor-isolated property 'frame' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        footer.frame = CGRect.init(x: 0.0, y: self.base.contentSize.height + self.base.contentInset.bottom, width: self.base.bounds.size.width, height: footerH)
               ^
UIKit.UIView:2:25: note: mutation of this property is only permitted within the actor
    @MainActor open var frame: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:73:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:77:57: warning: main actor-isolated property 'contentSize' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        footer.frame = CGRect.init(x: 0.0, y: self.base.contentSize.height + self.base.contentInset.bottom, width: self.base.bounds.size.width, height: footerH)
                                                        ^
UIKit.UIScrollView:4:25: note: property declared here
    @MainActor open var contentSize: CGSize { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:73:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:77:88: warning: main actor-isolated property 'contentInset' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        footer.frame = CGRect.init(x: 0.0, y: self.base.contentSize.height + self.base.contentInset.bottom, width: self.base.bounds.size.width, height: footerH)
                                                                                       ^
UIKit.UIScrollView:5:25: note: property declared here
    @MainActor open var contentInset: UIEdgeInsets { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:73:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:77:126: warning: main actor-isolated property 'bounds' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        footer.frame = CGRect.init(x: 0.0, y: self.base.contentSize.height + self.base.contentInset.bottom, width: self.base.bounds.size.width, height: footerH)
                                                                                                                             ^
UIKit.UIView:3:14: note: property declared here
    open var bounds: CGRect { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:73:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:78:19: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.addSubview(footer)
                  ^
UIKit.UIView:12:26: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
    @MainActor open func addSubview(_ view: UIView)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:73:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:79:19: warning: main actor-isolated property 'footer' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer = footer
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: mutation of this property is only permitted within the actor
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:73:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:86:22: warning: call to main actor-isolated initializer 'init(frame:handler:animator:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let footer = ESRefreshFooterView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:72:24: note: calls to initializer 'init(frame:handler:animator:)' from outside of its actor context are implicitly asynchronous
    public convenience init(frame: CGRect, handler: @escaping ESRefreshHandler, animator: ESRefreshProtocol & ESRefreshAnimatorProtocol) {
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:84:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(animator:handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:87:30: warning: main actor-isolated property 'animator' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        let footerH = footer.animator.executeIncremental
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:39:14: note: property declared here
    open var animator: (ESRefreshProtocol & ESRefreshAnimatorProtocol)!
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:84:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(animator:handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:88:16: warning: main actor-isolated property 'frame' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        footer.frame = CGRect.init(x: 0.0, y: self.base.contentSize.height + self.base.contentInset.bottom, width: self.base.bounds.size.width, height: footerH)
               ^
UIKit.UIView:2:25: note: mutation of this property is only permitted within the actor
    @MainActor open var frame: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:84:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(animator:handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:88:57: warning: main actor-isolated property 'contentSize' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        footer.frame = CGRect.init(x: 0.0, y: self.base.contentSize.height + self.base.contentInset.bottom, width: self.base.bounds.size.width, height: footerH)
                                                        ^
UIKit.UIScrollView:4:25: note: property declared here
    @MainActor open var contentSize: CGSize { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:84:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(animator:handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:88:88: warning: main actor-isolated property 'contentInset' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        footer.frame = CGRect.init(x: 0.0, y: self.base.contentSize.height + self.base.contentInset.bottom, width: self.base.bounds.size.width, height: footerH)
                                                                                       ^
UIKit.UIScrollView:5:25: note: property declared here
    @MainActor open var contentInset: UIEdgeInsets { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:84:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(animator:handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:88:126: warning: main actor-isolated property 'bounds' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        footer.frame = CGRect.init(x: 0.0, y: self.base.contentSize.height + self.base.contentInset.bottom, width: self.base.bounds.size.width, height: footerH)
                                                                                                                             ^
UIKit.UIView:3:14: note: property declared here
    open var bounds: CGRect { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:84:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(animator:handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:89:19: warning: main actor-isolated property 'footer' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer = footer
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: mutation of this property is only permitted within the actor
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:84:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(animator:handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:90:19: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.addSubview(footer)
                  ^
UIKit.UIView:12:26: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
    @MainActor open func addSubview(_ view: UIView)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:84:10: note: add '@MainActor' to make instance method 'addInfiniteScrolling(animator:handler:)' part of global actor 'MainActor'
    func addInfiniteScrolling(animator: ESRefreshProtocol & ESRefreshAnimatorProtocol, handler: @escaping ESRefreshHandler) -> ESRefreshFooterView {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:96:27: warning: call to main actor-isolated instance method 'stopRefreshing()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.header?.stopRefreshing()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:131:23: note: calls to instance method 'stopRefreshing()' from outside of its actor context are implicitly asynchronous
    public final func stopRefreshing() -> Void {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:95:10: note: add '@MainActor' to make instance method 'removeRefreshHeader()' part of global actor 'MainActor'
    func removeRefreshHeader() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:96:19: warning: main actor-isolated property 'header' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.header?.stopRefreshing()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:35:9: note: property declared here
    var header: ESRefreshHeaderView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:95:10: note: add '@MainActor' to make instance method 'removeRefreshHeader()' part of global actor 'MainActor'
    func removeRefreshHeader() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:97:27: warning: call to main actor-isolated instance method 'removeFromSuperview()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.header?.removeFromSuperview()
                          ^
UIKit.UIView:5:15: note: calls to instance method 'removeFromSuperview()' from outside of its actor context are implicitly asynchronous
    open func removeFromSuperview()
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:95:10: note: add '@MainActor' to make instance method 'removeRefreshHeader()' part of global actor 'MainActor'
    func removeRefreshHeader() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:97:19: warning: main actor-isolated property 'header' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.header?.removeFromSuperview()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:35:9: note: property declared here
    var header: ESRefreshHeaderView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:95:10: note: add '@MainActor' to make instance method 'removeRefreshHeader()' part of global actor 'MainActor'
    func removeRefreshHeader() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:98:19: warning: main actor-isolated property 'header' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.header = nil
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:35:9: note: mutation of this property is only permitted within the actor
    var header: ESRefreshHeaderView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:95:10: note: add '@MainActor' to make instance method 'removeRefreshHeader()' part of global actor 'MainActor'
    func removeRefreshHeader() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:102:27: warning: call to main actor-isolated instance method 'stopRefreshing()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.footer?.stopRefreshing()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:131:23: note: calls to instance method 'stopRefreshing()' from outside of its actor context are implicitly asynchronous
    public final func stopRefreshing() -> Void {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:101:10: note: add '@MainActor' to make instance method 'removeRefreshFooter()' part of global actor 'MainActor'
    func removeRefreshFooter() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:102:19: warning: main actor-isolated property 'footer' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.stopRefreshing()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: property declared here
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:101:10: note: add '@MainActor' to make instance method 'removeRefreshFooter()' part of global actor 'MainActor'
    func removeRefreshFooter() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:103:27: warning: call to main actor-isolated instance method 'removeFromSuperview()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.footer?.removeFromSuperview()
                          ^
UIKit.UIView:5:15: note: calls to instance method 'removeFromSuperview()' from outside of its actor context are implicitly asynchronous
    open func removeFromSuperview()
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:101:10: note: add '@MainActor' to make instance method 'removeRefreshFooter()' part of global actor 'MainActor'
    func removeRefreshFooter() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:103:19: warning: main actor-isolated property 'footer' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.removeFromSuperview()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: property declared here
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:101:10: note: add '@MainActor' to make instance method 'removeRefreshFooter()' part of global actor 'MainActor'
    func removeRefreshFooter() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:104:19: warning: main actor-isolated property 'footer' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer = nil
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: mutation of this property is only permitted within the actor
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:101:10: note: add '@MainActor' to make instance method 'removeRefreshFooter()' part of global actor 'MainActor'
    func removeRefreshFooter() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:116:22: warning: main actor-isolated property 'expired' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        if self.base.expired == true {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:160:9: note: property declared here
    var expired: Bool {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:115:10: note: add '@MainActor' to make instance method 'autoPullToRefresh()' part of global actor 'MainActor'
    func autoPullToRefresh() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:125:27: warning: call to main actor-isolated instance method 'stopRefreshing()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.header?.stopRefreshing()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:131:23: note: calls to instance method 'stopRefreshing()' from outside of its actor context are implicitly asynchronous
    public final func stopRefreshing() -> Void {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:124:10: note: add '@MainActor' to make instance method 'stopPullToRefresh(ignoreDate:ignoreFooter:)' part of global actor 'MainActor'
    func stopPullToRefresh(ignoreDate: Bool = false, ignoreFooter: Bool = false) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:125:19: warning: main actor-isolated property 'header' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.header?.stopRefreshing()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:35:9: note: property declared here
    var header: ESRefreshHeaderView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:124:10: note: add '@MainActor' to make instance method 'stopPullToRefresh(ignoreDate:ignoreFooter:)' part of global actor 'MainActor'
    func stopPullToRefresh(ignoreDate: Bool = false, ignoreFooter: Bool = false) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:127:44: warning: main actor-isolated property 'refreshIdentifier' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            if let key = self.base.header?.refreshIdentifier {
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:203:14: note: property declared here
    open var refreshIdentifier: String?
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:124:10: note: add '@MainActor' to make instance method 'stopPullToRefresh(ignoreDate:ignoreFooter:)' part of global actor 'MainActor'
    func stopPullToRefresh(ignoreDate: Bool = false, ignoreFooter: Bool = false) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:127:36: warning: main actor-isolated property 'header' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            if let key = self.base.header?.refreshIdentifier {
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:35:9: note: property declared here
    var header: ESRefreshHeaderView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:124:10: note: add '@MainActor' to make instance method 'stopPullToRefresh(ignoreDate:ignoreFooter:)' part of global actor 'MainActor'
    func stopPullToRefresh(ignoreDate: Bool = false, ignoreFooter: Bool = false) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:30:16: warning: static property 'sharedManager' is not concurrency-safe because non-'Sendable' type 'ESRefreshDataManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let sharedManager = ESRefreshDataManager.init()
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:28:12: note: class 'ESRefreshDataManager' does not conform to the 'Sendable' protocol
open class ESRefreshDataManager {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:30:16: note: annotate 'sharedManager' with '@MainActor' if property should only be accessed from the main actor
    static let sharedManager = ESRefreshDataManager.init()
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift:30:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let sharedManager = ESRefreshDataManager.init()
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:130:31: warning: call to main actor-isolated instance method 'resetNoMoreData()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            self.base.footer?.resetNoMoreData()
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:491:15: note: calls to instance method 'resetNoMoreData()' from outside of its actor context are implicitly asynchronous
    open func resetNoMoreData() {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:124:10: note: add '@MainActor' to make instance method 'stopPullToRefresh(ignoreDate:ignoreFooter:)' part of global actor 'MainActor'
    func stopPullToRefresh(ignoreDate: Bool = false, ignoreFooter: Bool = false) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:130:23: warning: main actor-isolated property 'footer' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            self.base.footer?.resetNoMoreData()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: property declared here
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:124:10: note: add '@MainActor' to make instance method 'stopPullToRefresh(ignoreDate:ignoreFooter:)' part of global actor 'MainActor'
    func stopPullToRefresh(ignoreDate: Bool = false, ignoreFooter: Bool = false) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:132:27: warning: main actor-isolated property 'isHidden' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.isHidden = ignoreFooter
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:350:23: note: mutation of this property is only permitted within the actor
    open override var isHidden: Bool {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:124:10: note: add '@MainActor' to make instance method 'stopPullToRefresh(ignoreDate:ignoreFooter:)' part of global actor 'MainActor'
    func stopPullToRefresh(ignoreDate: Bool = false, ignoreFooter: Bool = false) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:132:19: warning: main actor-isolated property 'footer' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.isHidden = ignoreFooter
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: property declared here
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:124:10: note: add '@MainActor' to make instance method 'stopPullToRefresh(ignoreDate:ignoreFooter:)' part of global actor 'MainActor'
    func stopPullToRefresh(ignoreDate: Bool = false, ignoreFooter: Bool = false) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:137:27: warning: call to main actor-isolated instance method 'stopRefreshing()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.footer?.stopRefreshing()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:131:23: note: calls to instance method 'stopRefreshing()' from outside of its actor context are implicitly asynchronous
    public final func stopRefreshing() -> Void {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:136:11: note: add '@MainActor' to make instance method 'noticeNoMoreData()' part of global actor 'MainActor'
    func  noticeNoMoreData() {
          ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:137:19: warning: main actor-isolated property 'footer' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.stopRefreshing()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: property declared here
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:136:11: note: add '@MainActor' to make instance method 'noticeNoMoreData()' part of global actor 'MainActor'
    func  noticeNoMoreData() {
          ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:138:27: warning: main actor-isolated property 'noMoreData' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.noMoreData = true
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:342:14: note: mutation of this property is only permitted within the actor
    open var noMoreData = false {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:136:11: note: add '@MainActor' to make instance method 'noticeNoMoreData()' part of global actor 'MainActor'
    func  noticeNoMoreData() {
          ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:138:19: warning: main actor-isolated property 'footer' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.noMoreData = true
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: property declared here
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:136:11: note: add '@MainActor' to make instance method 'noticeNoMoreData()' part of global actor 'MainActor'
    func  noticeNoMoreData() {
          ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:142:27: warning: main actor-isolated property 'noMoreData' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.noMoreData = false
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:342:14: note: mutation of this property is only permitted within the actor
    open var noMoreData = false {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:141:10: note: add '@MainActor' to make instance method 'resetNoMoreData()' part of global actor 'MainActor'
    func resetNoMoreData() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:142:19: warning: main actor-isolated property 'footer' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.noMoreData = false
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: property declared here
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:141:10: note: add '@MainActor' to make instance method 'resetNoMoreData()' part of global actor 'MainActor'
    func resetNoMoreData() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:146:27: warning: call to main actor-isolated instance method 'stopRefreshing()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.base.footer?.stopRefreshing()
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift:131:23: note: calls to instance method 'stopRefreshing()' from outside of its actor context are implicitly asynchronous
    public final func stopRefreshing() -> Void {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:145:10: note: add '@MainActor' to make instance method 'stopLoadingMore()' part of global actor 'MainActor'
    func stopLoadingMore() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:146:19: warning: main actor-isolated property 'footer' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.base.footer?.stopRefreshing()
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:41:9: note: property declared here
    var footer: ESRefreshFooterView? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:145:10: note: add '@MainActor' to make instance method 'stopLoadingMore()' part of global actor 'MainActor'
    func stopLoadingMore() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:52:22: warning: sending 'handler' risks causing data races; this is an error in the Swift 6 language mode
        let header = ESRefreshHeaderView(frame: CGRect.zero, handler: handler)
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:52:22: note: sending task-isolated 'handler' to main actor-isolated initializer 'init(frame:handler:)' risks causing data races between main actor-isolated and task-isolated uses
        let header = ESRefreshHeaderView(frame: CGRect.zero, handler: handler)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:63:22: warning: sending 'handler' risks causing data races; this is an error in the Swift 6 language mode
        let header = ESRefreshHeaderView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:63:22: note: sending task-isolated 'handler' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let header = ESRefreshHeaderView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:63:22: warning: sending 'animator' risks causing data races; this is an error in the Swift 6 language mode
        let header = ESRefreshHeaderView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:63:22: note: sending task-isolated 'animator' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let header = ESRefreshHeaderView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:75:22: warning: sending 'handler' risks causing data races; this is an error in the Swift 6 language mode
        let footer = ESRefreshFooterView(frame: CGRect.zero, handler: handler)
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:75:22: note: sending task-isolated 'handler' to main actor-isolated initializer 'init(frame:handler:)' risks causing data races between main actor-isolated and task-isolated uses
        let footer = ESRefreshFooterView(frame: CGRect.zero, handler: handler)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:86:22: warning: sending 'handler' risks causing data races; this is an error in the Swift 6 language mode
        let footer = ESRefreshFooterView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:86:22: note: sending task-isolated 'handler' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let footer = ESRefreshFooterView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:86:22: warning: sending 'animator' risks causing data races; this is an error in the Swift 6 language mode
        let footer = ESRefreshFooterView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift:86:22: note: sending task-isolated 'animator' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        let footer = ESRefreshFooterView(frame: CGRect.zero, handler: handler, animator: animator)
                     ^
SwiftCompile normal arm64 Compiling\ ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshHeaderAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ES.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh+Manager.swift /Users/admin/builder/spi-builder-workspace/Sources/ESPullToRefresh.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshAnimator.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name ESPullToRefresh -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.o -index-unit-output-path /ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESRefreshFooterAnimator.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:66:15: warning: main actor-isolated instance method 'refreshAnimationBegin(view:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func refreshAnimationBegin(view: ESRefreshComponent) {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:66:15: note: add 'nonisolated' to 'refreshAnimationBegin(view:)' to make this instance method not isolated to the actor
    open func refreshAnimationBegin(view: ESRefreshComponent) {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:28:45: note: add '@preconcurrency' to the 'ESRefreshProtocol' conformance to defer isolation checking to run time
open class ESRefreshFooterAnimator: UIView, ESRefreshProtocol, ESRefreshAnimatorProtocol {
                                            ^
                                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:49:19: note: mark the protocol requirement 'refreshAnimationBegin(view:)' 'async' to allow actor-isolated conformances
    mutating func refreshAnimationBegin(view: ESRefreshComponent)
                  ^
                                                                  async
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:72:15: warning: main actor-isolated instance method 'refreshAnimationEnd(view:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func refreshAnimationEnd(view: ESRefreshComponent) {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:72:15: note: add 'nonisolated' to 'refreshAnimationEnd(view:)' to make this instance method not isolated to the actor
    open func refreshAnimationEnd(view: ESRefreshComponent) {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:55:19: note: mark the protocol requirement 'refreshAnimationEnd(view:)' 'async' to allow actor-isolated conformances
    mutating func refreshAnimationEnd(view: ESRefreshComponent)
                  ^
                                                                async
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:78:15: warning: main actor-isolated instance method 'refresh(view:progressDidChange:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat) {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:78:15: note: add 'nonisolated' to 'refresh(view:progressDidChange:)' to make this instance method not isolated to the actor
    open func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat) {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:60:19: note: mark the protocol requirement 'refresh(view:progressDidChange:)' 'async' to allow actor-isolated conformances
    mutating func refresh(view: ESRefreshComponent, progressDidChange progress: CGFloat)
                  ^
                                                                                         async
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:82:15: warning: main actor-isolated instance method 'refresh(view:stateDidChange:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState) {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:82:15: note: add 'nonisolated' to 'refresh(view:stateDidChange:)' to make this instance method not isolated to the actor
    open func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState) {
              ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:62:19: note: mark the protocol requirement 'refresh(view:stateDidChange:)' 'async' to allow actor-isolated conformances
    mutating func refresh(view: ESRefreshComponent, stateDidChange state: ESRefreshViewState)
                  ^
                                                                                              async
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:34:14: warning: main actor-isolated property 'view' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var view: UIView { return self }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:28:64: note: add '@preconcurrency' to the 'ESRefreshAnimatorProtocol' conformance to defer isolation checking to run time
open class ESRefreshFooterAnimator: UIView, ESRefreshProtocol, ESRefreshAnimatorProtocol {
                                                               ^
                                                               @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:69:9: note: 'view' declared here
    var view: UIView {get}
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:36:14: warning: main actor-isolated property 'insets' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var insets: UIEdgeInsets = UIEdgeInsets.zero
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:72:9: note: 'insets' declared here
    var insets: UIEdgeInsets {set get}
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:37:14: warning: main actor-isolated property 'trigger' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var trigger: CGFloat = 42.0
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:75:9: note: 'trigger' declared here
    var trigger: CGFloat {set get}
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:38:14: warning: main actor-isolated property 'executeIncremental' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var executeIncremental: CGFloat = 42.0
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:78:9: note: 'executeIncremental' declared here
    var executeIncremental: CGFloat {set get}
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Animator/ESRefreshFooterAnimator.swift:39:14: warning: main actor-isolated property 'state' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    open var state: ESRefreshViewState = .pullToRefresh
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ESRefreshProtocol.swift:81:9: note: 'state' declared here
    var state: ESRefreshViewState {set get}
        ^
SwiftDriverJobDiscovery normal arm64 Emitting module for ESPullToRefresh (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
SwiftDriver\ Compilation\ Requirements ESPullToRefresh normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name ESPullToRefresh -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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 -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-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh-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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ESPullToRefresh-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh-Swift.h (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ESPullToRefresh-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftmodule (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftdoc (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.abi.json (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftsourceinfo (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling ESPullToRefresh+Manager.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
SwiftDriverJobDiscovery normal arm64 Compiling ES.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
SwiftDriverJobDiscovery normal arm64 Compiling ESRefreshAnimator.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
SwiftDriverJobDiscovery normal arm64 Compiling ESRefreshProtocol.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
SwiftDriverJobDiscovery normal arm64 Compiling ESRefreshFooterAnimator.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
SwiftDriverJobDiscovery normal arm64 Compiling ESPullToRefresh.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
SwiftDriverJobDiscovery normal arm64 Compiling ESRefreshComponent.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
SwiftDriverJobDiscovery normal arm64 Compiling ESRefreshHeaderAnimator.swift (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
SwiftDriver\ Compilation ESPullToRefresh normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name ESPullToRefresh -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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 -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-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh-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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.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/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.o normal (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.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 -L/Applications/Xcode-15.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-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ESPullToRefresh.build/Debug-iphoneos/ESPullToRefresh.build/Objects-normal/arm64/ESPullToRefresh_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.o (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ESPullToRefresh.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'ESPullToRefresh' from project 'ESPullToRefresh')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ESPullToRefresh",
  "name" : "ESPullToRefresh",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "ESPullToRefresh",
      "targets" : [
        "ESPullToRefresh"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ESPullToRefresh",
      "module_type" : "SwiftTarget",
      "name" : "ESPullToRefresh",
      "path" : "Sources",
      "product_memberships" : [
        "ESPullToRefresh"
      ],
      "sources" : [
        "Animator/ESRefreshFooterAnimator.swift",
        "Animator/ESRefreshHeaderAnimator.swift",
        "ES.swift",
        "ESPullToRefresh+Manager.swift",
        "ESPullToRefresh.swift",
        "ESRefreshAnimator.swift",
        "ESRefreshComponent.swift",
        "ESRefreshProtocol.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.