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 Anima, reference main (6ac7f1), with Swift 6.1 for macOS (SPM) on 28 Apr 2025 15:53:59 UTC.

Swift 6 data race errors: 38

Build Command

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

Build Log

 49 |         if let removeSuperview = removeSuperview, superview === removeSuperview {
 50 |             removeFromSuperview()
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatablePropertyProvider/PropertyAnimator.swift:288:39: warning: main actor-isolated property 'optionalLayer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
280 |     }
281 |
282 |     func animation(for keyPath: String, checkLayer: Bool = false) -> BaseAnimation? {
    |          `- note: add '@MainActor' to make instance method 'animation(for:checkLayer:)' part of global actor 'MainActor'
283 |         lastAccessedProperty = keyPath
284 |         if let animation = animations[lastAccessedProperty] {
    :
286 |         }
287 |         guard checkLayer else { return nil }
288 |         return (object as? NSUIView)?.optionalLayer?.animator.animation(for: keyPath)
    |                                       `- warning: main actor-isolated property 'optionalLayer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
289 |     }
290 |
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Views/NSUIView+.swift:15:9: note: property declared here
 13 |
 14 | extension NSUIView {
 15 |     var optionalLayer: CALayer? {
    |         `- note: property declared here
 16 |         #if os(macOS)
 17 |         wantsLayer = true
[56/72] Compiling Anima CubicFunction.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatablePropertyProvider/PropertyAnimator.swift:239:39: warning: call to main actor-isolated instance method 'removeFromSuperviewIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
237 |                 if let layer = self?.object as? CALayer {
238 |                     layer.removeFromSuperlayerIfNeeded()
239 |                     layer.parentView?.removeFromSuperviewIfNeeded()
    |                                       `- warning: call to main actor-isolated instance method 'removeFromSuperviewIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
240 |                 }
241 |                 #endif
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Views/NSUIView+.swift:48:10: note: calls to instance method 'removeFromSuperviewIfNeeded()' from outside of its actor context are implicitly asynchronous
 46 |     }
 47 |
 48 |     func removeFromSuperviewIfNeeded() {
    |          |- note: calls to instance method 'removeFromSuperviewIfNeeded()' from outside of its actor context are implicitly asynchronous
    |          `- note: main actor isolation inferred from inheritance from class 'NSResponder'
 49 |         if let removeSuperview = removeSuperview, superview === removeSuperview {
 50 |             removeFromSuperview()
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatablePropertyProvider/PropertyAnimator.swift:288:39: warning: main actor-isolated property 'optionalLayer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
280 |     }
281 |
282 |     func animation(for keyPath: String, checkLayer: Bool = false) -> BaseAnimation? {
    |          `- note: add '@MainActor' to make instance method 'animation(for:checkLayer:)' part of global actor 'MainActor'
283 |         lastAccessedProperty = keyPath
284 |         if let animation = animations[lastAccessedProperty] {
    :
286 |         }
287 |         guard checkLayer else { return nil }
288 |         return (object as? NSUIView)?.optionalLayer?.animator.animation(for: keyPath)
    |                                       `- warning: main actor-isolated property 'optionalLayer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
289 |     }
290 |
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Views/NSUIView+.swift:15:9: note: property declared here
 13 |
 14 | extension NSUIView {
 15 |     var optionalLayer: CALayer? {
    |         `- note: property declared here
 16 |         #if os(macOS)
 17 |         wantsLayer = true
[57/72] Compiling Anima DecayAnimation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatablePropertyProvider/PropertyAnimator.swift:239:39: warning: call to main actor-isolated instance method 'removeFromSuperviewIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
237 |                 if let layer = self?.object as? CALayer {
238 |                     layer.removeFromSuperlayerIfNeeded()
239 |                     layer.parentView?.removeFromSuperviewIfNeeded()
    |                                       `- warning: call to main actor-isolated instance method 'removeFromSuperviewIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
240 |                 }
241 |                 #endif
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Views/NSUIView+.swift:48:10: note: calls to instance method 'removeFromSuperviewIfNeeded()' from outside of its actor context are implicitly asynchronous
 46 |     }
 47 |
 48 |     func removeFromSuperviewIfNeeded() {
    |          |- note: calls to instance method 'removeFromSuperviewIfNeeded()' from outside of its actor context are implicitly asynchronous
    |          `- note: main actor isolation inferred from inheritance from class 'NSResponder'
 49 |         if let removeSuperview = removeSuperview, superview === removeSuperview {
 50 |             removeFromSuperview()
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatablePropertyProvider/PropertyAnimator.swift:288:39: warning: main actor-isolated property 'optionalLayer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
280 |     }
281 |
282 |     func animation(for keyPath: String, checkLayer: Bool = false) -> BaseAnimation? {
    |          `- note: add '@MainActor' to make instance method 'animation(for:checkLayer:)' part of global actor 'MainActor'
283 |         lastAccessedProperty = keyPath
284 |         if let animation = animations[lastAccessedProperty] {
    :
286 |         }
287 |         guard checkLayer else { return nil }
288 |         return (object as? NSUIView)?.optionalLayer?.animator.animation(for: keyPath)
    |                                       `- warning: main actor-isolated property 'optionalLayer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
289 |     }
290 |
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Views/NSUIView+.swift:15:9: note: property declared here
 13 |
 14 | extension NSUIView {
 15 |     var optionalLayer: CALayer? {
    |         `- note: property declared here
 16 |         #if os(macOS)
 17 |         wantsLayer = true
[58/72] Compiling Anima DecayFunction.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatablePropertyProvider/PropertyAnimator.swift:239:39: warning: call to main actor-isolated instance method 'removeFromSuperviewIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
237 |                 if let layer = self?.object as? CALayer {
238 |                     layer.removeFromSuperlayerIfNeeded()
239 |                     layer.parentView?.removeFromSuperviewIfNeeded()
    |                                       `- warning: call to main actor-isolated instance method 'removeFromSuperviewIfNeeded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
240 |                 }
241 |                 #endif
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Views/NSUIView+.swift:48:10: note: calls to instance method 'removeFromSuperviewIfNeeded()' from outside of its actor context are implicitly asynchronous
 46 |     }
 47 |
 48 |     func removeFromSuperviewIfNeeded() {
    |          |- note: calls to instance method 'removeFromSuperviewIfNeeded()' from outside of its actor context are implicitly asynchronous
    |          `- note: main actor isolation inferred from inheritance from class 'NSResponder'
 49 |         if let removeSuperview = removeSuperview, superview === removeSuperview {
 50 |             removeFromSuperview()
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatablePropertyProvider/PropertyAnimator.swift:288:39: warning: main actor-isolated property 'optionalLayer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
280 |     }
281 |
282 |     func animation(for keyPath: String, checkLayer: Bool = false) -> BaseAnimation? {
    |          `- note: add '@MainActor' to make instance method 'animation(for:checkLayer:)' part of global actor 'MainActor'
283 |         lastAccessedProperty = keyPath
284 |         if let animation = animations[lastAccessedProperty] {
    :
286 |         }
287 |         guard checkLayer else { return nil }
288 |         return (object as? NSUIView)?.optionalLayer?.animator.animation(for: keyPath)
    |                                       `- warning: main actor-isolated property 'optionalLayer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
289 |     }
290 |
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Views/NSUIView+.swift:15:9: note: property declared here
 13 |
 14 | extension NSUIView {
 15 |     var optionalLayer: CALayer? {
    |         `- note: property declared here
 16 |         #if os(macOS)
 17 |         wantsLayer = true
[59/72] Compiling Anima KeyValueObserver.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:27:17: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
25 |         return observe(keyPath, options: options) { _, change in
26 |             if let newValue = change.newValue, let oldValue = change.oldValue {
27 |                 handler(oldValue, newValue)
   |                 |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:48:21: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
46 |             if let newValue = change.newValue, let oldValue = change.oldValue {
47 |                 if uniqueValues == false {
48 |                     handler(oldValue, newValue)
   |                     |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
49 |                 } else if change.newValue != change.oldValue {
50 |                     handler(oldValue, newValue)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NotificationCenter+.swift:64:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
59 |      */
60 |     func observe(_ name: NSNotification.Name?, object: Any?,
61 |                  queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void)
   |                                                      `- note: parameter 'block' is implicitly non-sendable
62 |         -> NotificationToken
63 |     {
64 |         let token = addObserver(forName: name, object: object, queue: queue, using: block)
   |                                                                                     `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
65 |         return NotificationToken(notificationCenter: self, token: token, name: name)
66 |     }
[60/72] Compiling Anima NSObject+Observe.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:27:17: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
25 |         return observe(keyPath, options: options) { _, change in
26 |             if let newValue = change.newValue, let oldValue = change.oldValue {
27 |                 handler(oldValue, newValue)
   |                 |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:48:21: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
46 |             if let newValue = change.newValue, let oldValue = change.oldValue {
47 |                 if uniqueValues == false {
48 |                     handler(oldValue, newValue)
   |                     |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
49 |                 } else if change.newValue != change.oldValue {
50 |                     handler(oldValue, newValue)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NotificationCenter+.swift:64:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
59 |      */
60 |     func observe(_ name: NSNotification.Name?, object: Any?,
61 |                  queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void)
   |                                                      `- note: parameter 'block' is implicitly non-sendable
62 |         -> NotificationToken
63 |     {
64 |         let token = addObserver(forName: name, object: object, queue: queue, using: block)
   |                                                                                     `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
65 |         return NotificationToken(notificationCenter: self, token: token, name: name)
66 |     }
[61/72] Compiling Anima NotificationCenter+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:27:17: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
25 |         return observe(keyPath, options: options) { _, change in
26 |             if let newValue = change.newValue, let oldValue = change.oldValue {
27 |                 handler(oldValue, newValue)
   |                 |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:48:21: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
46 |             if let newValue = change.newValue, let oldValue = change.oldValue {
47 |                 if uniqueValues == false {
48 |                     handler(oldValue, newValue)
   |                     |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
49 |                 } else if change.newValue != change.oldValue {
50 |                     handler(oldValue, newValue)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NotificationCenter+.swift:64:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
59 |      */
60 |     func observe(_ name: NSNotification.Name?, object: Any?,
61 |                  queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void)
   |                                                      `- note: parameter 'block' is implicitly non-sendable
62 |         -> NotificationToken
63 |     {
64 |         let token = addObserver(forName: name, object: object, queue: queue, using: block)
   |                                                                                     `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
65 |         return NotificationToken(notificationCenter: self, token: token, name: name)
66 |     }
[62/72] Compiling Anima KeyPath+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:27:17: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
25 |         return observe(keyPath, options: options) { _, change in
26 |             if let newValue = change.newValue, let oldValue = change.oldValue {
27 |                 handler(oldValue, newValue)
   |                 |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:48:21: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
46 |             if let newValue = change.newValue, let oldValue = change.oldValue {
47 |                 if uniqueValues == false {
48 |                     handler(oldValue, newValue)
   |                     |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
49 |                 } else if change.newValue != change.oldValue {
50 |                     handler(oldValue, newValue)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NotificationCenter+.swift:64:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
59 |      */
60 |     func observe(_ name: NSNotification.Name?, object: Any?,
61 |                  queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void)
   |                                                      `- note: parameter 'block' is implicitly non-sendable
62 |         -> NotificationToken
63 |     {
64 |         let token = addObserver(forName: name, object: object, queue: queue, using: block)
   |                                                                                     `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
65 |         return NotificationToken(notificationCenter: self, token: token, name: name)
66 |     }
[63/72] Compiling Anima ApproximateEquatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:27:17: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
25 |         return observe(keyPath, options: options) { _, change in
26 |             if let newValue = change.newValue, let oldValue = change.oldValue {
27 |                 handler(oldValue, newValue)
   |                 |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:48:21: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
46 |             if let newValue = change.newValue, let oldValue = change.oldValue {
47 |                 if uniqueValues == false {
48 |                     handler(oldValue, newValue)
   |                     |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
49 |                 } else if change.newValue != change.oldValue {
50 |                     handler(oldValue, newValue)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NotificationCenter+.swift:64:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
59 |      */
60 |     func observe(_ name: NSNotification.Name?, object: Any?,
61 |                  queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void)
   |                                                      `- note: parameter 'block' is implicitly non-sendable
62 |         -> NotificationToken
63 |     {
64 |         let token = addObserver(forName: name, object: object, queue: queue, using: block)
   |                                                                                     `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
65 |         return NotificationToken(notificationCenter: self, token: token, name: name)
66 |     }
[64/72] Compiling Anima CVTimeStamp+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:27:17: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
25 |         return observe(keyPath, options: options) { _, change in
26 |             if let newValue = change.newValue, let oldValue = change.oldValue {
27 |                 handler(oldValue, newValue)
   |                 |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:48:21: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
46 |             if let newValue = change.newValue, let oldValue = change.oldValue {
47 |                 if uniqueValues == false {
48 |                     handler(oldValue, newValue)
   |                     |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
49 |                 } else if change.newValue != change.oldValue {
50 |                     handler(oldValue, newValue)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NotificationCenter+.swift:64:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
59 |      */
60 |     func observe(_ name: NSNotification.Name?, object: Any?,
61 |                  queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void)
   |                                                      `- note: parameter 'block' is implicitly non-sendable
62 |         -> NotificationToken
63 |     {
64 |         let token = addObserver(forName: name, object: object, queue: queue, using: block)
   |                                                                                     `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
65 |         return NotificationToken(notificationCenter: self, token: token, name: name)
66 |     }
[65/72] Compiling Anima Comparable+Clamp.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:27:17: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
25 |         return observe(keyPath, options: options) { _, change in
26 |             if let newValue = change.newValue, let oldValue = change.oldValue {
27 |                 handler(oldValue, newValue)
   |                 |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                 `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
28 |             }
29 |         }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NSObject+Observe.swift:48:21: warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
46 |             if let newValue = change.newValue, let oldValue = change.oldValue {
47 |                 if uniqueValues == false {
48 |                     handler(oldValue, newValue)
   |                     |- warning: capture of 'handler' with non-sendable type '(Value, Value) -> Void' in a '@Sendable' closure
   |                     `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
49 |                 } else if change.newValue != change.oldValue {
50 |                     handler(oldValue, newValue)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/KVO/NotificationCenter+.swift:64:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
59 |      */
60 |     func observe(_ name: NSNotification.Name?, object: Any?,
61 |                  queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void)
   |                                                      `- note: parameter 'block' is implicitly non-sendable
62 |         -> NotificationToken
63 |     {
64 |         let token = addObserver(forName: name, object: object, queue: queue, using: block)
   |                                                                                     `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
65 |         return NotificationToken(notificationCenter: self, token: token, name: name)
66 |     }
[66/72] Compiling Anima Anima+AnimationConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 | /// Manages the animations of ``Anima``.
 16 | class AnimationController {
    |       `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
 17 |
 18 |     static let shared = AnimationController()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[67/72] Compiling Anima Anima+AnimationOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 | /// Manages the animations of ``Anima``.
 16 | class AnimationController {
    |       `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
 17 |
 18 |     static let shared = AnimationController()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[68/72] Compiling Anima Anima+AnimationState.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 | /// Manages the animations of ``Anima``.
 16 | class AnimationController {
    |       `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
 17 |
 18 |     static let shared = AnimationController()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[69/72] Compiling Anima Anima.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 | /// Manages the animations of ``Anima``.
 16 | class AnimationController {
    |       `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
 17 |
 18 |     static let shared = AnimationController()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[70/72] Compiling Anima AnimationController.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 | /// Manages the animations of ``Anima``.
 16 | class AnimationController {
    |       `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
 17 |
 18 |     static let shared = AnimationController()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[71/72] Compiling Anima AnimatableArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 | /// Manages the animations of ``Anima``.
 16 | class AnimationController {
    |       `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
 17 |
 18 |     static let shared = AnimationController()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[72/72] Compiling Anima AnimatableProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 | /// Manages the animations of ``Anima``.
 16 | class AnimationController {
    |       `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
 17 |
 18 |     static let shared = AnimationController()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 19 |
 20 |     private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
Build complete! (8.67s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Anima",
  "name" : "Anima",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "Anima",
      "targets" : [
        "Anima"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AnimaTests",
      "module_type" : "SwiftTarget",
      "name" : "AnimaTests",
      "path" : "Tests/AnimaTests",
      "sources" : [
        "AnimaTests.swift"
      ],
      "target_dependencies" : [
        "Anima"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Anima",
      "module_type" : "SwiftTarget",
      "name" : "Anima",
      "path" : "Sources/Anima",
      "product_memberships" : [
        "Anima"
      ],
      "sources" : [
        "Anima/Anima+AnimationConfiguration.swift",
        "Anima/Anima+AnimationOptions.swift",
        "Anima/Anima+AnimationState.swift",
        "Anima/Anima.swift",
        "Anima/AnimationController.swift",
        "AnimatableProperty/AnimatableArray.swift",
        "AnimatableProperty/AnimatableProperty.swift",
        "AnimatablePropertyProvider/AnimatablePropertyProvider.swift",
        "AnimatablePropertyProvider/AnimationProvider.swift",
        "AnimatablePropertyProvider/PropertyAnimator+Layer.swift",
        "AnimatablePropertyProvider/PropertyAnimator+Layout.swift",
        "AnimatablePropertyProvider/PropertyAnimator+Popover.swift",
        "AnimatablePropertyProvider/PropertyAnimator+View.swift",
        "AnimatablePropertyProvider/PropertyAnimator+Window.swift",
        "AnimatablePropertyProvider/PropertyAnimator.swift",
        "Animations/Base/BaseAnimation.swift",
        "Animations/Base/ValueAnimation.swift",
        "Animations/Cubic/CubicAnimation.swift",
        "Animations/Cubic/CubicFunction.swift",
        "Animations/Decay/DecayAnimation.swift",
        "Animations/Decay/DecayFunction.swift",
        "Animations/Easing/EasingAnimation.swift",
        "Animations/Easing/TimingFunction.swift",
        "Animations/Misc/ColorAnimation.swift",
        "Animations/Misc/Keyframe.swift",
        "Animations/Spring/Spring.swift",
        "Animations/Spring/SpringAnimation.swift",
        "Extensions/AssociatedValue.swift",
        "Extensions/Colors/CGColor+.swift",
        "Extensions/Colors/NSUIColor+.swift",
        "Extensions/CoreAnimation/CALayer+.swift",
        "Extensions/CoreAnimation/CAMediaTimingFunction+.swift",
        "Extensions/CoreAnimation/CATransform3D+.swift",
        "Extensions/CoreAnimation/InnerShadowLayer.swift",
        "Extensions/DisplayLink+Combine.swift",
        "Extensions/KVO/KeyValueObserver.swift",
        "Extensions/KVO/NSObject+Observe.swift",
        "Extensions/KVO/NotificationCenter+.swift",
        "Extensions/KeyPath+.swift",
        "Extensions/Math & Geometry/ApproximateEquatable.swift",
        "Extensions/Math & Geometry/CVTimeStamp+.swift",
        "Extensions/Math & Geometry/Comparable+Clamp.swift",
        "Extensions/Math & Geometry/CoreGraphics+.swift",
        "Extensions/Math & Geometry/NSUIBezierpath+.swift",
        "Extensions/Math & Geometry/NSUIEdgeInset+.swift",
        "Extensions/Math & Geometry/NSValue+.swift",
        "Extensions/Math & Geometry/Number+FloatInitializable.swift",
        "Extensions/Math & Geometry/Sequence+Sort.swift",
        "Extensions/Math & Geometry/TimeInterval+.swift",
        "Extensions/Math & Geometry/VectorArithmetic+.swift",
        "Extensions/NSUI Typealias.swift",
        "Extensions/Optional.swift",
        "Extensions/Views/NSScrollView+.swift",
        "Extensions/Views/NSUIScrollView+.swift",
        "Extensions/Views/NSUITextField+.swift",
        "Extensions/Views/NSUIView+.swift",
        "Misc/CAKeyFrameAnimation/CAKeyframeAnimationEmittable+Layer.swift",
        "Misc/CAKeyFrameAnimation/CAKeyframeAnimationEmittable.swift",
        "Misc/CAKeyFrameAnimation/CAKeyframeAnimationValueConvertible.swift",
        "Misc/ContentConfiguration/BorderConfiguration.swift",
        "Misc/ContentConfiguration/ShadowConfiguration.swift",
        "Misc/Decomposed/CALayerExtensions.swift",
        "Misc/Decomposed/CATransform3DExtensions.swift",
        "Misc/Decomposed/CGFloatVectorTypes.swift",
        "Misc/Decomposed/SIMDConvenienceExtensions.swift",
        "Misc/Decomposed/SIMDDecomposed.swift",
        "Misc/Rotation.swift",
        "Misc/Rubberband.swift",
        "Misc/Scale.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/flocked/anima/main
Repository:               flocked/Anima
Swift version used:       6.1
Target:                   Anima
Extracting symbol information for 'Anima'...
Finished extracting symbol information for 'Anima'. (8.93s)
Building documentation for 'Anima'...
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+Layer.swift:50:54-50:71
48 |  ### Accessing Animations
49 |
50 +  To access the animation for a property, use ``Anima/AnimationProvider/animation(for:)-6b22o``:
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                                      ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
51 |
52 |  ```swift
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+Layer.swift:60:37-60:54
58 |  ### Accessing Animation Value and Velocity
59 |
60 +  The animation returned via ``Anima/AnimationProvider/animation(for:)-6b22o`` provides the current animation value and velocity.
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                     ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
61 |
62 |  ```swift
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+Layout.swift:43:54-43:71
41 |  ### Accessing Animation
42 |
43 +  To access the animation for a property, use ``Anima/AnimationProvider/animation(for:)-6b22o``:
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                                      ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
44 |
45 |  ```swift
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+Layout.swift:53:37-53:54
51 |  ### Accessing Animation Value and Velocity
52 |
53 +  The animation returned via ``Anima/AnimationProvider/animation(for:)-6b22o`` provides the current animation value and velocity.
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                     ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
54 |
55 |  ```swift
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+Popover.swift:39:54-39:71
37 |  ### Accessing Animation
38 |
39 +  To access the animation for a property, use ``Anima/AnimationProvider/animation(for:)-6b22o``:
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                                      ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                                      ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
40 |
41 |  ```swift
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+Popover.swift:49:37-49:54
47 |  ### Accessing Animation Value and Velocity
48 |
49 +  The animation returned via ``Anima/AnimationProvider/animation(for:)-6b22o`` provides the current animation value and velocity.
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                     ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                     ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
50 |
51 |  ```swift
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+View.swift:49:58-49:75
47 |      ### Accessing Animations
48 |
49 +      To access the animation for a property, use ``Anima/AnimationProvider/animation(for:)-6k79l``:
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                                          ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
50 |
51 |      ```swift
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+View.swift:59:41-59:58
57 |      ### Accessing Animation Value and Velocity
58 |
59 +      The animation returned via ``Anima/AnimationProvider/animation(for:)-6k79l`` provides the current animation value and velocity.
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                         ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
60 |
61 |      ```swift
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+Window.swift:43:58-43:75
41 |      ### Accessing Animations
42 |
43 +      To access the animation for a property, use ``Anima/AnimationProvider/animation(for:)-6b22o``:
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                                          ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                                          ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
44 |
45 |      ```swift
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> ../../AnimatablePropertyProvider/PropertyAnimator+Window.swift:53:41-53:58
51 |      ### Accessing Animation Value and Velocity
52 |
53 +      The animation returned via ``Anima/AnimationProvider/animation(for:)-6b22o`` provides the current animation value and velocity.
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |                                         ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |                                         ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
54 |
55 |      ```swift
warning: Parameter 'timingFunction' not found in initializer declaration
   --> ../../Animations/Base/ValueAnimation.swift:127:9-127:61
125 |
126 |      - Parameters:
127 +         - timingFunction: The timing curve of the animation.
    |         ╰─suggestion: Remove 'timingFunction' parameter documentation
128 |         - duration: The duration of the animation.
129 |         - value: The initial, starting value of the animation.
warning: Parameter 'duration' not found in initializer declaration
   --> ../../Animations/Base/ValueAnimation.swift:128:9-128:51
126 |      - Parameters:
127 |         - timingFunction: The timing curve of the animation.
128 +         - duration: The duration of the animation.
    |         ╰─suggestion: Remove 'duration' parameter documentation
129 |         - value: The initial, starting value of the animation.
130 |         - target: The target value of the animation.
warning: Parameter 'value' not found in type method declaration
   --> ../../Animations/Decay/DecayFunction.swift:116:11-116:16
114 |
115 |      - Parameters:
116 +         - value: The starting value.
    |           ╰─suggestion: Replace 'value' with 'toValue'
117 |         - toValue: The desired destination for the decay.
118 |         - decelerationRate: The decay constant.
warning: Parameter 'startValue' is missing documentation
   --> ../../Animations/Decay/DecayFunction.swift:119:6-119:6
117 |         - toValue: The desired destination for the decay.
    |         ╰─suggestion: Document 'startValue' parameter
118 |         - decelerationRate: The decay constant.
119 +
120 |      - Returns: The velocity required to reach `toValue`.
121 |      */
warning: 'Animations' is ambiguous at '/Anima'
  --> Anima.md:79:99-79:109
77 | *For more details about how to make a type animatable, take a look at <doc:AnimatableProperties>.*
78 |
79 + *For more details about the different animation types and how to set them up, take a look at <doc:Animations>.*
   |                                                                                                             ├─suggestion: Insert '-anchor' for 'Animations'
   |                                                                                                             ╰─suggestion: Insert '-article' for 'Animations'
80 |
81 | #### Creating your own animations
warning: 'Animations' is ambiguous at '/Anima'
   --> Anima.md:109:8-109:18
107 | ### Animations
108 |
109 + - <doc:Animations>
    |                  ├─suggestion: Insert '-anchor' for 'Animations'
    |                  ╰─suggestion: Insert '-article' for 'Animations'
110 | - ``BaseAnimation``
111 | - ``ValueAnimation``
warning: 'stop(at:immediately:)' doesn't exist at '/Anima/BaseAnimation'
  --> Docs/Animations.md:11:132-11:153
9  | You provide the inital and target value of the animation.
10 |
11 + To change the state of the animation, use      ``BaseAnimation/start(afterDelay:)``, ``BaseAnimation/pause()`` and ``BaseAnimation/stop(at:immediately:)``.
12 |
13 | ``ValueAnimation/valueChanged`` gets called whenever the current value of the animation changes.
warning: 'preventUserInteraction' doesn't exist at '/Anima/Anima/AnimationOptions'
  --> Extensions/Anima/Anima+AnimationOptions.md:12:5-12:27
10 | - ``autoStart``
11 | - ``resetSpringVelocity``
12 + - ``preventUserInteraction``
13 |
14 | ### Initializers
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> Extensions/AnimatablePropertyProvider/AnimationProvider.md:8:11-8:28
6  |
7  | - ``Anima/AnimationProvider/animations``
8  + - ``Anima/AnimationProvider/animation(for:)-6k79l``
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |           ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
9  |
10 | ### Providing animation handlers
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> Extensions/AnimatablePropertyProvider/LayerAnimator.md:8:11-8:28
6  |
7  | - ``PropertyAnimator/animations``
8  + - ``Anima/AnimationProvider/animation(for:)-6b22o``
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |           ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
9  |
10 | ### Providing animation handlers
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> Extensions/AnimatablePropertyProvider/LayoutAnimator.md:8:11-8:28
6  |
7  | - ``PropertyAnimator/animations``
8  + - ``Anima/AnimationProvider/animation(for:)-6b22o``
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |           ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
9  |
10 | ### Providing animation handlers
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> Extensions/AnimatablePropertyProvider/PopoverAnimator.md:8:11-8:28
6  |
7  | - ``PropertyAnimator/animations``
8  + - ``Anima/AnimationProvider/animation(for:)-6b22o``
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |           ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
9  |
10 | ### Providing animation handlers
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> Extensions/AnimatablePropertyProvider/PropertyAnimator.md:8:11-8:28
6  |
7  | - ``animations``
8  + - ``Anima/AnimationProvider/animation(for:)-6b22o``
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |           ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
9  | - ``subscript(animation:)``
10 |
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:8:11-8:28
6  |
7  | - ``PropertyAnimator/animations``
8  + - ``Anima/AnimationProvider/animation(for:)-6b22o``
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |           ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
9  |
10 | ### Providing animation handlers
warning: 'directionalLayoutMargins' doesn't exist at '/Anima/ViewAnimator'
  --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:22:5-22:29
20 | - ``size``
21 | - ``anchorPoint``
22 + - ``directionalLayoutMargins``
23 | - ``alpha``
24 | - ``backgroundColor``
warning: 'setMagnification(_:centeredAt:)' doesn't exist at '/Anima/ViewAnimator'
  --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:80:5-80:36
78 | - ``documentOffsetFractional``
79 | - ``magnification``
80 + - ``setMagnification(_:centeredAt:)``
   |     ╰─suggestion: Replace 'setMagnification(_:centeredAt:)' with 'magnification(_:centeredAt:)'
81 |
82 | ### NSStackView/UIStackView
warning: 'tintColor-50ytj' doesn't exist at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:105:5-105:20
103 | ### UIButton
104 |
105 + - ``tintColor-50ytj``
    |     ├─suggestion: Replace 'tintColor-50ytj' with 'contentTintColor'
    |     ╰─suggestion: Replace 'tintColor-50ytj' with 'textColor'
106 |
107 | ### UIColorWell
warning: 'selectedColor' doesn't exist at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:109:5-109:18
107 | ### UIColorWell
108 |
109 + - ``selectedColor``
110 |
111 | ### UIImageView
warning: 'tintColor-58ga' doesn't exist at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:113:5-113:19
111 | ### UIImageView
112 |
113 + - ``tintColor-58ga``
    |     ├─suggestion: Replace 'tintColor-58ga' with 'contentTintColor'
    |     ╰─suggestion: Replace 'tintColor-58ga' with 'textColor'
114 |
115 | ### UILabel
warning: '1ppx6' isn't a disambiguation for 'fontSize' at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:117:13-117:19
115 | ### UILabel
116 |
117 + - ``fontSize-1ppx6``
    |             ├─suggestion: Replace '1ppx6' with '2t9f3' for 'var fontSize: CGFloat { get set }'
    |             ╰─suggestion: Replace '1ppx6' with '3yvwy' for 'var fontSize: CGFloat { get set }'
118 | - ``textColor-1hwys``
119 |
warning: '1hwys' isn't a disambiguation for 'textColor' at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:118:14-118:20
116 |
117 | - ``fontSize-1ppx6``
118 + - ``textColor-1hwys``
    |              ├─suggestion: Replace '1hwys' with '3klxp' for 'var textColor: NSColor { get set }'
    |              ├─suggestion: Replace '1hwys' with '3yp1n' for 'var textColor: NSColor? { get set }'
    |              ╰─suggestion: Replace '1hwys' with '44e46' for 'var textColor: NSColor? { get set }'
119 |
120 | ### UIProgressView
warning: 'progress' doesn't exist at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:122:5-122:13
120 | ### UIProgressView
121 |
122 + - ``progress``
    |     ├─suggestion: Replace 'progress' with 'UIProgressView'
    |     ╰─suggestion: Replace 'progress' with 'NSProgressIndicator'
123 |
124 | ### UIScrollView
warning: 'contentInset' doesn't exist at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:126:5-126:17
124 | ### UIScrollView
125 |
126 + - ``contentInset``
    |     ╰─suggestion: Replace 'contentInset' with 'contentViewMargins'
127 | - ``contentOffset``
128 | - ``contentSize``
warning: 'contentOffset' doesn't exist at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:127:5-127:18
125 |
126 | - ``contentInset``
127 + - ``contentOffset``
    |     ├─suggestion: Replace 'contentOffset' with 'documentOffset'
    |     ├─suggestion: Replace 'contentOffset' with 'contentViewMargins'
    |     ╰─suggestion: Replace 'contentOffset' with 'documentOffsetFractional'
128 | - ``contentSize``
129 | - ``zoomScale``
warning: 'contentSize' doesn't exist at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:128:5-128:16
126 | - ``contentInset``
127 | - ``contentOffset``
128 + - ``contentSize``
    |     ├─suggestion: Replace 'contentSize' with 'contentViewMargins'
    |     ╰─suggestion: Replace 'contentSize' with 'documentSize'
129 | - ``zoomScale``
130 |
warning: 'zoomScale' doesn't exist at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:129:5-129:14
127 | - ``contentOffset``
128 | - ``contentSize``
129 + - ``zoomScale``
130 |
131 | ### UITextField
warning: 'hq5n' isn't a disambiguation for 'fontSize' at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:133:13-133:18
131 | ### UITextField
132 |
133 + - ``fontSize-hq5n``
    |             ├─suggestion: Replace 'hq5n' with '2t9f3' for 'var fontSize: CGFloat { get set }'
    |             ╰─suggestion: Replace 'hq5n' with '3yvwy' for 'var fontSize: CGFloat { get set }'
134 | - ``textColor-faze``
135 |
warning: 'faze' isn't a disambiguation for 'textColor' at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:134:14-134:19
132 |
133 | - ``fontSize-hq5n``
134 + - ``textColor-faze``
    |              ├─suggestion: Replace 'faze' with '3klxp' for 'var textColor: NSColor { get set }'
    |              ├─suggestion: Replace 'faze' with '3yp1n' for 'var textColor: NSColor? { get set }'
    |              ╰─suggestion: Replace 'faze' with '44e46' for 'var textColor: NSColor? { get set }'
135 |
136 | ### UITextView
warning: '3dgk6' isn't a disambiguation for 'fontSize' at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:138:13-138:19
136 | ### UITextView
137 |
138 + - ``fontSize-3dgk6``
    |             ├─suggestion: Replace '3dgk6' with '2t9f3' for 'var fontSize: CGFloat { get set }'
    |             ╰─suggestion: Replace '3dgk6' with '3yvwy' for 'var fontSize: CGFloat { get set }'
139 | - ``textColor-9l755``
warning: '9l755' isn't a disambiguation for 'textColor' at '/Anima/ViewAnimator'
   --> Extensions/AnimatablePropertyProvider/ViewAnimator.md:139:14-139:20
137 |
138 | - ``fontSize-3dgk6``
139 + - ``textColor-9l755``
    |              ├─suggestion: Replace '9l755' with '3klxp' for 'var textColor: NSColor { get set }'
    |              ├─suggestion: Replace '9l755' with '3yp1n' for 'var textColor: NSColor? { get set }'
    |              ╰─suggestion: Replace '9l755' with '44e46' for 'var textColor: NSColor? { get set }'
warning: 'AnimationProvider' doesn't exist at '/Anima/Anima'
  --> Extensions/AnimatablePropertyProvider/WindowAnimator.md:8:11-8:28
6  |
7  | - ``PropertyAnimator/animations``
8  + - ``Anima/AnimationProvider/animation(for:)-6b22o``
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animations'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-options'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationState'
   |           ├─suggestion: Replace 'AnimationProvider' with 'Animation-state'
   |           ├─suggestion: Replace 'AnimationProvider' with 'AnimationOptions'
   |           ╰─suggestion: Replace 'AnimationProvider' with 'DecayAnimationMode'
9  |
10 | ### Providing animation handlers
warning: 'easeInCirc' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:19:6-19:16
17 | ### Circular
18 |
19 + -  ``easeInCirc``
   |      ├─suggestion: Replace 'easeInCirc' with 'easeInCircular'
   |      ├─suggestion: Replace 'easeInCirc' with 'easeInCubic'
   |      ├─suggestion: Replace 'easeInCirc' with 'easeInEaseOutCircular'
   |      ├─suggestion: Replace 'easeInCirc' with 'easeInQuadic'
   |      ├─suggestion: Replace 'easeInCirc' with 'easeInBack'
   |      ├─suggestion: Replace 'easeInCirc' with 'easeInElastic'
   |      ├─suggestion: Replace 'easeInCirc' with 'easeInQuartic'
   |      ├─suggestion: Replace 'easeInCirc' with 'easeInQuintic'
   |      ├─suggestion: Replace 'easeInCirc' with 'easeInSine'
   |      ╰─suggestion: Replace 'easeInCirc' with 'easeInBounce'
20 | -  ``easeOutCirc``
21 | -  ``easeInEaseOutCirc``
warning: 'easeOutCirc' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:20:6-20:17
18 |
19 | -  ``easeInCirc``
20 + -  ``easeOutCirc``
   |      ├─suggestion: Replace 'easeOutCirc' with 'easeOutCircular'
   |      ├─suggestion: Replace 'easeOutCirc' with 'easeOutCubic'
   |      ├─suggestion: Replace 'easeOutCirc' with 'easeOutQuadic'
   |      ├─suggestion: Replace 'easeOutCirc' with 'easeOutBack'
   |      ├─suggestion: Replace 'easeOutCirc' with 'easeOutElastic'
   |      ├─suggestion: Replace 'easeOutCirc' with 'easeOutQuartic'
   |      ├─suggestion: Replace 'easeOutCirc' with 'easeOutQuintic'
   |      ├─suggestion: Replace 'easeOutCirc' with 'easeOutSine'
   |      ├─suggestion: Replace 'easeOutCirc' with 'easeInEaseOutCircular'
   |      ╰─suggestion: Replace 'easeOutCirc' with 'easeOutBounce'
21 | -  ``easeInEaseOutCirc``
22 |
warning: 'easeInEaseOutCirc' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:21:6-21:23
19 | -  ``easeInCirc``
20 | -  ``easeOutCirc``
21 + -  ``easeInEaseOutCirc``
   |      ├─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutCircular'
   |      ├─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutCubic'
   |      ├─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutQuadic'
   |      ├─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutBack'
   |      ├─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutElastic'
   |      ├─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutQuartic'
   |      ├─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutQuintic'
   |      ├─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutSine'
   |      ├─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutBounce'
   |      ╰─suggestion: Replace 'easeInEaseOutCirc' with 'easeInEaseOutExponential'
22 |
23 | ### Cubic
warning: 'easeInExpo' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:37:6-37:16
35 | ### Exponential
36 |
37 + -  ``easeInExpo``
   |      ├─suggestion: Replace 'easeInExpo' with 'easeInExponential'
   |      ├─suggestion: Replace 'easeInExpo' with 'easeInEaseOutExponential'
   |      ├─suggestion: Replace 'easeInExpo' with 'easeInElastic'
   |      ├─suggestion: Replace 'easeInExpo' with 'easeInEaseOutBounce'
   |      ├─suggestion: Replace 'easeInExpo' with 'easeInEaseOutBack'
   |      ├─suggestion: Replace 'easeInExpo' with 'easeInEaseOutSine'
   |      ├─suggestion: Replace 'easeInExpo' with 'easeInEaseOutCubic'
   |      ├─suggestion: Replace 'easeInExpo' with 'easeInEaseOutQuadic'
   |      ├─suggestion: Replace 'easeInExpo' with 'easeInEaseOutElastic'
   |      ╰─suggestion: Replace 'easeInExpo' with 'easeInEaseOutQuartic'
38 | -  ``easeOutExpo``
39 | -  ``easeInEaseOutExpo``
warning: 'easeOutExpo' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:38:6-38:17
36 |
37 | -  ``easeInExpo``
38 + -  ``easeOutExpo``
   |      ├─suggestion: Replace 'easeOutExpo' with 'easeOutExponential'
   |      ├─suggestion: Replace 'easeOutExpo' with 'easeOutElastic'
   |      ├─suggestion: Replace 'easeOutExpo' with 'easeOutBounce'
   |      ├─suggestion: Replace 'easeOutExpo' with 'easeOutBack'
   |      ├─suggestion: Replace 'easeOutExpo' with 'easeOutSine'
   |      ├─suggestion: Replace 'easeOutExpo' with 'easeOutCubic'
   |      ├─suggestion: Replace 'easeOutExpo' with 'easeInEaseOutExponential'
   |      ├─suggestion: Replace 'easeOutExpo' with 'easeOutQuadic'
   |      ├─suggestion: Replace 'easeOutExpo' with 'easeOutQuartic'
   |      ╰─suggestion: Replace 'easeOutExpo' with 'easeOutQuintic'
39 | -  ``easeInEaseOutExpo``
40 |
warning: 'easeInEaseOutExpo' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:39:6-39:23
37 | -  ``easeInExpo``
38 | -  ``easeOutExpo``
39 + -  ``easeInEaseOutExpo``
   |      ├─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutExponential'
   |      ├─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutElastic'
   |      ├─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutBounce'
   |      ├─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutBack'
   |      ├─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutSine'
   |      ├─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutCubic'
   |      ├─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutQuadic'
   |      ├─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutQuartic'
   |      ├─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutQuintic'
   |      ╰─suggestion: Replace 'easeInEaseOutExpo' with 'easeInEaseOutCircular'
40 |
41 | ### Sinusoidal
warning: 'easeInQuad' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:49:6-49:16
47 | ### Quadratic
48 |
49 + -  ``easeInQuad``
   |      ├─suggestion: Replace 'easeInQuad' with 'easeInQuadic'
   |      ├─suggestion: Replace 'easeInQuad' with 'easeInQuartic'
   |      ├─suggestion: Replace 'easeInQuad' with 'easeInQuintic'
   |      ├─suggestion: Replace 'easeInQuad' with 'easeInEaseOutQuadic'
   |      ├─suggestion: Replace 'easeInQuad' with 'easeInEaseOutQuartic'
   |      ├─suggestion: Replace 'easeInQuad' with 'easeInBack'
   |      ├─suggestion: Replace 'easeInQuad' with 'easeInCircular'
   |      ├─suggestion: Replace 'easeInQuad' with 'easeInCubic'
   |      ╰─suggestion: Replace 'easeInQuad' with 'easeInBounce'
50 | -  ``easeOutQuad``
51 | -  ``easeInEaseOutQuad``
warning: 'easeOutQuad' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:50:6-50:17
48 |
49 | -  ``easeInQuad``
50 + -  ``easeOutQuad``
   |      ├─suggestion: Replace 'easeOutQuad' with 'easeOutQuadic'
   |      ├─suggestion: Replace 'easeOutQuad' with 'easeOutQuartic'
   |      ├─suggestion: Replace 'easeOutQuad' with 'easeOutQuintic'
   |      ├─suggestion: Replace 'easeOutQuad' with 'easeInEaseOutQuadic'
   |      ├─suggestion: Replace 'easeOutQuad' with 'easeOutBack'
   |      ├─suggestion: Replace 'easeOutQuad' with 'easeOutCircular'
   |      ├─suggestion: Replace 'easeOutQuad' with 'easeOutCubic'
   |      ├─suggestion: Replace 'easeOutQuad' with 'easeOutBounce'
   |      ├─suggestion: Replace 'easeOutQuad' with 'easeOutElastic'
   |      ╰─suggestion: Replace 'easeOutQuad' with 'easeOutSine'
51 | -  ``easeInEaseOutQuad``
52 |
warning: 'easeInEaseOutQuad' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:51:6-51:23
49 | -  ``easeInQuad``
50 | -  ``easeOutQuad``
51 + -  ``easeInEaseOutQuad``
   |      ├─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutQuadic'
   |      ├─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutQuartic'
   |      ├─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutQuintic'
   |      ├─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutBack'
   |      ├─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutCircular'
   |      ├─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutCubic'
   |      ├─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutBounce'
   |      ├─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutElastic'
   |      ├─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutSine'
   |      ╰─suggestion: Replace 'easeInEaseOutQuad' with 'easeInEaseOutExponential'
52 |
53 | ### Quartic
warning: 'easeInQuart' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:55:6-55:17
53 | ### Quartic
54 |
55 + -  ``easeInQuart``
   |      ├─suggestion: Replace 'easeInQuart' with 'easeInQuartic'
   |      ├─suggestion: Replace 'easeInQuart' with 'easeInQuadic'
   |      ├─suggestion: Replace 'easeInQuart' with 'easeInQuintic'
   |      ├─suggestion: Replace 'easeInQuart' with 'easeInEaseOutQuartic'
   |      ╰─suggestion: Replace 'easeInQuart' with 'easeInEaseOutQuadic'
56 | -  ``easeOutQuart``
57 | -  ``easeInEaseOutQuart``
warning: 'easeOutQuart' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:56:6-56:18
54 |
55 | -  ``easeInQuart``
56 + -  ``easeOutQuart``
   |      ├─suggestion: Replace 'easeOutQuart' with 'easeOutQuartic'
   |      ├─suggestion: Replace 'easeOutQuart' with 'easeOutQuadic'
   |      ├─suggestion: Replace 'easeOutQuart' with 'easeOutQuintic'
   |      ├─suggestion: Replace 'easeOutQuart' with 'easeInEaseOutQuartic'
   |      ├─suggestion: Replace 'easeOutQuart' with 'easeOutCircular'
   |      ├─suggestion: Replace 'easeOutQuart' with 'easeOutBack'
   |      ├─suggestion: Replace 'easeOutQuart' with 'easeOutElastic'
   |      ├─suggestion: Replace 'easeOutQuart' with 'easeOutCubic'
   |      ╰─suggestion: Replace 'easeOutQuart' with 'easeOutBounce'
57 | -  ``easeInEaseOutQuart``
58 |
warning: 'easeInEaseOutQuart' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:57:6-57:24
55 | -  ``easeInQuart``
56 | -  ``easeOutQuart``
57 + -  ``easeInEaseOutQuart``
   |      ├─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutQuartic'
   |      ├─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutQuadic'
   |      ├─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutQuintic'
   |      ├─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutCircular'
   |      ├─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutBack'
   |      ├─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutElastic'
   |      ├─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutCubic'
   |      ├─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutBounce'
   |      ├─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutSine'
   |      ╰─suggestion: Replace 'easeInEaseOutQuart' with 'easeInEaseOutExponential'
58 |
59 | ### Quintic
warning: 'easeInQuint' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:61:6-61:17
59 | ### Quintic
60 |
61 + -  ``easeInQuint``
   |      ├─suggestion: Replace 'easeInQuint' with 'easeInQuintic'
   |      ├─suggestion: Replace 'easeInQuint' with 'easeInQuadic'
   |      ├─suggestion: Replace 'easeInQuint' with 'easeInQuartic'
   |      ├─suggestion: Replace 'easeInQuint' with 'easeInEaseOutQuintic'
   |      ╰─suggestion: Replace 'easeInQuint' with 'easeInSine'
62 | -  ``easeOutQuint``
63 | -  ``easeInEaseOutQuint``
warning: 'easeOutQuint' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:62:6-62:18
60 |
61 | -  ``easeInQuint``
62 + -  ``easeOutQuint``
   |      ├─suggestion: Replace 'easeOutQuint' with 'easeOutQuintic'
   |      ├─suggestion: Replace 'easeOutQuint' with 'easeOutQuadic'
   |      ├─suggestion: Replace 'easeOutQuint' with 'easeOutQuartic'
   |      ├─suggestion: Replace 'easeOutQuint' with 'easeInEaseOutQuintic'
   |      ├─suggestion: Replace 'easeOutQuint' with 'easeOutSine'
   |      ├─suggestion: Replace 'easeOutQuint' with 'easeOutCubic'
   |      ╰─suggestion: Replace 'easeOutQuint' with 'easeOutBounce'
63 | -  ``easeInEaseOutQuint``
warning: 'easeInEaseOutQuint' doesn't exist at '/Anima/TimingFunction/Easing'
  --> Extensions/Animations/Easing/Easing.md:63:6-63:24
61 | -  ``easeInQuint``
62 | -  ``easeOutQuint``
63 + -  ``easeInEaseOutQuint``
   |      ├─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutQuintic'
   |      ├─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutQuadic'
   |      ├─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutQuartic'
   |      ├─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutSine'
   |      ├─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutCubic'
   |      ├─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutBounce'
   |      ├─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutBack'
   |      ├─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutElastic'
   |      ├─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutCircular'
   |      ╰─suggestion: Replace 'easeInEaseOutQuint' with 'easeInEaseOutExponential'
warning: Parameter 'key' is missing documentation
  --> ../../Misc/CAKeyFrameAnimation/CAKeyframeAnimationEmittable+Layer.swift:65:44-65:44
63 |      - Parameters:
64 |         - animation: The animation to add.
65 +         - keyPath: The key path to animate.
   |         ╰─suggestion: Document 'key' parameter
66 |      */
67 |     func add<T: AnimatableProperty & CAKeyframeAnimationValueConvertible>(_ animation: SpringAnimation<T>, forKey key: String? = nil, keyPath: WritableKeyPath<CALayer, T>) {
Finished building documentation for 'Anima' (0.76s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/flocked/anima/main
Fetching https://github.com/swiftlang/swift-docc-plugin from cache
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.48s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (1.08s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.86s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.52s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write sources
[2/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit SemanticVersion.swift
[7/53] Compiling SymbolKit AccessControl.swift
[8/53] Compiling SymbolKit Availability.swift
[9/53] Compiling SymbolKit AvailabilityItem.swift
[10/53] Compiling SymbolKit Domain.swift
[11/57] Compiling SymbolKit Mixin+Equals.swift
[12/57] Compiling SymbolKit Mixin+Hash.swift
[13/57] Compiling SymbolKit Mixin.swift
[14/57] Compiling SymbolKit LineList.swift
[15/57] Compiling SymbolKit Position.swift
[16/57] Emitting module SymbolKit
[17/57] Compiling SymbolKit SourceRange.swift
[18/57] Compiling SymbolKit Metadata.swift
[19/57] Compiling SymbolKit Module.swift
[20/57] Compiling SymbolKit OperatingSystem.swift
[21/57] Compiling SymbolKit Platform.swift
[22/57] Compiling Snippets SnippetParser.swift
[23/57] Compiling Snippets Snippet.swift
[24/57] Emitting module Snippets
[25/57] Compiling SymbolKit Names.swift
[26/57] Compiling SymbolKit SPI.swift
[27/57] Compiling SymbolKit Snippet.swift
[28/57] Compiling SymbolKit Extension.swift
[29/57] Compiling SymbolKit DeclarationFragments.swift
[30/57] Compiling SymbolKit Fragment.swift
[31/57] Compiling SymbolKit FragmentKind.swift
[32/57] Compiling SymbolKit FunctionParameter.swift
[33/57] Compiling SymbolKit FunctionSignature.swift
[34/57] Compiling SymbolKit Relationship.swift
[35/57] Compiling SymbolKit RelationshipKind.swift
[36/57] Compiling SymbolKit SourceOrigin.swift
[37/57] Compiling SymbolKit GenericConstraints.swift
[38/57] Compiling SymbolKit Swift.swift
[39/57] Compiling SymbolKit Identifier.swift
[40/57] Compiling SymbolKit KindIdentifier.swift
[41/57] Compiling SymbolKit Location.swift
[42/57] Compiling SymbolKit Mutability.swift
[43/57] Compiling SymbolKit Symbol.swift
[44/57] Compiling SymbolKit SymbolKind.swift
[45/57] Compiling SymbolKit SymbolGraph.swift
[46/57] Compiling SymbolKit GraphCollector.swift
[47/57] Compiling SymbolKit GenericConstraint.swift
[48/57] Compiling SymbolKit GenericParameter.swift
[49/57] Compiling SymbolKit Generics.swift
[50/57] Compiling SymbolKit Namespace.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.02s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/65] Compiling Anima KeyValueObserver.swift
[3/65] Compiling Anima NSObject+Observe.swift
[4/65] Compiling Anima NotificationCenter+.swift
[5/65] Compiling Anima KeyPath+.swift
[6/65] Compiling Anima ApproximateEquatable.swift
[7/65] Compiling Anima CVTimeStamp+.swift
[8/65] Compiling Anima Comparable+Clamp.swift
[9/71] Compiling Anima CoreGraphics+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/CoreGraphics+.swift:46:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 44 | }
 45 |
 46 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |     public func hash(into hasher: inout Hasher) {
 48 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:15:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 13 | import SwiftUI
 14 |
 15 | extension NSDirectionalRectEdge: Hashable {}
    | |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:18:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 16 |
 17 | #if os(macOS)
 18 |     extension NSEdgeInsets: Hashable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 19 |         public static func == (lhs: NSEdgeInsets, rhs: NSEdgeInsets) -> Bool {
 20 |             lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:91:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 89 | }
 90 |
 91 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 92 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
 93 |         lhs.hashValue == rhs.hashValue
[10/71] Compiling Anima NSUIBezierpath+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/CoreGraphics+.swift:46:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 44 | }
 45 |
 46 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |     public func hash(into hasher: inout Hasher) {
 48 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:15:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 13 | import SwiftUI
 14 |
 15 | extension NSDirectionalRectEdge: Hashable {}
    | |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:18:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 16 |
 17 | #if os(macOS)
 18 |     extension NSEdgeInsets: Hashable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 19 |         public static func == (lhs: NSEdgeInsets, rhs: NSEdgeInsets) -> Bool {
 20 |             lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:91:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 89 | }
 90 |
 91 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 92 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
 93 |         lhs.hashValue == rhs.hashValue
[11/71] Compiling Anima NSUIEdgeInset+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/CoreGraphics+.swift:46:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 44 | }
 45 |
 46 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |     public func hash(into hasher: inout Hasher) {
 48 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:15:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 13 | import SwiftUI
 14 |
 15 | extension NSDirectionalRectEdge: Hashable {}
    | |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:18:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 16 |
 17 | #if os(macOS)
 18 |     extension NSEdgeInsets: Hashable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 19 |         public static func == (lhs: NSEdgeInsets, rhs: NSEdgeInsets) -> Bool {
 20 |             lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:91:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 89 | }
 90 |
 91 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 92 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
 93 |         lhs.hashValue == rhs.hashValue
[12/71] Compiling Anima NSValue+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/CoreGraphics+.swift:46:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 44 | }
 45 |
 46 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |     public func hash(into hasher: inout Hasher) {
 48 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:15:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 13 | import SwiftUI
 14 |
 15 | extension NSDirectionalRectEdge: Hashable {}
    | |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:18:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 16 |
 17 | #if os(macOS)
 18 |     extension NSEdgeInsets: Hashable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 19 |         public static func == (lhs: NSEdgeInsets, rhs: NSEdgeInsets) -> Bool {
 20 |             lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:91:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 89 | }
 90 |
 91 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 92 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
 93 |         lhs.hashValue == rhs.hashValue
[13/71] Compiling Anima Number+FloatInitializable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/CoreGraphics+.swift:46:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 44 | }
 45 |
 46 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |     public func hash(into hasher: inout Hasher) {
 48 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:15:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 13 | import SwiftUI
 14 |
 15 | extension NSDirectionalRectEdge: Hashable {}
    | |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:18:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 16 |
 17 | #if os(macOS)
 18 |     extension NSEdgeInsets: Hashable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 19 |         public static func == (lhs: NSEdgeInsets, rhs: NSEdgeInsets) -> Bool {
 20 |             lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:91:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 89 | }
 90 |
 91 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 92 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
 93 |         lhs.hashValue == rhs.hashValue
[14/71] Compiling Anima Sequence+Sort.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/CoreGraphics+.swift:46:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 44 | }
 45 |
 46 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |     public func hash(into hasher: inout Hasher) {
 48 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:15:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 13 | import SwiftUI
 14 |
 15 | extension NSDirectionalRectEdge: Hashable {}
    | |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:18:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 16 |
 17 | #if os(macOS)
 18 |     extension NSEdgeInsets: Hashable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 19 |         public static func == (lhs: NSEdgeInsets, rhs: NSEdgeInsets) -> Bool {
 20 |             lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:91:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 89 | }
 90 |
 91 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 92 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
 93 |         lhs.hashValue == rhs.hashValue
[15/71] Compiling Anima TimeInterval+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/CoreGraphics+.swift:46:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 44 | }
 45 |
 46 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |     public func hash(into hasher: inout Hasher) {
 48 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:15:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 13 | import SwiftUI
 14 |
 15 | extension NSDirectionalRectEdge: Hashable {}
    | |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:18:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 16 |
 17 | #if os(macOS)
 18 |     extension NSEdgeInsets: Hashable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 19 |         public static func == (lhs: NSEdgeInsets, rhs: NSEdgeInsets) -> Bool {
 20 |             lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:91:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 89 | }
 90 |
 91 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 92 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
 93 |         lhs.hashValue == rhs.hashValue
[16/71] Compiling Anima CGColor+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/CoreAnimation/CATransform3D+.swift:12:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
10 |     import QuartzCore
11 |
12 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
13 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
14 |             CATransform3DEqualToTransform(lhs, rhs)
[17/71] Compiling Anima NSUIColor+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/CoreAnimation/CATransform3D+.swift:12:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
10 |     import QuartzCore
11 |
12 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
13 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
14 |             CATransform3DEqualToTransform(lhs, rhs)
[18/71] Compiling Anima CALayer+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/CoreAnimation/CATransform3D+.swift:12:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
10 |     import QuartzCore
11 |
12 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
13 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
14 |             CATransform3DEqualToTransform(lhs, rhs)
[19/71] Compiling Anima CAMediaTimingFunction+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/CoreAnimation/CATransform3D+.swift:12:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
10 |     import QuartzCore
11 |
12 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
13 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
14 |             CATransform3DEqualToTransform(lhs, rhs)
[20/71] Compiling Anima CATransform3D+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/CoreAnimation/CATransform3D+.swift:12:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
10 |     import QuartzCore
11 |
12 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
13 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
14 |             CATransform3DEqualToTransform(lhs, rhs)
[21/71] Compiling Anima InnerShadowLayer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/CoreAnimation/CATransform3D+.swift:12:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
10 |     import QuartzCore
11 |
12 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
13 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
14 |             CATransform3DEqualToTransform(lhs, rhs)
[22/71] Compiling Anima DisplayLink+Combine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/CoreAnimation/CATransform3D+.swift:12:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
10 |     import QuartzCore
11 |
12 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
13 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
14 |             CATransform3DEqualToTransform(lhs, rhs)
[23/71] Emitting module Anima
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/CoreAnimation/CATransform3D+.swift:12:5: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
10 |     import QuartzCore
11 |
12 |     extension CATransform3D: Equatable {
   |     |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
   |     `- note: add '@retroactive' to silence this warning
13 |         public static func == (lhs: CATransform3D, rhs: CATransform3D) -> Bool {
14 |             CATransform3DEqualToTransform(lhs, rhs)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/CoreGraphics+.swift:46:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 44 | }
 45 |
 46 | extension CGPoint: Hashable {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 47 |     public func hash(into hasher: inout Hasher) {
 48 |         hasher.combine(x)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:15:1: warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 13 | import SwiftUI
 14 |
 15 | extension NSDirectionalRectEdge: Hashable {}
    | |- warning: extension declares a conformance of imported type 'NSDirectionalRectEdge' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 16 |
 17 | #if os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:18:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 16 |
 17 | #if os(macOS)
 18 |     extension NSEdgeInsets: Hashable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
 19 |         public static func == (lhs: NSEdgeInsets, rhs: NSEdgeInsets) -> Bool {
 20 |             lhs.hashValue == rhs.hashValue
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Extensions/Math & Geometry/NSUIEdgeInset+.swift:91:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
 89 | }
 90 |
 91 | extension NSDirectionalEdgeInsets: Hashable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 92 |     public static func == (lhs: NSDirectionalEdgeInsets, rhs: NSDirectionalEdgeInsets) -> Bool {
 93 |         lhs.hashValue == rhs.hashValue
[24/71] Compiling Anima AnimatablePropertyProvider.swift
[25/71] Compiling Anima AnimationProvider.swift
[26/71] Compiling Anima PropertyAnimator+Layer.swift
[27/71] Compiling Anima PropertyAnimator+Layout.swift
[28/71] Compiling Anima PropertyAnimator+Popover.swift
[29/71] Compiling Anima PropertyAnimator+View.swift
[30/71] Compiling Anima PropertyAnimator+Window.swift
[31/71] Compiling Anima CAKeyframeAnimationEmittable+Layer.swift
[32/71] Compiling Anima CAKeyframeAnimationEmittable.swift
[33/71] Compiling Anima CAKeyframeAnimationValueConvertible.swift
[34/71] Compiling Anima BorderConfiguration.swift
[35/71] Compiling Anima ShadowConfiguration.swift
[36/71] Compiling Anima CALayerExtensions.swift
[37/71] Compiling Anima CATransform3DExtensions.swift
[38/71] Compiling Anima EasingAnimation.swift
[39/71] Compiling Anima TimingFunction.swift
[40/71] Compiling Anima ColorAnimation.swift
[41/71] Compiling Anima Keyframe.swift
[42/71] Compiling Anima Spring.swift
[43/71] Compiling Anima SpringAnimation.swift
[44/71] Compiling Anima AssociatedValue.swift
[45/71] Compiling Anima Anima+AnimationConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[46/71] Compiling Anima Anima+AnimationOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[47/71] Compiling Anima Anima+AnimationState.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[48/71] Compiling Anima Anima.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[49/71] Compiling Anima AnimationController.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[50/71] Compiling Anima AnimatableArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[51/71] Compiling Anima AnimatableProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:241:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
239 | }
240 |
241 | extension CGAffineTransform: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
242 |     @inlinable public init(_ animatableData: AnimatableArray<Double>) {
243 |         self.init(animatableData[0], animatableData[1], animatableData[2], animatableData[3], animatableData[4], animatableData[5])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:256:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
254 | }
255 |
256 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
257 |     public init(_ animatableData: AnimatableArray<Double>) {
258 |         self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:268:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
266 |
267 | #if os(macOS)
268 |     extension NSEdgeInsets: AnimatableProperty, Animatable {
    |     |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
    |     `- note: add '@retroactive' to silence this warning
269 |         public var animatableData: AnimatableArray<Double> {
270 |             get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:291:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
289 | #endif
290 |
291 | extension CGVector: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
292 |     public var animatableData: AnimatableArray<Double> {
293 |         get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:302:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
300 | }
301 |
302 | extension CATransform3D: AnimatableProperty, Animatable {
    | |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
303 |     public init(_ animatableData: AnimatableArray<Double>) {
304 |         self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:358:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
356 | }
357 |
358 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
    | |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
359 |     public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
360 |         self.init(animatableData.elements.compactMap { Element($0) })
[52/71] Compiling Anima PropertyAnimator.swift
[53/71] Compiling Anima BaseAnimation.swift
[54/71] Compiling Anima ValueAnimation.swift
[55/71] Compiling Anima CubicAnimation.swift
[56/71] Compiling Anima CubicFunction.swift
[57/71] Compiling Anima DecayAnimation.swift
[58/71] Compiling Anima DecayFunction.swift
[59/71] Compiling Anima VectorArithmetic+.swift
[60/71] Compiling Anima NSUI Typealias.swift
[61/71] Compiling Anima Optional.swift
[62/71] Compiling Anima NSScrollView+.swift
[63/71] Compiling Anima NSUIScrollView+.swift
[64/71] Compiling Anima NSUITextField+.swift
[65/71] Compiling Anima NSUIView+.swift
[66/71] Compiling Anima CGFloatVectorTypes.swift
[67/71] Compiling Anima SIMDConvenienceExtensions.swift
[68/71] Compiling Anima SIMDDecomposed.swift
[69/71] Compiling Anima Rotation.swift
[70/71] Compiling Anima Rubberband.swift
[71/71] Compiling Anima Scale.swift
Build of target: 'Anima' complete! (2.03s)
    1896
13	/Users/admin/builder/spi-builder-workspace/.docs/flocked/anima/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/flocked/anima/main
File count: 1896
Doc size:   13.0MB
Preparing doc bundle ...
Uploading prod-flocked-anima-main-45215b2f.zip to s3://spi-docs-inbox/prod-flocked-anima-main-45215b2f.zip
Copying... [12%]
Copying... [22%]
Copying... [32%]
Copying... [42%]
Copying... [52%]
Copying... [62%]
Copying... [72%]
Copying... [82%]
Copying... [92%]
Copying... [100%]
Done.