Build Information
Successful build of Sica, reference 0.4.1 (547976
), with Swift 6.0 for tvOS using Xcode 16.0 on 31 Oct 2024 20:42:49 UTC.
Swift 6 data race errors: 110
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Sica -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:51:23: note: annotate 'easeInSine' with '@MainActor' if property should only be accessed from the main actor
public static let easeInSine = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInSine"), controlPoints: 0.47, 0, 0.745, 0.715)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInSine = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInSine"), controlPoints: 0.47, 0, 0.745, 0.715)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:52:23: warning: static property 'easeOutSine' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeOutSine = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutSine"), controlPoints: 0.39, 0.575, 0.565, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:52:23: note: annotate 'easeOutSine' with '@MainActor' if property should only be accessed from the main actor
public static let easeOutSine = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutSine"), controlPoints: 0.39, 0.575, 0.565, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeOutSine = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutSine"), controlPoints: 0.39, 0.575, 0.565, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:53:23: warning: static property 'easeInOutSine' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInOutSine = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutSine"), controlPoints: 0.445, 0.05, 0.55, 0.95)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:53:23: note: annotate 'easeInOutSine' with '@MainActor' if property should only be accessed from the main actor
public static let easeInOutSine = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutSine"), controlPoints: 0.445, 0.05, 0.55, 0.95)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInOutSine = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutSine"), controlPoints: 0.445, 0.05, 0.55, 0.95)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:54:23: warning: static property 'easeInQuad' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInQuad = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInQuad"), controlPoints: 0.55, 0.085, 0.68, 0.53)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:54:23: note: annotate 'easeInQuad' with '@MainActor' if property should only be accessed from the main actor
public static let easeInQuad = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInQuad"), controlPoints: 0.55, 0.085, 0.68, 0.53)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInQuad = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInQuad"), controlPoints: 0.55, 0.085, 0.68, 0.53)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:55:23: warning: static property 'easeOutQuad' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeOutQuad = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutQuad"), controlPoints: 0.25, 0.46, 0.45, 0.94)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:55:23: note: annotate 'easeOutQuad' with '@MainActor' if property should only be accessed from the main actor
public static let easeOutQuad = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutQuad"), controlPoints: 0.25, 0.46, 0.45, 0.94)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeOutQuad = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutQuad"), controlPoints: 0.25, 0.46, 0.45, 0.94)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:56:23: warning: static property 'easeInOutQuad' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInOutQuad = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutQuad"), controlPoints: 0.455, 0.03, 0.515, 0.955)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:56:23: note: annotate 'easeInOutQuad' with '@MainActor' if property should only be accessed from the main actor
public static let easeInOutQuad = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutQuad"), controlPoints: 0.455, 0.03, 0.515, 0.955)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInOutQuad = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutQuad"), controlPoints: 0.455, 0.03, 0.515, 0.955)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:57:23: warning: static property 'easeInCubic' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInCubic = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInCubic"), controlPoints: 0.55, 0.055, 0.675, 0.19)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:57:23: note: annotate 'easeInCubic' with '@MainActor' if property should only be accessed from the main actor
public static let easeInCubic = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInCubic"), controlPoints: 0.55, 0.055, 0.675, 0.19)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInCubic = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInCubic"), controlPoints: 0.55, 0.055, 0.675, 0.19)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:58:23: warning: static property 'easeOutCubic' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeOutCubic = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutCubic"), controlPoints: 0.215, 0.61, 0.355, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:58:23: note: annotate 'easeOutCubic' with '@MainActor' if property should only be accessed from the main actor
public static let easeOutCubic = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutCubic"), controlPoints: 0.215, 0.61, 0.355, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeOutCubic = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutCubic"), controlPoints: 0.215, 0.61, 0.355, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:59:23: warning: static property 'easeInOutCubic' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInOutCubic = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutCubic"), controlPoints: 0.645, 0.045, 0.355, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:59:23: note: annotate 'easeInOutCubic' with '@MainActor' if property should only be accessed from the main actor
public static let easeInOutCubic = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutCubic"), controlPoints: 0.645, 0.045, 0.355, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInOutCubic = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutCubic"), controlPoints: 0.645, 0.045, 0.355, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:60:23: warning: static property 'easeInQuart' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInQuart = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInQuart"), controlPoints: 0.895, 0.03, 0.685, 0.22)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:60:23: note: annotate 'easeInQuart' with '@MainActor' if property should only be accessed from the main actor
public static let easeInQuart = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInQuart"), controlPoints: 0.895, 0.03, 0.685, 0.22)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInQuart = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInQuart"), controlPoints: 0.895, 0.03, 0.685, 0.22)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:61:23: warning: static property 'easeOutQuart' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeOutQuart = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutQuart"), controlPoints: 0.165, 0.84, 0.44, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:61:23: note: annotate 'easeOutQuart' with '@MainActor' if property should only be accessed from the main actor
public static let easeOutQuart = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutQuart"), controlPoints: 0.165, 0.84, 0.44, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeOutQuart = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutQuart"), controlPoints: 0.165, 0.84, 0.44, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:62:23: warning: static property 'easeInOutQuart' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInOutQuart = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutQuart"), controlPoints: 0.77, 0, 0.175, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:62:23: note: annotate 'easeInOutQuart' with '@MainActor' if property should only be accessed from the main actor
public static let easeInOutQuart = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutQuart"), controlPoints: 0.77, 0, 0.175, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInOutQuart = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutQuart"), controlPoints: 0.77, 0, 0.175, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:63:23: warning: static property 'easeInQuint' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInQuint = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInQuint"), controlPoints: 0.755, 0.05, 0.855, 0.06)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:63:23: note: annotate 'easeInQuint' with '@MainActor' if property should only be accessed from the main actor
public static let easeInQuint = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInQuint"), controlPoints: 0.755, 0.05, 0.855, 0.06)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInQuint = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInQuint"), controlPoints: 0.755, 0.05, 0.855, 0.06)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:64:23: warning: static property 'easeOutQuint' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeOutQuint = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutQuint"), controlPoints: 0.23, 1, 0.32, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:64:23: note: annotate 'easeOutQuint' with '@MainActor' if property should only be accessed from the main actor
public static let easeOutQuint = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutQuint"), controlPoints: 0.23, 1, 0.32, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeOutQuint = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutQuint"), controlPoints: 0.23, 1, 0.32, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:65:23: warning: static property 'easeInOutQuint' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInOutQuint = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutQuint"), controlPoints: 0.86, 0, 0.07, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:65:23: note: annotate 'easeInOutQuint' with '@MainActor' if property should only be accessed from the main actor
public static let easeInOutQuint = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutQuint"), controlPoints: 0.86, 0, 0.07, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInOutQuint = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutQuint"), controlPoints: 0.86, 0, 0.07, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:66:23: warning: static property 'easeInExpo' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInExpo = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInExpo"), controlPoints: 0.95, 0.05, 0.795, 0.035)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:66:23: note: annotate 'easeInExpo' with '@MainActor' if property should only be accessed from the main actor
public static let easeInExpo = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInExpo"), controlPoints: 0.95, 0.05, 0.795, 0.035)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInExpo = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInExpo"), controlPoints: 0.95, 0.05, 0.795, 0.035)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:67:23: warning: static property 'easeOutExpo' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeOutExpo = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutExpo"), controlPoints: 0.19, 1, 0.22, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:67:23: note: annotate 'easeOutExpo' with '@MainActor' if property should only be accessed from the main actor
public static let easeOutExpo = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutExpo"), controlPoints: 0.19, 1, 0.22, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeOutExpo = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutExpo"), controlPoints: 0.19, 1, 0.22, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:68:23: warning: static property 'easeInOutExpo' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInOutExpo = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutExpo"), controlPoints: 1, 0, 0, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:68:23: note: annotate 'easeInOutExpo' with '@MainActor' if property should only be accessed from the main actor
public static let easeInOutExpo = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutExpo"), controlPoints: 1, 0, 0, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInOutExpo = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutExpo"), controlPoints: 1, 0, 0, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:69:23: warning: static property 'easeInCirc' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInCirc = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInCirc"), controlPoints: 0.6, 0.04, 0.98, 0.335)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:69:23: note: annotate 'easeInCirc' with '@MainActor' if property should only be accessed from the main actor
public static let easeInCirc = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInCirc"), controlPoints: 0.6, 0.04, 0.98, 0.335)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInCirc = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInCirc"), controlPoints: 0.6, 0.04, 0.98, 0.335)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:70:23: warning: static property 'easeOutCirc' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeOutCirc = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutCirc"), controlPoints: 0.075, 0.82, 0.165, 1)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:70:23: note: annotate 'easeOutCirc' with '@MainActor' if property should only be accessed from the main actor
public static let easeOutCirc = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutCirc"), controlPoints: 0.075, 0.82, 0.165, 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeOutCirc = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutCirc"), controlPoints: 0.075, 0.82, 0.165, 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:71:23: warning: static property 'easeInOutCirc' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInOutCirc = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutCirc"), controlPoints: 0.785, 0.135, 0.15, 0.86)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:71:23: note: annotate 'easeInOutCirc' with '@MainActor' if property should only be accessed from the main actor
public static let easeInOutCirc = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutCirc"), controlPoints: 0.785, 0.135, 0.15, 0.86)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInOutCirc = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutCirc"), controlPoints: 0.785, 0.135, 0.15, 0.86)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:72:23: warning: static property 'easeInBack' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInBack = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInBack"), controlPoints: 0.6, -0.28, 0.735, 0.045)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:72:23: note: annotate 'easeInBack' with '@MainActor' if property should only be accessed from the main actor
public static let easeInBack = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInBack"), controlPoints: 0.6, -0.28, 0.735, 0.045)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInBack = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInBack"), controlPoints: 0.6, -0.28, 0.735, 0.045)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:73:23: warning: static property 'easeOutBack' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeOutBack = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutBack"), controlPoints: 0.175, 0.885, 0.32, 1.275)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:73:23: note: annotate 'easeOutBack' with '@MainActor' if property should only be accessed from the main actor
public static let easeOutBack = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutBack"), controlPoints: 0.175, 0.885, 0.32, 1.275)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:73:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeOutBack = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeOutBack"), controlPoints: 0.175, 0.885, 0.32, 1.275)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:74:23: warning: static property 'easeInOutBack' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let easeInOutBack = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutBack"), controlPoints: 0.68, -0.55, 0.265, 1.55)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:74:23: note: annotate 'easeInOutBack' with '@MainActor' if property should only be accessed from the main actor
public static let easeInOutBack = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutBack"), controlPoints: 0.68, -0.55, 0.265, 1.55)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:74:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let easeInOutBack = TimingFunction(name: TimingFunction.NameValue(rawValue: "easeInOutBack"), controlPoints: 0.68, -0.55, 0.265, 1.55)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ View+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CAAnimation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Transition.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Sica -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.o -index-unit-output-path /Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CAAnimation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Transition.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Sica -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.o -index-unit-output-path /Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/View+Sica.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift:11:13: warning: let '_animatorAssociatedKey' is not concurrency-safe because non-'Sendable' type 'UnsafeMutablePointer<UInt>' may have shared mutable state; this is an error in the Swift 6 language mode
private let _animatorAssociatedKey = UnsafeMutablePointer<UInt>.allocate(capacity: 1)
^
Swift.UnsafeMutablePointer:1:23: note: generic struct 'UnsafeMutablePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutablePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift:11:13: note: annotate '_animatorAssociatedKey' with '@MainActor' if property should only be accessed from the main actor
private let _animatorAssociatedKey = UnsafeMutablePointer<UInt>.allocate(capacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift:11:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _animatorAssociatedKey = UnsafeMutablePointer<UInt>.allocate(capacity: 1)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Animator.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CAAnimation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Transition.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Sica -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.o -index-unit-output-path /Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CAAnimation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Transition.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Sica -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.o -index-unit-output-path /Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Animator.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift:15:23: warning: static property 'forwards' is not concurrency-safe because non-'Sendable' type 'FillMode' may have shared mutable state; this is an error in the Swift 6 language mode
public static let forwards = FillMode(rawValue: .forwards)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift:12:15: note: consider making struct 'FillMode' conform to the 'Sendable' protocol
public struct FillMode {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift:15:23: note: annotate 'forwards' with '@MainActor' if property should only be accessed from the main actor
public static let forwards = FillMode(rawValue: .forwards)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift:15:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let forwards = FillMode(rawValue: .forwards)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:14:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'TimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
public static let `default` = TimingFunction(name: CAMediaTimingFunctionName.default)
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:11:15: note: consider making struct 'TimingFunction' conform to the 'Sendable' protocol
public struct TimingFunction {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:14:23: note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
public static let `default` = TimingFunction(name: CAMediaTimingFunctionName.default)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let `default` = TimingFunction(name: CAMediaTimingFunctionName.default)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift:43:27: warning: main actor-isolated property 'layer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.layer = view.layer
^
UIKit.UIView:10:25: note: property declared here
@MainActor open var layer: CALayer { get }
^
SwiftCompile normal arm64 Compiling\ CALayer+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CAAnimation+Extension.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Transition.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Sica -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.o -index-unit-output-path /Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CAAnimation+Extension.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Transition.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Sica -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.o -index-unit-output-path /Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/CALayer+Sica.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift:12:13: warning: let '_animatorAssociatedKey' is not concurrency-safe because non-'Sendable' type 'UnsafeMutablePointer<UInt>' may have shared mutable state; this is an error in the Swift 6 language mode
private let _animatorAssociatedKey = UnsafeMutablePointer<UInt>.allocate(capacity: 1)
^
Swift.UnsafeMutablePointer:1:23: note: generic struct 'UnsafeMutablePointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutablePointer<Pointee> : Copyable where Pointee : ~Copyable {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift:12:13: note: annotate '_animatorAssociatedKey' with '@MainActor' if property should only be accessed from the main actor
private let _animatorAssociatedKey = UnsafeMutablePointer<UInt>.allocate(capacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift:12:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _animatorAssociatedKey = UnsafeMutablePointer<UInt>.allocate(capacity: 1)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AnimationKeyPaths.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CAAnimation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Transition.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Sica -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.o -index-unit-output-path /Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Animator.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CAAnimation+Extension.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/CALayer+Sica.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/FillMode.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/TimingFunction.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/Transition.swift /Users/admin/builder/spi-builder-workspace/Sica/Source/View+Sica.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Sica -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.o -index-unit-output-path /Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/AnimationKeyPaths.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:42:23: warning: static property 'anchorPoint' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGPoint>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let anchorPoint = AnimationKeyPath<CGPoint>(keyPath: #keyPath(CALayer.anchorPoint))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:42:23: note: annotate 'anchorPoint' with '@MainActor' if property should only be accessed from the main actor
public static let anchorPoint = AnimationKeyPath<CGPoint>(keyPath: #keyPath(CALayer.anchorPoint))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let anchorPoint = AnimationKeyPath<CGPoint>(keyPath: #keyPath(CALayer.anchorPoint))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:43:23: warning: static property 'backgroundColor' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGColor>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let backgroundColor = AnimationKeyPath<CGColor>(keyPath: #keyPath(CALayer.backgroundColor))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:43:23: note: annotate 'backgroundColor' with '@MainActor' if property should only be accessed from the main actor
public static let backgroundColor = AnimationKeyPath<CGColor>(keyPath: #keyPath(CALayer.backgroundColor))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let backgroundColor = AnimationKeyPath<CGColor>(keyPath: #keyPath(CALayer.backgroundColor))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:44:23: warning: static property 'borderColor' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGColor>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let borderColor = AnimationKeyPath<CGColor>(keyPath: #keyPath(CALayer.borderColor))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:44:23: note: annotate 'borderColor' with '@MainActor' if property should only be accessed from the main actor
public static let borderColor = AnimationKeyPath<CGColor>(keyPath: #keyPath(CALayer.borderColor))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:44:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let borderColor = AnimationKeyPath<CGColor>(keyPath: #keyPath(CALayer.borderColor))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:45:23: warning: static property 'borderWidth' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let borderWidth = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.borderWidth))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:45:23: note: annotate 'borderWidth' with '@MainActor' if property should only be accessed from the main actor
public static let borderWidth = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.borderWidth))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let borderWidth = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.borderWidth))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:46:23: warning: static property 'bounds' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGRect>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bounds = AnimationKeyPath<CGRect>(keyPath: #keyPath(CALayer.bounds))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:46:23: note: annotate 'bounds' with '@MainActor' if property should only be accessed from the main actor
public static let bounds = AnimationKeyPath<CGRect>(keyPath: #keyPath(CALayer.bounds))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bounds = AnimationKeyPath<CGRect>(keyPath: #keyPath(CALayer.bounds))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:47:23: warning: static property 'contents' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<[Any]>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let contents = AnimationKeyPath<[Any]>(keyPath: #keyPath(CALayer.contents))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:47:23: note: annotate 'contents' with '@MainActor' if property should only be accessed from the main actor
public static let contents = AnimationKeyPath<[Any]>(keyPath: #keyPath(CALayer.contents))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let contents = AnimationKeyPath<[Any]>(keyPath: #keyPath(CALayer.contents))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:48:23: warning: static property 'contentsRect' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGRect>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let contentsRect = AnimationKeyPath<CGRect>(keyPath: #keyPath(CALayer.contentsRect))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:48:23: note: annotate 'contentsRect' with '@MainActor' if property should only be accessed from the main actor
public static let contentsRect = AnimationKeyPath<CGRect>(keyPath: #keyPath(CALayer.contentsRect))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let contentsRect = AnimationKeyPath<CGRect>(keyPath: #keyPath(CALayer.contentsRect))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:49:23: warning: static property 'cornerRadius' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let cornerRadius = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.cornerRadius))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:49:23: note: annotate 'cornerRadius' with '@MainActor' if property should only be accessed from the main actor
public static let cornerRadius = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.cornerRadius))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let cornerRadius = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.cornerRadius))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:50:23: warning: static property 'filters' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<[CIFilter]>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let filters = AnimationKeyPath<[CIFilter]>(keyPath: #keyPath(CALayer.filters))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:50:23: note: annotate 'filters' with '@MainActor' if property should only be accessed from the main actor
public static let filters = AnimationKeyPath<[CIFilter]>(keyPath: #keyPath(CALayer.filters))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let filters = AnimationKeyPath<[CIFilter]>(keyPath: #keyPath(CALayer.filters))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:51:23: warning: static property 'frame' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGRect>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let frame = AnimationKeyPath<CGRect>(keyPath: #keyPath(CALayer.frame))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:51:23: note: annotate 'frame' with '@MainActor' if property should only be accessed from the main actor
public static let frame = AnimationKeyPath<CGRect>(keyPath: #keyPath(CALayer.frame))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let frame = AnimationKeyPath<CGRect>(keyPath: #keyPath(CALayer.frame))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:52:92: warning: 'hidden' has been renamed to 'isHidden'
public static let hidden = AnimationKeyPath<Bool>(keyPath: #keyPath(CALayer.hidden))
^~~~~~
isHidden
QuartzCore.CALayer:35:14: note: 'hidden' was obsoleted in Swift 3
open var hidden: Bool { get set }
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:52:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hidden = AnimationKeyPath<Bool>(keyPath: #keyPath(CALayer.hidden))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:52:23: note: annotate 'hidden' with '@MainActor' if property should only be accessed from the main actor
public static let hidden = AnimationKeyPath<Bool>(keyPath: #keyPath(CALayer.hidden))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hidden = AnimationKeyPath<Bool>(keyPath: #keyPath(CALayer.hidden))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:53:23: warning: static property 'mask' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CALayer>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let mask = AnimationKeyPath<CALayer>(keyPath: #keyPath(CALayer.mask))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:53:23: note: annotate 'mask' with '@MainActor' if property should only be accessed from the main actor
public static let mask = AnimationKeyPath<CALayer>(keyPath: #keyPath(CALayer.mask))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let mask = AnimationKeyPath<CALayer>(keyPath: #keyPath(CALayer.mask))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:54:23: warning: static property 'masksToBounds' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<Bool>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let masksToBounds = AnimationKeyPath<Bool>(keyPath: #keyPath(CALayer.masksToBounds))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:54:23: note: annotate 'masksToBounds' with '@MainActor' if property should only be accessed from the main actor
public static let masksToBounds = AnimationKeyPath<Bool>(keyPath: #keyPath(CALayer.masksToBounds))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let masksToBounds = AnimationKeyPath<Bool>(keyPath: #keyPath(CALayer.masksToBounds))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:55:23: warning: static property 'opacity' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let opacity = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.opacity))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:55:23: note: annotate 'opacity' with '@MainActor' if property should only be accessed from the main actor
public static let opacity = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.opacity))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let opacity = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.opacity))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:56:23: warning: static property 'path' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGPath>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let path = AnimationKeyPath<CGPath>(keyPath: #keyPath(CAShapeLayer.path))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:56:23: note: annotate 'path' with '@MainActor' if property should only be accessed from the main actor
public static let path = AnimationKeyPath<CGPath>(keyPath: #keyPath(CAShapeLayer.path))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let path = AnimationKeyPath<CGPath>(keyPath: #keyPath(CAShapeLayer.path))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:57:23: warning: static property 'position' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGPoint>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let position = AnimationKeyPath<CGPoint>(keyPath: #keyPath(CALayer.position))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:57:23: note: annotate 'position' with '@MainActor' if property should only be accessed from the main actor
public static let position = AnimationKeyPath<CGPoint>(keyPath: #keyPath(CALayer.position))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let position = AnimationKeyPath<CGPoint>(keyPath: #keyPath(CALayer.position))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:58:23: warning: static property 'shadowColor' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGColor>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shadowColor = AnimationKeyPath<CGColor>(keyPath: #keyPath(CALayer.shadowColor))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:58:23: note: annotate 'shadowColor' with '@MainActor' if property should only be accessed from the main actor
public static let shadowColor = AnimationKeyPath<CGColor>(keyPath: #keyPath(CALayer.shadowColor))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shadowColor = AnimationKeyPath<CGColor>(keyPath: #keyPath(CALayer.shadowColor))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:59:23: warning: static property 'shadowOffset' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGSize>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shadowOffset = AnimationKeyPath<CGSize>(keyPath: #keyPath(CALayer.shadowOffset))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:59:23: note: annotate 'shadowOffset' with '@MainActor' if property should only be accessed from the main actor
public static let shadowOffset = AnimationKeyPath<CGSize>(keyPath: #keyPath(CALayer.shadowOffset))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shadowOffset = AnimationKeyPath<CGSize>(keyPath: #keyPath(CALayer.shadowOffset))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:60:23: warning: static property 'shadowOpacity' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shadowOpacity = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.shadowOpacity))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:60:23: note: annotate 'shadowOpacity' with '@MainActor' if property should only be accessed from the main actor
public static let shadowOpacity = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.shadowOpacity))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shadowOpacity = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.shadowOpacity))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:61:23: warning: static property 'shadowPath' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGPath>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shadowPath = AnimationKeyPath<CGPath>(keyPath: #keyPath(CALayer.shadowPath))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:61:23: note: annotate 'shadowPath' with '@MainActor' if property should only be accessed from the main actor
public static let shadowPath = AnimationKeyPath<CGPath>(keyPath: #keyPath(CALayer.shadowPath))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shadowPath = AnimationKeyPath<CGPath>(keyPath: #keyPath(CALayer.shadowPath))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:62:23: warning: static property 'shadowRadius' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shadowRadius = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.shadowRadius))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:62:23: note: annotate 'shadowRadius' with '@MainActor' if property should only be accessed from the main actor
public static let shadowRadius = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.shadowRadius))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shadowRadius = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.shadowRadius))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:63:23: warning: static property 'sublayers' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<[CALayer]>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayers = AnimationKeyPath<[CALayer]>(keyPath: #keyPath(CALayer.sublayers))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:63:23: note: annotate 'sublayers' with '@MainActor' if property should only be accessed from the main actor
public static let sublayers = AnimationKeyPath<[CALayer]>(keyPath: #keyPath(CALayer.sublayers))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayers = AnimationKeyPath<[CALayer]>(keyPath: #keyPath(CALayer.sublayers))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:64:23: warning: static property 'sublayerTransform' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CATransform3D>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransform = AnimationKeyPath<CATransform3D>(keyPath: #keyPath(CALayer.sublayerTransform))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:64:23: note: annotate 'sublayerTransform' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransform = AnimationKeyPath<CATransform3D>(keyPath: #keyPath(CALayer.sublayerTransform))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransform = AnimationKeyPath<CATransform3D>(keyPath: #keyPath(CALayer.sublayerTransform))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:65:23: warning: static property 'transform' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CATransform3D>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transform = AnimationKeyPath<CATransform3D>(keyPath: #keyPath(CALayer.transform))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:65:23: note: annotate 'transform' with '@MainActor' if property should only be accessed from the main actor
public static let transform = AnimationKeyPath<CATransform3D>(keyPath: #keyPath(CALayer.transform))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transform = AnimationKeyPath<CATransform3D>(keyPath: #keyPath(CALayer.transform))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:66:23: warning: static property 'zPosition' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let zPosition = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.zPosition))
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:66:23: note: annotate 'zPosition' with '@MainActor' if property should only be accessed from the main actor
public static let zPosition = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.zPosition))
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let zPosition = AnimationKeyPath<CGFloat>(keyPath: #keyPath(CALayer.zPosition))
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:70:23: warning: static property 'anchorPointX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGPoint>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let anchorPointX = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.anchorPoint)).x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:70:23: note: annotate 'anchorPointX' with '@MainActor' if property should only be accessed from the main actor
public static let anchorPointX = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.anchorPoint)).x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let anchorPointX = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.anchorPoint)).x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:71:23: warning: static property 'anchorPointy' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGPoint>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let anchorPointy = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.anchorPoint)).y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:71:23: note: annotate 'anchorPointy' with '@MainActor' if property should only be accessed from the main actor
public static let anchorPointy = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.anchorPoint)).y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let anchorPointy = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.anchorPoint)).y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:75:23: warning: static property 'boundsOrigin' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGPoint>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let boundsOrigin = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.bounds)).origin")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:75:23: note: annotate 'boundsOrigin' with '@MainActor' if property should only be accessed from the main actor
public static let boundsOrigin = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.bounds)).origin")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let boundsOrigin = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.bounds)).origin")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:76:23: warning: static property 'boundsOriginX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let boundsOriginX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).origin.x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:76:23: note: annotate 'boundsOriginX' with '@MainActor' if property should only be accessed from the main actor
public static let boundsOriginX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).origin.x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let boundsOriginX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).origin.x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:77:23: warning: static property 'boundsOriginY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let boundsOriginY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).origin.y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:77:23: note: annotate 'boundsOriginY' with '@MainActor' if property should only be accessed from the main actor
public static let boundsOriginY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).origin.y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let boundsOriginY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).origin.y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:78:23: warning: static property 'boundsSize' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGSize>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let boundsSize = AnimationKeyPath<CGSize>(keyPath: "\(#keyPath(CALayer.bounds)).size")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:78:23: note: annotate 'boundsSize' with '@MainActor' if property should only be accessed from the main actor
public static let boundsSize = AnimationKeyPath<CGSize>(keyPath: "\(#keyPath(CALayer.bounds)).size")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let boundsSize = AnimationKeyPath<CGSize>(keyPath: "\(#keyPath(CALayer.bounds)).size")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:79:23: warning: static property 'boundsSizeWidth' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let boundsSizeWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).size.width")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:79:23: note: annotate 'boundsSizeWidth' with '@MainActor' if property should only be accessed from the main actor
public static let boundsSizeWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).size.width")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let boundsSizeWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).size.width")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:80:23: warning: static property 'boundsSizeHeight' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let boundsSizeHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).size.height")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:80:23: note: annotate 'boundsSizeHeight' with '@MainActor' if property should only be accessed from the main actor
public static let boundsSizeHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).size.height")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let boundsSizeHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.bounds)).size.height")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:85:23: warning: static property 'contentsRectOrigin' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGPoint>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let contentsRectOrigin = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.contentsRect)).origin")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:85:23: note: annotate 'contentsRectOrigin' with '@MainActor' if property should only be accessed from the main actor
public static let contentsRectOrigin = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.contentsRect)).origin")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:85:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let contentsRectOrigin = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.contentsRect)).origin")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:86:23: warning: static property 'contentsRectOriginX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let contentsRectOriginX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).origin.x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:86:23: note: annotate 'contentsRectOriginX' with '@MainActor' if property should only be accessed from the main actor
public static let contentsRectOriginX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).origin.x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let contentsRectOriginX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).origin.x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:87:23: warning: static property 'contentsRectOriginY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let contentsRectOriginY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).origin.y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:87:23: note: annotate 'contentsRectOriginY' with '@MainActor' if property should only be accessed from the main actor
public static let contentsRectOriginY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).origin.y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:87:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let contentsRectOriginY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).origin.y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:88:23: warning: static property 'contentsRectSize' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGSize>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let contentsRectSize = AnimationKeyPath<CGSize>(keyPath: "\(#keyPath(CALayer.contentsRect)).size")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:88:23: note: annotate 'contentsRectSize' with '@MainActor' if property should only be accessed from the main actor
public static let contentsRectSize = AnimationKeyPath<CGSize>(keyPath: "\(#keyPath(CALayer.contentsRect)).size")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:88:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let contentsRectSize = AnimationKeyPath<CGSize>(keyPath: "\(#keyPath(CALayer.contentsRect)).size")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:89:23: warning: static property 'contentsRectSizeWidth' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let contentsRectSizeWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).size.width")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:89:23: note: annotate 'contentsRectSizeWidth' with '@MainActor' if property should only be accessed from the main actor
public static let contentsRectSizeWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).size.width")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:89:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let contentsRectSizeWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).size.width")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:90:23: warning: static property 'contentsRectSizeHeight' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let contentsRectSizeHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).size.height")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:90:23: note: annotate 'contentsRectSizeHeight' with '@MainActor' if property should only be accessed from the main actor
public static let contentsRectSizeHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).size.height")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let contentsRectSizeHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.contentsRect)).size.height")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:94:23: warning: static property 'frameOrigin' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGPoint>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let frameOrigin = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.frame)).origin")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:94:23: note: annotate 'frameOrigin' with '@MainActor' if property should only be accessed from the main actor
public static let frameOrigin = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.frame)).origin")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let frameOrigin = AnimationKeyPath<CGPoint>(keyPath: "\(#keyPath(CALayer.frame)).origin")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:95:23: warning: static property 'frameOriginX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let frameOriginX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).origin.x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:95:23: note: annotate 'frameOriginX' with '@MainActor' if property should only be accessed from the main actor
public static let frameOriginX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).origin.x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:95:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let frameOriginX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).origin.x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:96:23: warning: static property 'frameOriginY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let frameOriginY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).origin.y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:96:23: note: annotate 'frameOriginY' with '@MainActor' if property should only be accessed from the main actor
public static let frameOriginY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).origin.y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:96:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let frameOriginY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).origin.y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:97:23: warning: static property 'frameSize' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGSize>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let frameSize = AnimationKeyPath<CGSize>(keyPath: "\(#keyPath(CALayer.frame)).size")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:97:23: note: annotate 'frameSize' with '@MainActor' if property should only be accessed from the main actor
public static let frameSize = AnimationKeyPath<CGSize>(keyPath: "\(#keyPath(CALayer.frame)).size")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:97:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let frameSize = AnimationKeyPath<CGSize>(keyPath: "\(#keyPath(CALayer.frame)).size")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:98:23: warning: static property 'frameSizeWidth' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let frameSizeWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).size.width")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:98:23: note: annotate 'frameSizeWidth' with '@MainActor' if property should only be accessed from the main actor
public static let frameSizeWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).size.width")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:98:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let frameSizeWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).size.width")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:99:23: warning: static property 'frameSizeHeight' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let frameSizeHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).size.height")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:99:23: note: annotate 'frameSizeHeight' with '@MainActor' if property should only be accessed from the main actor
public static let frameSizeHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).size.height")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:99:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let frameSizeHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.frame)).size.height")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:103:23: warning: static property 'positionX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let positionX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.position)).x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:103:23: note: annotate 'positionX' with '@MainActor' if property should only be accessed from the main actor
public static let positionX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.position)).x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:103:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let positionX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.position)).x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:104:23: warning: static property 'positionY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let positionY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.position)).y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:104:23: note: annotate 'positionY' with '@MainActor' if property should only be accessed from the main actor
public static let positionY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.position)).y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:104:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let positionY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.position)).y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:108:23: warning: static property 'shadowOffsetWidth' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shadowOffsetWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.shadowOffset)).width")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:108:23: note: annotate 'shadowOffsetWidth' with '@MainActor' if property should only be accessed from the main actor
public static let shadowOffsetWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.shadowOffset)).width")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:108:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shadowOffsetWidth = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.shadowOffset)).width")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:109:23: warning: static property 'shadowOffsetHeight' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shadowOffsetHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.shadowOffset)).height")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:109:23: note: annotate 'shadowOffsetHeight' with '@MainActor' if property should only be accessed from the main actor
public static let shadowOffsetHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.shadowOffset)).height")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shadowOffsetHeight = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.shadowOffset)).height")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:113:23: warning: static property 'sublayerTransformRotationX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransformRotationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).rotation.x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:113:23: note: annotate 'sublayerTransformRotationX' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransformRotationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).rotation.x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:113:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransformRotationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).rotation.x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:114:23: warning: static property 'sublayerTransformRotationY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransformRotationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).rotation.y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:114:23: note: annotate 'sublayerTransformRotationY' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransformRotationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).rotation.y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:114:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransformRotationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).rotation.y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:115:23: warning: static property 'sublayerTransformRotationZ' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransformRotationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).rotation.z")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:115:23: note: annotate 'sublayerTransformRotationZ' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransformRotationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).rotation.z")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransformRotationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).rotation.z")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:116:23: warning: static property 'sublayerTransformScaleX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransformScaleX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).scale.x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:116:23: note: annotate 'sublayerTransformScaleX' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransformScaleX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).scale.x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransformScaleX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).scale.x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:117:23: warning: static property 'sublayerTransformScaleY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransformScaleY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).scale.y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:117:23: note: annotate 'sublayerTransformScaleY' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransformScaleY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).scale.y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:117:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransformScaleY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).scale.y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:118:23: warning: static property 'sublayerTransformScaleZ' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransformScaleZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).scale.z")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:118:23: note: annotate 'sublayerTransformScaleZ' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransformScaleZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).scale.z")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransformScaleZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).scale.z")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:119:23: warning: static property 'sublayerTransformTranslationX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransformTranslationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).translation.x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:119:23: note: annotate 'sublayerTransformTranslationX' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransformTranslationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).translation.x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:119:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransformTranslationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).translation.x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:120:23: warning: static property 'sublayerTransformTranslationY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransformTranslationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).translation.y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:120:23: note: annotate 'sublayerTransformTranslationY' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransformTranslationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).translation.y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:120:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransformTranslationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).translation.y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:121:23: warning: static property 'sublayerTransformTranslationZ' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let sublayerTransformTranslationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).translation.z")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:121:23: note: annotate 'sublayerTransformTranslationZ' with '@MainActor' if property should only be accessed from the main actor
public static let sublayerTransformTranslationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).translation.z")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:121:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let sublayerTransformTranslationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.sublayerTransform)).translation.z")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:125:23: warning: static property 'transformRotationX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transformRotationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).rotation.x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:125:23: note: annotate 'transformRotationX' with '@MainActor' if property should only be accessed from the main actor
public static let transformRotationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).rotation.x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:125:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transformRotationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).rotation.x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:126:23: warning: static property 'transformRotationY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transformRotationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).rotation.y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:126:23: note: annotate 'transformRotationY' with '@MainActor' if property should only be accessed from the main actor
public static let transformRotationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).rotation.y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:126:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transformRotationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).rotation.y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:127:23: warning: static property 'transformRotationZ' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transformRotationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).rotation.z")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:127:23: note: annotate 'transformRotationZ' with '@MainActor' if property should only be accessed from the main actor
public static let transformRotationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).rotation.z")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transformRotationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).rotation.z")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:128:23: warning: static property 'transformScaleX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transformScaleX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).scale.x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:128:23: note: annotate 'transformScaleX' with '@MainActor' if property should only be accessed from the main actor
public static let transformScaleX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).scale.x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transformScaleX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).scale.x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:129:23: warning: static property 'transformScaleY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transformScaleY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).scale.y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:129:23: note: annotate 'transformScaleY' with '@MainActor' if property should only be accessed from the main actor
public static let transformScaleY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).scale.y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:129:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transformScaleY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).scale.y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:130:23: warning: static property 'transformScaleZ' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transformScaleZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).scale.z")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:130:23: note: annotate 'transformScaleZ' with '@MainActor' if property should only be accessed from the main actor
public static let transformScaleZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).scale.z")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:130:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transformScaleZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).scale.z")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:131:23: warning: static property 'transformTranslationX' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transformTranslationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).translation.x")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:131:23: note: annotate 'transformTranslationX' with '@MainActor' if property should only be accessed from the main actor
public static let transformTranslationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).translation.x")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:131:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transformTranslationX = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).translation.x")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:132:23: warning: static property 'transformTranslationY' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transformTranslationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).translation.y")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:132:23: note: annotate 'transformTranslationY' with '@MainActor' if property should only be accessed from the main actor
public static let transformTranslationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).translation.y")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:132:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transformTranslationY = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).translation.y")
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:133:23: warning: static property 'transformTranslationZ' is not concurrency-safe because non-'Sendable' type 'AnimationKeyPath<CGFloat>' may have shared mutable state; this is an error in the Swift 6 language mode
public static let transformTranslationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).translation.z")
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:21:20: note: generic class 'AnimationKeyPath' does not conform to the 'Sendable' protocol
public final class AnimationKeyPath<ValueType: AnimationValueType>: AnimationKeyPaths {
^
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:133:23: note: annotate 'transformTranslationZ' with '@MainActor' if property should only be accessed from the main actor
public static let transformTranslationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).translation.z")
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sica/Source/AnimationKeyPaths.swift:133:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let transformTranslationZ = AnimationKeyPath<CGFloat>(keyPath: "\(#keyPath(CALayer.transform)).translation.z")
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for Sica (in target 'Sica' from project 'Sica')
SwiftDriver\ Compilation\ Requirements Sica normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Sica -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Sica-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica-Swift.h (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/Sica-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.swiftmodule (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.swiftdoc (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.abi.json (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.swiftsourceinfo (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling View+Sica.swift (in target 'Sica' from project 'Sica')
SwiftDriverJobDiscovery normal arm64 Compiling Transition.swift (in target 'Sica' from project 'Sica')
SwiftDriverJobDiscovery normal arm64 Compiling FillMode.swift (in target 'Sica' from project 'Sica')
SwiftDriverJobDiscovery normal arm64 Compiling CALayer+Sica.swift (in target 'Sica' from project 'Sica')
SwiftDriverJobDiscovery normal arm64 Compiling CAAnimation+Extension.swift (in target 'Sica' from project 'Sica')
SwiftDriverJobDiscovery normal arm64 Compiling TimingFunction.swift (in target 'Sica' from project 'Sica')
SwiftDriverJobDiscovery normal arm64 Compiling Animator.swift (in target 'Sica' from project 'Sica')
SwiftDriverJobDiscovery normal arm64 Compiling AnimationKeyPaths.swift (in target 'Sica' from project 'Sica')
SwiftDriver\ Compilation Sica normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Sica -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.o normal (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Sica.build/Debug-appletvos/Sica.build/Objects-normal/arm64/Sica_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.o (in target 'Sica' from project 'Sica')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Sica.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Sica",
"name" : "Sica",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "9.0"
},
{
"name" : "macos",
"version" : "10.10"
},
{
"name" : "tvos",
"version" : "10.0"
}
],
"products" : [
{
"name" : "Sica",
"targets" : [
"Sica"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"4.2",
"5"
],
"targets" : [
{
"c99name" : "Sica",
"module_type" : "SwiftTarget",
"name" : "Sica",
"path" : "Sica/Source",
"product_memberships" : [
"Sica"
],
"sources" : [
"AnimationKeyPaths.swift",
"Animator.swift",
"CAAnimation+Extension.swift",
"CALayer+Sica.swift",
"FillMode.swift",
"TimingFunction.swift",
"Transition.swift",
"View+Sica.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Done.