Build Information
Successful build of Anima, reference main (edbde6), with Swift 6.1 for macOS (SPM) on 8 Feb 2026 21:30:38 UTC.
Swift 6 data race errors: 38
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCapturesBuild Log
| |- note: convert 'easeOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
202 | Easing.easeOutSine(x)
203 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:206:27: warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
204 |
205 | /// An `easeInEaseOutSine` timing function.
206 | public static var easeInEaseOutSine = TimingFunction("easeInEaseOutSine") { x in
| |- warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 | Easing.easeInEaseOutSine(x)
208 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:213:27: warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
211 |
212 | /// An `easeInExpo` timing function.
213 | public static var easeInExponential = TimingFunction("easeInExponential") { x in
| |- warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 | Easing.easeInExponential(x)
215 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:218:27: warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | /// An `easeOutExponential` timing function.
218 | public static var easeOutExponential = TimingFunction("easeOutExponential") { x in
| |- warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | Easing.easeOutExponential(x)
220 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:223:27: warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
221 |
222 | /// An `easeInEaseOutExponential` timing function.
223 | public static var easeInEaseOutExponential = TimingFunction("easeInEaseOutExponential") { x in
| |- warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | Easing.easeInEaseOutExponential(x)
225 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:230:27: warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
228 |
229 | /// An `easeInCircular` timing function.
230 | public static var easeInCircular = TimingFunction("easeInCircular") { x in
| |- warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 | Easing.easeInCircular(x)
232 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:235:27: warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
233 |
234 | /// An `easeOutCircular` timing function.
235 | public static var easeOutCircular = TimingFunction("easeOutCircullar") { x in
| |- warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 | Easing.easeOutCircular(x)
237 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:240:27: warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
238 |
239 | /// An `easeInEaseOutCircular` timing function.
240 | public static var easeInEaseOutCircular = TimingFunction("easeInEaseOutCircular") { x in
| |- warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
241 | Easing.easeInEaseOutCircular(x)
242 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:247:27: warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
245 |
246 | /// An `easeInBounce` timing function.
247 | public static var easeInBounce = TimingFunction("easeInBounce") { x in
| |- warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
248 | Easing.easeInBounce(x)
249 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:252:27: warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 |
251 | /// An `easeOutBounce` timing function.
252 | public static var easeOutBounce = TimingFunction("easeOutBounce") { x in
| |- warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | Easing.easeOutBounce(x)
254 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:257:27: warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
255 |
256 | /// An `easeInEaseOutBounce` timing function.
257 | public static var easeInEaseOutBounce = TimingFunction("easeInEaseOutBounce") { x in
| |- warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
258 | Easing.easeInEaseOutBounce(x)
259 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:264:27: warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
262 |
263 | /// An `easeInElastic` timing function.
264 | public static var easeInElastic = TimingFunction("easeInElastic") { x in
| |- warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
265 | Easing.easeInElastic(x)
266 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:269:27: warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
267 |
268 | /// An `easeOutElastic` timing function.
269 | public static var easeOutElastic = TimingFunction("easeOutElastic") { x in
| |- warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
270 | Easing.easeOutElastic(x)
271 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:274:27: warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
272 |
273 | /// An `easeInEaseOutElastic` timing function.
274 | public static var easeInEaseOutElastic = TimingFunction("easeInEaseOutElastic") { x in
| |- warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
275 | Easing.easeInEaseOutElastic(x)
276 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:281:27: warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
279 |
280 | /// An `easeInBack` timing function.
281 | public static var easeInBack = TimingFunction("easeInBack") { x in
| |- warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
282 | Easing.easeInBack(x)
283 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:286:27: warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
284 |
285 | /// An `easeOutBack` timing function.
286 | public static var easeOutBack = TimingFunction("easeOutBack") { x in
| |- warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | Easing.easeOutBack(x)
288 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:291:27: warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
289 |
290 | /// An `easeInEaseOutBack` timing function.
291 | public static var easeInEaseOutBack = TimingFunction("easeInEaseOutBack") { x in
| |- warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
292 | Easing.easeInEaseOutBack(x)
293 | }
[64/75] Compiling Anima Spring.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:128:27: warning: static property 'easeInQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |
127 | /// An `easeInQuadic` timing function.
128 | public static var easeInQuadic = TimingFunction("easeInQuadic") { x in
| |- warning: static property 'easeInQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | Easing.easeInQuadic(x)
130 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:133:27: warning: static property 'easeOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |
132 | /// An `easeOutQuadic` timing function.
133 | public static var easeOutQuadic = TimingFunction("easeOutQuadic") { x in
| |- warning: static property 'easeOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | Easing.easeOutQuadic(x)
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:138:27: warning: static property 'easeInEaseOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |
137 | /// An `easeInEaseOutQuadic` timing function.
138 | public static var easeInEaseOutQuadic = TimingFunction("easeInEaseOutQuadic") { x in
| |- warning: static property 'easeInEaseOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 | Easing.easeInEaseOutQuadic(x)
140 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:145:27: warning: static property 'easeInCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 |
144 | /// An `easeInCubic` timing function.
145 | public static var easeInCubic = TimingFunction("easeInCubic") { x in
| |- warning: static property 'easeInCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | Easing.easeInCubic(x)
147 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:150:27: warning: static property 'easeOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
148 |
149 | /// An `easeOutCubic` timing function.
150 | public static var easeOutCubic = TimingFunction("easeOutCubic") { x in
| |- warning: static property 'easeOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | Easing.easeOutCubic(x)
152 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:155:27: warning: static property 'easeInEaseOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
153 |
154 | /// An `easeInEaseOutCubic` timing function.
155 | public static var easeInEaseOutCubic = TimingFunction("easeInEaseOutCubic") { x in
| |- warning: static property 'easeInEaseOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | Easing.easeInEaseOutCubic(x)
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:162:27: warning: static property 'easeInQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
160 |
161 | /// An `easeInQuartic` timing function.
162 | public static var easeInQuartic = TimingFunction("easeInQuartic") { x in
| |- warning: static property 'easeInQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
163 | Easing.easeInQuartic(x)
164 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:167:27: warning: static property 'easeOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
165 |
166 | /// An `easeOutQuartic` timing function.
167 | public static var easeOutQuartic = TimingFunction("easeOutQuartic") { x in
| |- warning: static property 'easeOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | Easing.easeOutQuartic(x)
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:172:27: warning: static property 'easeInEaseOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
170 |
171 | /// An `easeInEaseOutQuartic` timing function.
172 | public static var easeInEaseOutQuartic = TimingFunction("easeInEaseOutQuartic") { x in
| |- warning: static property 'easeInEaseOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 | Easing.easeInEaseOutQuartic(x)
174 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:179:27: warning: static property 'easeInQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | /// An `easeInQuintic` timing function.
179 | public static var easeInQuintic = TimingFunction("easeInQuintic") { x in
| |- warning: static property 'easeInQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | Easing.easeInQuintic(x)
181 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:184:27: warning: static property 'easeOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
182 |
183 | /// An `easeOutQuintic` timing function.
184 | public static var easeOutQuintic = TimingFunction("easeOutQuintic") { x in
| |- warning: static property 'easeOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | Easing.easeOutQuintic(x)
186 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:189:27: warning: static property 'easeInEaseOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
187 |
188 | /// An `easeInEaseOutQuintic` timing function.
189 | public static var easeInEaseOutQuintic = TimingFunction("easeInEaseOutQuintic") { x in
| |- warning: static property 'easeInEaseOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
190 | Easing.easeInEaseOutQuintic(x)
191 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:196:27: warning: static property 'easeInSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |
195 | /// An `easeInSine` timing function.
196 | public static var easeInSine = TimingFunction("easeInSine") { x in
| |- warning: static property 'easeInSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 | Easing.easeInSine(x)
198 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:201:27: warning: static property 'easeOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
199 |
200 | /// An `easeOutSine` timing function.
201 | public static var easeOutSine = TimingFunction("easeOutSine") { x in
| |- warning: static property 'easeOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
202 | Easing.easeOutSine(x)
203 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:206:27: warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
204 |
205 | /// An `easeInEaseOutSine` timing function.
206 | public static var easeInEaseOutSine = TimingFunction("easeInEaseOutSine") { x in
| |- warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 | Easing.easeInEaseOutSine(x)
208 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:213:27: warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
211 |
212 | /// An `easeInExpo` timing function.
213 | public static var easeInExponential = TimingFunction("easeInExponential") { x in
| |- warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 | Easing.easeInExponential(x)
215 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:218:27: warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | /// An `easeOutExponential` timing function.
218 | public static var easeOutExponential = TimingFunction("easeOutExponential") { x in
| |- warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | Easing.easeOutExponential(x)
220 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:223:27: warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
221 |
222 | /// An `easeInEaseOutExponential` timing function.
223 | public static var easeInEaseOutExponential = TimingFunction("easeInEaseOutExponential") { x in
| |- warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | Easing.easeInEaseOutExponential(x)
225 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:230:27: warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
228 |
229 | /// An `easeInCircular` timing function.
230 | public static var easeInCircular = TimingFunction("easeInCircular") { x in
| |- warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 | Easing.easeInCircular(x)
232 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:235:27: warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
233 |
234 | /// An `easeOutCircular` timing function.
235 | public static var easeOutCircular = TimingFunction("easeOutCircullar") { x in
| |- warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 | Easing.easeOutCircular(x)
237 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:240:27: warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
238 |
239 | /// An `easeInEaseOutCircular` timing function.
240 | public static var easeInEaseOutCircular = TimingFunction("easeInEaseOutCircular") { x in
| |- warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
241 | Easing.easeInEaseOutCircular(x)
242 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:247:27: warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
245 |
246 | /// An `easeInBounce` timing function.
247 | public static var easeInBounce = TimingFunction("easeInBounce") { x in
| |- warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
248 | Easing.easeInBounce(x)
249 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:252:27: warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 |
251 | /// An `easeOutBounce` timing function.
252 | public static var easeOutBounce = TimingFunction("easeOutBounce") { x in
| |- warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | Easing.easeOutBounce(x)
254 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:257:27: warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
255 |
256 | /// An `easeInEaseOutBounce` timing function.
257 | public static var easeInEaseOutBounce = TimingFunction("easeInEaseOutBounce") { x in
| |- warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
258 | Easing.easeInEaseOutBounce(x)
259 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:264:27: warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
262 |
263 | /// An `easeInElastic` timing function.
264 | public static var easeInElastic = TimingFunction("easeInElastic") { x in
| |- warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
265 | Easing.easeInElastic(x)
266 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:269:27: warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
267 |
268 | /// An `easeOutElastic` timing function.
269 | public static var easeOutElastic = TimingFunction("easeOutElastic") { x in
| |- warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
270 | Easing.easeOutElastic(x)
271 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:274:27: warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
272 |
273 | /// An `easeInEaseOutElastic` timing function.
274 | public static var easeInEaseOutElastic = TimingFunction("easeInEaseOutElastic") { x in
| |- warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
275 | Easing.easeInEaseOutElastic(x)
276 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:281:27: warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
279 |
280 | /// An `easeInBack` timing function.
281 | public static var easeInBack = TimingFunction("easeInBack") { x in
| |- warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
282 | Easing.easeInBack(x)
283 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:286:27: warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
284 |
285 | /// An `easeOutBack` timing function.
286 | public static var easeOutBack = TimingFunction("easeOutBack") { x in
| |- warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | Easing.easeOutBack(x)
288 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:291:27: warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
289 |
290 | /// An `easeInEaseOutBack` timing function.
291 | public static var easeInEaseOutBack = TimingFunction("easeInEaseOutBack") { x in
| |- warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
292 | Easing.easeInEaseOutBack(x)
293 | }
[65/75] Compiling Anima SpringAnimation.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:128:27: warning: static property 'easeInQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |
127 | /// An `easeInQuadic` timing function.
128 | public static var easeInQuadic = TimingFunction("easeInQuadic") { x in
| |- warning: static property 'easeInQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | Easing.easeInQuadic(x)
130 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:133:27: warning: static property 'easeOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |
132 | /// An `easeOutQuadic` timing function.
133 | public static var easeOutQuadic = TimingFunction("easeOutQuadic") { x in
| |- warning: static property 'easeOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | Easing.easeOutQuadic(x)
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:138:27: warning: static property 'easeInEaseOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |
137 | /// An `easeInEaseOutQuadic` timing function.
138 | public static var easeInEaseOutQuadic = TimingFunction("easeInEaseOutQuadic") { x in
| |- warning: static property 'easeInEaseOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 | Easing.easeInEaseOutQuadic(x)
140 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:145:27: warning: static property 'easeInCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 |
144 | /// An `easeInCubic` timing function.
145 | public static var easeInCubic = TimingFunction("easeInCubic") { x in
| |- warning: static property 'easeInCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | Easing.easeInCubic(x)
147 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:150:27: warning: static property 'easeOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
148 |
149 | /// An `easeOutCubic` timing function.
150 | public static var easeOutCubic = TimingFunction("easeOutCubic") { x in
| |- warning: static property 'easeOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | Easing.easeOutCubic(x)
152 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:155:27: warning: static property 'easeInEaseOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
153 |
154 | /// An `easeInEaseOutCubic` timing function.
155 | public static var easeInEaseOutCubic = TimingFunction("easeInEaseOutCubic") { x in
| |- warning: static property 'easeInEaseOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | Easing.easeInEaseOutCubic(x)
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:162:27: warning: static property 'easeInQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
160 |
161 | /// An `easeInQuartic` timing function.
162 | public static var easeInQuartic = TimingFunction("easeInQuartic") { x in
| |- warning: static property 'easeInQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
163 | Easing.easeInQuartic(x)
164 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:167:27: warning: static property 'easeOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
165 |
166 | /// An `easeOutQuartic` timing function.
167 | public static var easeOutQuartic = TimingFunction("easeOutQuartic") { x in
| |- warning: static property 'easeOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | Easing.easeOutQuartic(x)
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:172:27: warning: static property 'easeInEaseOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
170 |
171 | /// An `easeInEaseOutQuartic` timing function.
172 | public static var easeInEaseOutQuartic = TimingFunction("easeInEaseOutQuartic") { x in
| |- warning: static property 'easeInEaseOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 | Easing.easeInEaseOutQuartic(x)
174 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:179:27: warning: static property 'easeInQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | /// An `easeInQuintic` timing function.
179 | public static var easeInQuintic = TimingFunction("easeInQuintic") { x in
| |- warning: static property 'easeInQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | Easing.easeInQuintic(x)
181 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:184:27: warning: static property 'easeOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
182 |
183 | /// An `easeOutQuintic` timing function.
184 | public static var easeOutQuintic = TimingFunction("easeOutQuintic") { x in
| |- warning: static property 'easeOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | Easing.easeOutQuintic(x)
186 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:189:27: warning: static property 'easeInEaseOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
187 |
188 | /// An `easeInEaseOutQuintic` timing function.
189 | public static var easeInEaseOutQuintic = TimingFunction("easeInEaseOutQuintic") { x in
| |- warning: static property 'easeInEaseOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
190 | Easing.easeInEaseOutQuintic(x)
191 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:196:27: warning: static property 'easeInSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |
195 | /// An `easeInSine` timing function.
196 | public static var easeInSine = TimingFunction("easeInSine") { x in
| |- warning: static property 'easeInSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 | Easing.easeInSine(x)
198 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:201:27: warning: static property 'easeOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
199 |
200 | /// An `easeOutSine` timing function.
201 | public static var easeOutSine = TimingFunction("easeOutSine") { x in
| |- warning: static property 'easeOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
202 | Easing.easeOutSine(x)
203 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:206:27: warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
204 |
205 | /// An `easeInEaseOutSine` timing function.
206 | public static var easeInEaseOutSine = TimingFunction("easeInEaseOutSine") { x in
| |- warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 | Easing.easeInEaseOutSine(x)
208 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:213:27: warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
211 |
212 | /// An `easeInExpo` timing function.
213 | public static var easeInExponential = TimingFunction("easeInExponential") { x in
| |- warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 | Easing.easeInExponential(x)
215 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:218:27: warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | /// An `easeOutExponential` timing function.
218 | public static var easeOutExponential = TimingFunction("easeOutExponential") { x in
| |- warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | Easing.easeOutExponential(x)
220 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:223:27: warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
221 |
222 | /// An `easeInEaseOutExponential` timing function.
223 | public static var easeInEaseOutExponential = TimingFunction("easeInEaseOutExponential") { x in
| |- warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | Easing.easeInEaseOutExponential(x)
225 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:230:27: warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
228 |
229 | /// An `easeInCircular` timing function.
230 | public static var easeInCircular = TimingFunction("easeInCircular") { x in
| |- warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 | Easing.easeInCircular(x)
232 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:235:27: warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
233 |
234 | /// An `easeOutCircular` timing function.
235 | public static var easeOutCircular = TimingFunction("easeOutCircullar") { x in
| |- warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 | Easing.easeOutCircular(x)
237 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:240:27: warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
238 |
239 | /// An `easeInEaseOutCircular` timing function.
240 | public static var easeInEaseOutCircular = TimingFunction("easeInEaseOutCircular") { x in
| |- warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
241 | Easing.easeInEaseOutCircular(x)
242 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:247:27: warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
245 |
246 | /// An `easeInBounce` timing function.
247 | public static var easeInBounce = TimingFunction("easeInBounce") { x in
| |- warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
248 | Easing.easeInBounce(x)
249 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:252:27: warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 |
251 | /// An `easeOutBounce` timing function.
252 | public static var easeOutBounce = TimingFunction("easeOutBounce") { x in
| |- warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | Easing.easeOutBounce(x)
254 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:257:27: warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
255 |
256 | /// An `easeInEaseOutBounce` timing function.
257 | public static var easeInEaseOutBounce = TimingFunction("easeInEaseOutBounce") { x in
| |- warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
258 | Easing.easeInEaseOutBounce(x)
259 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:264:27: warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
262 |
263 | /// An `easeInElastic` timing function.
264 | public static var easeInElastic = TimingFunction("easeInElastic") { x in
| |- warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
265 | Easing.easeInElastic(x)
266 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:269:27: warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
267 |
268 | /// An `easeOutElastic` timing function.
269 | public static var easeOutElastic = TimingFunction("easeOutElastic") { x in
| |- warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
270 | Easing.easeOutElastic(x)
271 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:274:27: warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
272 |
273 | /// An `easeInEaseOutElastic` timing function.
274 | public static var easeInEaseOutElastic = TimingFunction("easeInEaseOutElastic") { x in
| |- warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
275 | Easing.easeInEaseOutElastic(x)
276 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:281:27: warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
279 |
280 | /// An `easeInBack` timing function.
281 | public static var easeInBack = TimingFunction("easeInBack") { x in
| |- warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
282 | Easing.easeInBack(x)
283 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:286:27: warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
284 |
285 | /// An `easeOutBack` timing function.
286 | public static var easeOutBack = TimingFunction("easeOutBack") { x in
| |- warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | Easing.easeOutBack(x)
288 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:291:27: warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
289 |
290 | /// An `easeInEaseOutBack` timing function.
291 | public static var easeInEaseOutBack = TimingFunction("easeInEaseOutBack") { x in
| |- warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
292 | Easing.easeInEaseOutBack(x)
293 | }
[66/75] Compiling Anima AssociatedValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:128:27: warning: static property 'easeInQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |
127 | /// An `easeInQuadic` timing function.
128 | public static var easeInQuadic = TimingFunction("easeInQuadic") { x in
| |- warning: static property 'easeInQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | Easing.easeInQuadic(x)
130 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:133:27: warning: static property 'easeOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |
132 | /// An `easeOutQuadic` timing function.
133 | public static var easeOutQuadic = TimingFunction("easeOutQuadic") { x in
| |- warning: static property 'easeOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | Easing.easeOutQuadic(x)
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:138:27: warning: static property 'easeInEaseOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |
137 | /// An `easeInEaseOutQuadic` timing function.
138 | public static var easeInEaseOutQuadic = TimingFunction("easeInEaseOutQuadic") { x in
| |- warning: static property 'easeInEaseOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 | Easing.easeInEaseOutQuadic(x)
140 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:145:27: warning: static property 'easeInCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 |
144 | /// An `easeInCubic` timing function.
145 | public static var easeInCubic = TimingFunction("easeInCubic") { x in
| |- warning: static property 'easeInCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | Easing.easeInCubic(x)
147 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:150:27: warning: static property 'easeOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
148 |
149 | /// An `easeOutCubic` timing function.
150 | public static var easeOutCubic = TimingFunction("easeOutCubic") { x in
| |- warning: static property 'easeOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | Easing.easeOutCubic(x)
152 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:155:27: warning: static property 'easeInEaseOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
153 |
154 | /// An `easeInEaseOutCubic` timing function.
155 | public static var easeInEaseOutCubic = TimingFunction("easeInEaseOutCubic") { x in
| |- warning: static property 'easeInEaseOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | Easing.easeInEaseOutCubic(x)
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:162:27: warning: static property 'easeInQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
160 |
161 | /// An `easeInQuartic` timing function.
162 | public static var easeInQuartic = TimingFunction("easeInQuartic") { x in
| |- warning: static property 'easeInQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
163 | Easing.easeInQuartic(x)
164 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:167:27: warning: static property 'easeOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
165 |
166 | /// An `easeOutQuartic` timing function.
167 | public static var easeOutQuartic = TimingFunction("easeOutQuartic") { x in
| |- warning: static property 'easeOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | Easing.easeOutQuartic(x)
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:172:27: warning: static property 'easeInEaseOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
170 |
171 | /// An `easeInEaseOutQuartic` timing function.
172 | public static var easeInEaseOutQuartic = TimingFunction("easeInEaseOutQuartic") { x in
| |- warning: static property 'easeInEaseOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 | Easing.easeInEaseOutQuartic(x)
174 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:179:27: warning: static property 'easeInQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | /// An `easeInQuintic` timing function.
179 | public static var easeInQuintic = TimingFunction("easeInQuintic") { x in
| |- warning: static property 'easeInQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | Easing.easeInQuintic(x)
181 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:184:27: warning: static property 'easeOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
182 |
183 | /// An `easeOutQuintic` timing function.
184 | public static var easeOutQuintic = TimingFunction("easeOutQuintic") { x in
| |- warning: static property 'easeOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | Easing.easeOutQuintic(x)
186 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:189:27: warning: static property 'easeInEaseOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
187 |
188 | /// An `easeInEaseOutQuintic` timing function.
189 | public static var easeInEaseOutQuintic = TimingFunction("easeInEaseOutQuintic") { x in
| |- warning: static property 'easeInEaseOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
190 | Easing.easeInEaseOutQuintic(x)
191 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:196:27: warning: static property 'easeInSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |
195 | /// An `easeInSine` timing function.
196 | public static var easeInSine = TimingFunction("easeInSine") { x in
| |- warning: static property 'easeInSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 | Easing.easeInSine(x)
198 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:201:27: warning: static property 'easeOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
199 |
200 | /// An `easeOutSine` timing function.
201 | public static var easeOutSine = TimingFunction("easeOutSine") { x in
| |- warning: static property 'easeOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
202 | Easing.easeOutSine(x)
203 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:206:27: warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
204 |
205 | /// An `easeInEaseOutSine` timing function.
206 | public static var easeInEaseOutSine = TimingFunction("easeInEaseOutSine") { x in
| |- warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 | Easing.easeInEaseOutSine(x)
208 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:213:27: warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
211 |
212 | /// An `easeInExpo` timing function.
213 | public static var easeInExponential = TimingFunction("easeInExponential") { x in
| |- warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 | Easing.easeInExponential(x)
215 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:218:27: warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | /// An `easeOutExponential` timing function.
218 | public static var easeOutExponential = TimingFunction("easeOutExponential") { x in
| |- warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | Easing.easeOutExponential(x)
220 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:223:27: warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
221 |
222 | /// An `easeInEaseOutExponential` timing function.
223 | public static var easeInEaseOutExponential = TimingFunction("easeInEaseOutExponential") { x in
| |- warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | Easing.easeInEaseOutExponential(x)
225 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:230:27: warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
228 |
229 | /// An `easeInCircular` timing function.
230 | public static var easeInCircular = TimingFunction("easeInCircular") { x in
| |- warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 | Easing.easeInCircular(x)
232 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:235:27: warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
233 |
234 | /// An `easeOutCircular` timing function.
235 | public static var easeOutCircular = TimingFunction("easeOutCircullar") { x in
| |- warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 | Easing.easeOutCircular(x)
237 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:240:27: warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
238 |
239 | /// An `easeInEaseOutCircular` timing function.
240 | public static var easeInEaseOutCircular = TimingFunction("easeInEaseOutCircular") { x in
| |- warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
241 | Easing.easeInEaseOutCircular(x)
242 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:247:27: warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
245 |
246 | /// An `easeInBounce` timing function.
247 | public static var easeInBounce = TimingFunction("easeInBounce") { x in
| |- warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
248 | Easing.easeInBounce(x)
249 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:252:27: warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 |
251 | /// An `easeOutBounce` timing function.
252 | public static var easeOutBounce = TimingFunction("easeOutBounce") { x in
| |- warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | Easing.easeOutBounce(x)
254 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:257:27: warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
255 |
256 | /// An `easeInEaseOutBounce` timing function.
257 | public static var easeInEaseOutBounce = TimingFunction("easeInEaseOutBounce") { x in
| |- warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
258 | Easing.easeInEaseOutBounce(x)
259 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:264:27: warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
262 |
263 | /// An `easeInElastic` timing function.
264 | public static var easeInElastic = TimingFunction("easeInElastic") { x in
| |- warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
265 | Easing.easeInElastic(x)
266 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:269:27: warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
267 |
268 | /// An `easeOutElastic` timing function.
269 | public static var easeOutElastic = TimingFunction("easeOutElastic") { x in
| |- warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
270 | Easing.easeOutElastic(x)
271 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:274:27: warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
272 |
273 | /// An `easeInEaseOutElastic` timing function.
274 | public static var easeInEaseOutElastic = TimingFunction("easeInEaseOutElastic") { x in
| |- warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
275 | Easing.easeInEaseOutElastic(x)
276 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:281:27: warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
279 |
280 | /// An `easeInBack` timing function.
281 | public static var easeInBack = TimingFunction("easeInBack") { x in
| |- warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
282 | Easing.easeInBack(x)
283 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:286:27: warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
284 |
285 | /// An `easeOutBack` timing function.
286 | public static var easeOutBack = TimingFunction("easeOutBack") { x in
| |- warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | Easing.easeOutBack(x)
288 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:291:27: warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
289 |
290 | /// An `easeInEaseOutBack` timing function.
291 | public static var easeInEaseOutBack = TimingFunction("easeInEaseOutBack") { x in
| |- warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
292 | Easing.easeInEaseOutBack(x)
293 | }
[67/75] Compiling Anima CGColor+.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:128:27: warning: static property 'easeInQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
126 |
127 | /// An `easeInQuadic` timing function.
128 | public static var easeInQuadic = TimingFunction("easeInQuadic") { x in
| |- warning: static property 'easeInQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 | Easing.easeInQuadic(x)
130 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:133:27: warning: static property 'easeOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
131 |
132 | /// An `easeOutQuadic` timing function.
133 | public static var easeOutQuadic = TimingFunction("easeOutQuadic") { x in
| |- warning: static property 'easeOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
134 | Easing.easeOutQuadic(x)
135 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:138:27: warning: static property 'easeInEaseOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
136 |
137 | /// An `easeInEaseOutQuadic` timing function.
138 | public static var easeInEaseOutQuadic = TimingFunction("easeInEaseOutQuadic") { x in
| |- warning: static property 'easeInEaseOutQuadic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuadic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuadic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
139 | Easing.easeInEaseOutQuadic(x)
140 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:145:27: warning: static property 'easeInCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
143 |
144 | /// An `easeInCubic` timing function.
145 | public static var easeInCubic = TimingFunction("easeInCubic") { x in
| |- warning: static property 'easeInCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
146 | Easing.easeInCubic(x)
147 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:150:27: warning: static property 'easeOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
148 |
149 | /// An `easeOutCubic` timing function.
150 | public static var easeOutCubic = TimingFunction("easeOutCubic") { x in
| |- warning: static property 'easeOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 | Easing.easeOutCubic(x)
152 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:155:27: warning: static property 'easeInEaseOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
153 |
154 | /// An `easeInEaseOutCubic` timing function.
155 | public static var easeInEaseOutCubic = TimingFunction("easeInEaseOutCubic") { x in
| |- warning: static property 'easeInEaseOutCubic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutCubic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutCubic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | Easing.easeInEaseOutCubic(x)
157 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:162:27: warning: static property 'easeInQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
160 |
161 | /// An `easeInQuartic` timing function.
162 | public static var easeInQuartic = TimingFunction("easeInQuartic") { x in
| |- warning: static property 'easeInQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
163 | Easing.easeInQuartic(x)
164 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:167:27: warning: static property 'easeOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
165 |
166 | /// An `easeOutQuartic` timing function.
167 | public static var easeOutQuartic = TimingFunction("easeOutQuartic") { x in
| |- warning: static property 'easeOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
168 | Easing.easeOutQuartic(x)
169 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:172:27: warning: static property 'easeInEaseOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
170 |
171 | /// An `easeInEaseOutQuartic` timing function.
172 | public static var easeInEaseOutQuartic = TimingFunction("easeInEaseOutQuartic") { x in
| |- warning: static property 'easeInEaseOutQuartic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuartic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuartic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
173 | Easing.easeInEaseOutQuartic(x)
174 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:179:27: warning: static property 'easeInQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
177 |
178 | /// An `easeInQuintic` timing function.
179 | public static var easeInQuintic = TimingFunction("easeInQuintic") { x in
| |- warning: static property 'easeInQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | Easing.easeInQuintic(x)
181 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:184:27: warning: static property 'easeOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
182 |
183 | /// An `easeOutQuintic` timing function.
184 | public static var easeOutQuintic = TimingFunction("easeOutQuintic") { x in
| |- warning: static property 'easeOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
185 | Easing.easeOutQuintic(x)
186 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:189:27: warning: static property 'easeInEaseOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
187 |
188 | /// An `easeInEaseOutQuintic` timing function.
189 | public static var easeInEaseOutQuintic = TimingFunction("easeInEaseOutQuintic") { x in
| |- warning: static property 'easeInEaseOutQuintic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutQuintic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutQuintic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
190 | Easing.easeInEaseOutQuintic(x)
191 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:196:27: warning: static property 'easeInSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |
195 | /// An `easeInSine` timing function.
196 | public static var easeInSine = TimingFunction("easeInSine") { x in
| |- warning: static property 'easeInSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 | Easing.easeInSine(x)
198 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:201:27: warning: static property 'easeOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
199 |
200 | /// An `easeOutSine` timing function.
201 | public static var easeOutSine = TimingFunction("easeOutSine") { x in
| |- warning: static property 'easeOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
202 | Easing.easeOutSine(x)
203 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:206:27: warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
204 |
205 | /// An `easeInEaseOutSine` timing function.
206 | public static var easeInEaseOutSine = TimingFunction("easeInEaseOutSine") { x in
| |- warning: static property 'easeInEaseOutSine' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutSine' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutSine' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
207 | Easing.easeInEaseOutSine(x)
208 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:213:27: warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
211 |
212 | /// An `easeInExpo` timing function.
213 | public static var easeInExponential = TimingFunction("easeInExponential") { x in
| |- warning: static property 'easeInExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 | Easing.easeInExponential(x)
215 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:218:27: warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
216 |
217 | /// An `easeOutExponential` timing function.
218 | public static var easeOutExponential = TimingFunction("easeOutExponential") { x in
| |- warning: static property 'easeOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
219 | Easing.easeOutExponential(x)
220 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:223:27: warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
221 |
222 | /// An `easeInEaseOutExponential` timing function.
223 | public static var easeInEaseOutExponential = TimingFunction("easeInEaseOutExponential") { x in
| |- warning: static property 'easeInEaseOutExponential' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutExponential' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutExponential' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
224 | Easing.easeInEaseOutExponential(x)
225 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:230:27: warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
228 |
229 | /// An `easeInCircular` timing function.
230 | public static var easeInCircular = TimingFunction("easeInCircular") { x in
| |- warning: static property 'easeInCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
231 | Easing.easeInCircular(x)
232 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:235:27: warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
233 |
234 | /// An `easeOutCircular` timing function.
235 | public static var easeOutCircular = TimingFunction("easeOutCircullar") { x in
| |- warning: static property 'easeOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 | Easing.easeOutCircular(x)
237 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:240:27: warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
238 |
239 | /// An `easeInEaseOutCircular` timing function.
240 | public static var easeInEaseOutCircular = TimingFunction("easeInEaseOutCircular") { x in
| |- warning: static property 'easeInEaseOutCircular' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutCircular' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutCircular' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
241 | Easing.easeInEaseOutCircular(x)
242 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:247:27: warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
245 |
246 | /// An `easeInBounce` timing function.
247 | public static var easeInBounce = TimingFunction("easeInBounce") { x in
| |- warning: static property 'easeInBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
248 | Easing.easeInBounce(x)
249 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:252:27: warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
250 |
251 | /// An `easeOutBounce` timing function.
252 | public static var easeOutBounce = TimingFunction("easeOutBounce") { x in
| |- warning: static property 'easeOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
253 | Easing.easeOutBounce(x)
254 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:257:27: warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
255 |
256 | /// An `easeInEaseOutBounce` timing function.
257 | public static var easeInEaseOutBounce = TimingFunction("easeInEaseOutBounce") { x in
| |- warning: static property 'easeInEaseOutBounce' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBounce' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBounce' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
258 | Easing.easeInEaseOutBounce(x)
259 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:264:27: warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
262 |
263 | /// An `easeInElastic` timing function.
264 | public static var easeInElastic = TimingFunction("easeInElastic") { x in
| |- warning: static property 'easeInElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
265 | Easing.easeInElastic(x)
266 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:269:27: warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
267 |
268 | /// An `easeOutElastic` timing function.
269 | public static var easeOutElastic = TimingFunction("easeOutElastic") { x in
| |- warning: static property 'easeOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
270 | Easing.easeOutElastic(x)
271 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:274:27: warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
272 |
273 | /// An `easeInEaseOutElastic` timing function.
274 | public static var easeInEaseOutElastic = TimingFunction("easeInEaseOutElastic") { x in
| |- warning: static property 'easeInEaseOutElastic' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutElastic' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutElastic' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
275 | Easing.easeInEaseOutElastic(x)
276 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:281:27: warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
279 |
280 | /// An `easeInBack` timing function.
281 | public static var easeInBack = TimingFunction("easeInBack") { x in
| |- warning: static property 'easeInBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
282 | Easing.easeInBack(x)
283 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:286:27: warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
284 |
285 | /// An `easeOutBack` timing function.
286 | public static var easeOutBack = TimingFunction("easeOutBack") { x in
| |- warning: static property 'easeOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
287 | Easing.easeOutBack(x)
288 | }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Animations/Easing/TimingFunction.swift:291:27: warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
289 |
290 | /// An `easeInEaseOutBack` timing function.
291 | public static var easeInEaseOutBack = TimingFunction("easeInEaseOutBack") { x in
| |- warning: static property 'easeInEaseOutBack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'easeInEaseOutBack' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'easeInEaseOutBack' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
292 | Easing.easeInEaseOutBack(x)
293 | }
[68/75] Compiling Anima Anima+AnimationConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// Manages the animations of ``Anima``.
16 | class AnimationController {
| `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
17 |
18 | static let shared = AnimationController()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:200:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
198 | }
199 |
200 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
201 | public init(_ animatableData: AnimatableArray<Double>) {
202 | self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:216:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
214 |
215 | #if os(macOS)
216 | extension NSEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
217 | public var animatableData: AnimatableArray<Double> {
218 | get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:247:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
245 | #endif
246 |
247 | extension CGVector: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
248 | public var animatableData: AnimatableArray<Double> {
249 | get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:262:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
260 | }
261 |
262 | extension CATransform3D: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(_ animatableData: AnimatableArray<Double>) {
264 | self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:334:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
332 | }
333 |
334 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
335 | public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
336 | self.init(animatableData.elements.compactMap { Element($0) })
[69/75] Compiling Anima Anima+AnimationOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// Manages the animations of ``Anima``.
16 | class AnimationController {
| `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
17 |
18 | static let shared = AnimationController()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:200:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
198 | }
199 |
200 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
201 | public init(_ animatableData: AnimatableArray<Double>) {
202 | self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:216:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
214 |
215 | #if os(macOS)
216 | extension NSEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
217 | public var animatableData: AnimatableArray<Double> {
218 | get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:247:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
245 | #endif
246 |
247 | extension CGVector: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
248 | public var animatableData: AnimatableArray<Double> {
249 | get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:262:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
260 | }
261 |
262 | extension CATransform3D: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(_ animatableData: AnimatableArray<Double>) {
264 | self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:334:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
332 | }
333 |
334 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
335 | public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
336 | self.init(animatableData.elements.compactMap { Element($0) })
[70/75] Compiling Anima Anima+AnimationState.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// Manages the animations of ``Anima``.
16 | class AnimationController {
| `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
17 |
18 | static let shared = AnimationController()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:200:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
198 | }
199 |
200 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
201 | public init(_ animatableData: AnimatableArray<Double>) {
202 | self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:216:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
214 |
215 | #if os(macOS)
216 | extension NSEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
217 | public var animatableData: AnimatableArray<Double> {
218 | get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:247:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
245 | #endif
246 |
247 | extension CGVector: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
248 | public var animatableData: AnimatableArray<Double> {
249 | get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:262:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
260 | }
261 |
262 | extension CATransform3D: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(_ animatableData: AnimatableArray<Double>) {
264 | self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:334:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
332 | }
333 |
334 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
335 | public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
336 | self.init(animatableData.elements.compactMap { Element($0) })
[71/75] Compiling Anima Anima+ColorSpace.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// Manages the animations of ``Anima``.
16 | class AnimationController {
| `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
17 |
18 | static let shared = AnimationController()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:200:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
198 | }
199 |
200 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
201 | public init(_ animatableData: AnimatableArray<Double>) {
202 | self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:216:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
214 |
215 | #if os(macOS)
216 | extension NSEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
217 | public var animatableData: AnimatableArray<Double> {
218 | get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:247:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
245 | #endif
246 |
247 | extension CGVector: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
248 | public var animatableData: AnimatableArray<Double> {
249 | get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:262:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
260 | }
261 |
262 | extension CATransform3D: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(_ animatableData: AnimatableArray<Double>) {
264 | self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:334:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
332 | }
333 |
334 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
335 | public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
336 | self.init(animatableData.elements.compactMap { Element($0) })
[72/75] Compiling Anima Anima.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// Manages the animations of ``Anima``.
16 | class AnimationController {
| `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
17 |
18 | static let shared = AnimationController()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:200:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
198 | }
199 |
200 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
201 | public init(_ animatableData: AnimatableArray<Double>) {
202 | self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:216:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
214 |
215 | #if os(macOS)
216 | extension NSEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
217 | public var animatableData: AnimatableArray<Double> {
218 | get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:247:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
245 | #endif
246 |
247 | extension CGVector: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
248 | public var animatableData: AnimatableArray<Double> {
249 | get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:262:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
260 | }
261 |
262 | extension CATransform3D: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(_ animatableData: AnimatableArray<Double>) {
264 | self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:334:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
332 | }
333 |
334 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
335 | public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
336 | self.init(animatableData.elements.compactMap { Element($0) })
[73/75] Compiling Anima AnimationController.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// Manages the animations of ``Anima``.
16 | class AnimationController {
| `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
17 |
18 | static let shared = AnimationController()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:200:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
198 | }
199 |
200 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
201 | public init(_ animatableData: AnimatableArray<Double>) {
202 | self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:216:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
214 |
215 | #if os(macOS)
216 | extension NSEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
217 | public var animatableData: AnimatableArray<Double> {
218 | get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:247:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
245 | #endif
246 |
247 | extension CGVector: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
248 | public var animatableData: AnimatableArray<Double> {
249 | get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:262:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
260 | }
261 |
262 | extension CATransform3D: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(_ animatableData: AnimatableArray<Double>) {
264 | self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:334:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
332 | }
333 |
334 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
335 | public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
336 | self.init(animatableData.elements.compactMap { Element($0) })
[74/75] Compiling Anima AnimatableArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// Manages the animations of ``Anima``.
16 | class AnimationController {
| `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
17 |
18 | static let shared = AnimationController()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:200:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
198 | }
199 |
200 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
201 | public init(_ animatableData: AnimatableArray<Double>) {
202 | self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:216:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
214 |
215 | #if os(macOS)
216 | extension NSEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
217 | public var animatableData: AnimatableArray<Double> {
218 | get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:247:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
245 | #endif
246 |
247 | extension CGVector: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
248 | public var animatableData: AnimatableArray<Double> {
249 | get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:262:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
260 | }
261 |
262 | extension CATransform3D: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(_ animatableData: AnimatableArray<Double>) {
264 | self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:334:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
332 | }
333 |
334 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
335 | public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
336 | self.init(animatableData.elements.compactMap { Element($0) })
[75/75] Compiling Anima AnimatableProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/Anima/Anima/AnimationController.swift:18:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
14 |
15 | /// Manages the animations of ``Anima``.
16 | class AnimationController {
| `- note: class 'AnimationController' does not conform to the 'Sendable' protocol
17 |
18 | static let shared = AnimationController()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AnimationController' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | private var displayLink: AnyCancellable?
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:200:1: warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
198 | }
199 |
200 | extension NSDirectionalEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSDirectionalEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'AppKit' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
201 | public init(_ animatableData: AnimatableArray<Double>) {
202 | self.init(top: animatableData[0], leading: animatableData[1], bottom: animatableData[2], trailing: animatableData[3])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:216:5: warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
214 |
215 | #if os(macOS)
216 | extension NSEdgeInsets: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'NSEdgeInsets' to imported protocols 'Equatable', 'Animatable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
217 | public var animatableData: AnimatableArray<Double> {
218 | get { [top, left, bottom, right] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:247:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
245 | #endif
246 |
247 | extension CGVector: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
248 | public var animatableData: AnimatableArray<Double> {
249 | get { [dx, dy] }
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:262:1: warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
260 | }
261 |
262 | extension CATransform3D: AnimatableProperty, Animatable {
| |- warning: extension declares a conformance of imported type 'CATransform3D' to imported protocol 'Animatable'; this will not behave correctly if the owners of 'QuartzCore' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
263 | public init(_ animatableData: AnimatableArray<Double>) {
264 | self.init(m11: animatableData[0], m12: animatableData[1], m13: animatableData[2], m14: animatableData[3], m21: animatableData[4], m22: animatableData[5], m23: animatableData[6], m24: animatableData[7], m31: animatableData[8], m32: animatableData[9], m33: animatableData[10], m34: animatableData[11], m41: animatableData[12], m42: animatableData[13], m43: animatableData[14], m44: animatableData[15])
/Users/admin/builder/spi-builder-workspace/Sources/Anima/AnimatableProperty/AnimatableProperty.swift:334:1: warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
332 | }
333 |
334 | extension Array: AnimatableProperty, AdditiveArithmetic, VectorArithmetic where Element: AnimatableProperty {
| |- warning: extension declares a conformance of imported type 'Array' to imported protocols 'AdditiveArithmetic', 'VectorArithmetic'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
335 | public init(_ animatableData: AnimatableArray<Element.AnimatableData>) {
336 | self.init(animatableData.elements.compactMap { Element($0) })
Build complete! (8.59s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Anima",
"name" : "Anima",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "Anima",
"targets" : [
"Anima"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AnimaTests",
"module_type" : "SwiftTarget",
"name" : "AnimaTests",
"path" : "Tests/AnimaTests",
"sources" : [
"AnimaTests.swift"
],
"target_dependencies" : [
"Anima"
],
"type" : "test"
},
{
"c99name" : "Anima",
"module_type" : "SwiftTarget",
"name" : "Anima",
"path" : "Sources/Anima",
"product_memberships" : [
"Anima"
],
"sources" : [
"Anima/Anima+AnimationConfiguration.swift",
"Anima/Anima+AnimationOptions.swift",
"Anima/Anima+AnimationState.swift",
"Anima/Anima+ColorSpace.swift",
"Anima/Anima.swift",
"Anima/AnimationController.swift",
"AnimatableProperty/AnimatableArray.swift",
"AnimatableProperty/AnimatableProperty.swift",
"AnimatablePropertyProvider/AnimatablePropertyProvider.swift",
"AnimatablePropertyProvider/AnimationProvider.swift",
"AnimatablePropertyProvider/PropertyAnimator+Layer.swift",
"AnimatablePropertyProvider/PropertyAnimator+Layout.swift",
"AnimatablePropertyProvider/PropertyAnimator+Popover.swift",
"AnimatablePropertyProvider/PropertyAnimator+View.swift",
"AnimatablePropertyProvider/PropertyAnimator+Window.swift",
"AnimatablePropertyProvider/PropertyAnimator.swift",
"Animations/Base/BaseAnimation.swift",
"Animations/Base/ValueAnimation.swift",
"Animations/Cubic/CubicAnimation.swift",
"Animations/Cubic/CubicFunction.swift",
"Animations/Decay/DecayAnimation.swift",
"Animations/Decay/DecayFunction.swift",
"Animations/Easing/EasingAnimation.swift",
"Animations/Easing/TimingFunction.swift",
"Animations/Misc/ColorAnimation.swift",
"Animations/Misc/Keyframe.swift",
"Animations/Spring/Spring.swift",
"Animations/Spring/SpringAnimation.swift",
"Extensions/AssociatedValue.swift",
"Extensions/Colors/CGColor+.swift",
"Extensions/Colors/NSUIColor+.swift",
"Extensions/CoreAnimation/CALayer+.swift",
"Extensions/CoreAnimation/CAMediaTimingFunction+.swift",
"Extensions/CoreAnimation/CATransform3D+.swift",
"Extensions/CoreAnimation/InnerShadowLayer.swift",
"Extensions/DisplayLink+Combine.swift",
"Extensions/KVO/KeyValueObserver.swift",
"Extensions/KVO/NSObject+Observe.swift",
"Extensions/KVO/NotificationCenter+.swift",
"Extensions/KeyPath+.swift",
"Extensions/Math & Geometry/ApproximateEquatable.swift",
"Extensions/Math & Geometry/CVTimeStamp+.swift",
"Extensions/Math & Geometry/Comparable+Clamp.swift",
"Extensions/Math & Geometry/CoreGraphics+.swift",
"Extensions/Math & Geometry/NSUIBezierpath+.swift",
"Extensions/Math & Geometry/NSUIEdgeInset+.swift",
"Extensions/Math & Geometry/NSValue+.swift",
"Extensions/Math & Geometry/Number+FloatInitializable.swift",
"Extensions/Math & Geometry/Sequence+Sort.swift",
"Extensions/Math & Geometry/TimeInterval+.swift",
"Extensions/Math & Geometry/VectorArithmetic+.swift",
"Extensions/NSUI Typealias.swift",
"Extensions/Optional.swift",
"Extensions/SIMD+.swift",
"Extensions/Views/NSScrollView+.swift",
"Extensions/Views/NSUIScrollView+.swift",
"Extensions/Views/NSUITextField+.swift",
"Extensions/Views/NSUIView+.swift",
"Misc/CAKeyFrameAnimation/CAKeyframeAnimationEmittable+Layer.swift",
"Misc/CAKeyFrameAnimation/CAKeyframeAnimationEmittable.swift",
"Misc/CAKeyFrameAnimation/CAKeyframeAnimationValueConvertible.swift",
"Misc/ColorMath.swift",
"Misc/ContentConfiguration/BorderConfiguration.swift",
"Misc/ContentConfiguration/ShadowConfiguration.swift",
"Misc/Decomposed/CALayerExtensions.swift",
"Misc/Decomposed/CATransform3DExtensions.swift",
"Misc/Decomposed/CGFloatVectorTypes.swift",
"Misc/Decomposed/SIMDConvenienceExtensions.swift",
"Misc/Decomposed/SIMDDecomposed.swift",
"Misc/Rotation.swift",
"Misc/Rubberband.swift",
"Misc/Scale.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.