The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of ShuffleIt, reference v2.1.3 (e0e707), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 18:47:51 UTC.

Swift 6 data race errors: 73

Build Command

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

Build Log

 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDeckDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck scale.
 4 | struct ShuffleDeckScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.07
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle deck animation.
29 | struct ShuffleDeckAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleDeckAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle deck context.
14 | struct ShuffleDeckContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleDeckContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDeckDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck scale.
 4 | struct ShuffleDeckScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.07
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle animation.
29 | struct ShuffleAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle context.
14 | struct ShuffleContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle animation.
29 | struct ShuffleAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle context.
14 | struct ShuffleContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
[183/229] Compiling ShuffleIt ShuffleContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle animation.
29 | struct ShuffleAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle context.
14 | struct ShuffleContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
[184/229] Compiling ShuffleIt ShuffleDiabled.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle animation.
29 | struct ShuffleAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle context.
14 | struct ShuffleContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for shuffle deck style.
12 | struct ShuffleDeckStyleKey: EnvironmentKey {
13 |     static var defaultValue: ShuffleDeckStyle = .finiteShuffle
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck translation.
 4 | struct ShuffleDeckTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle deck trigger.
13 | struct ShuffleDeckTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for shuffle deck style.
12 | struct ShuffleDeckStyleKey: EnvironmentKey {
13 |     static var defaultValue: ShuffleDeckStyle = .finiteShuffle
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck translation.
 4 | struct ShuffleDeckTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle deck trigger.
13 | struct ShuffleDeckTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for shuffle deck style.
12 | struct ShuffleDeckStyleKey: EnvironmentKey {
13 |     static var defaultValue: ShuffleDeckStyle = .finiteShuffle
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck translation.
 4 | struct ShuffleDeckTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle deck trigger.
13 | struct ShuffleDeckTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for shuffle deck style.
12 | struct ShuffleDeckStyleKey: EnvironmentKey {
13 |     static var defaultValue: ShuffleDeckStyle = .finiteShuffle
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck translation.
 4 | struct ShuffleDeckTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle deck trigger.
13 | struct ShuffleDeckTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[195/229] Compiling ShuffleIt ShuffleStack+Data.swift
[196/229] Compiling ShuffleIt ShuffleStack+Gesture.swift
[197/229] Compiling ShuffleIt ShuffleStack+Shuffling.swift
[198/229] Compiling ShuffleIt ShuffleStack.swift
[199/229] Compiling ViewInspector Inspector.swift
[200/229] Compiling ViewInspector LazyGroup.swift
[201/229] Compiling ViewInspector AccessibilityModifiers.swift
[202/229] Compiling ViewInspector AnimationModifiers.swift
[203/229] Compiling ViewInspector ConfigurationModifiers.swift
[204/229] Compiling ViewInspector CustomStyleModifiers.swift
[205/229] Compiling ViewInspector EnvironmentModifiers.swift
[206/229] Compiling CarouselStack CarouselStack.swift
[207/229] Compiling ShuffleStack ShuffleStack.swift
[208/229] Compiling ShuffleDeck ShuffleDeck.swift
[218/229] Compiling ViewInspector TouchBar.swift
[219/229] Compiling ViewInspector TreeView.swift
[220/229] Compiling ViewInspector TupleView.swift
[221/229] Compiling ViewInspector UnaryViewAdaptor.swift
[222/229] Compiling ViewInspector VSplitView.swift
[223/229] Compiling ViewInspector VStack.swift
[224/229] Compiling ViewInspector VideoPlayer.swift
[225/229] Compiling ViewInspector ViewThatFits.swift
[226/229] Compiling ViewInspector ZStack.swift
[227/229] Compiling ViewInspector ViewHosting.swift
[228/229] Compiling ViewInspector ViewSearch.swift
[229/229] Compiling ViewInspector ViewSearchIndex.swift
[230/231] Emitting module UtilsForTest
[231/231] Compiling UtilsForTest Inspection.swift
[232/271] Compiling ShuffleItForTest ShuffleDeckStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for shuffle deck style.
12 | struct ShuffleDeckStyleKey: EnvironmentKey {
13 |     static var defaultValue: ShuffleDeckStyle = .finiteShuffle
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck translation.
 4 | struct ShuffleDeckTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle deck trigger.
13 | struct ShuffleDeckTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[233/271] Compiling ShuffleItForTest ShuffleDeckTranslation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for shuffle deck style.
12 | struct ShuffleDeckStyleKey: EnvironmentKey {
13 |     static var defaultValue: ShuffleDeckStyle = .finiteShuffle
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck translation.
 4 | struct ShuffleDeckTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle deck trigger.
13 | struct ShuffleDeckTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[234/271] Compiling ShuffleItForTest ShuffleDeckTrigger.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for shuffle deck style.
12 | struct ShuffleDeckStyleKey: EnvironmentKey {
13 |     static var defaultValue: ShuffleDeckStyle = .finiteShuffle
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck translation.
 4 | struct ShuffleDeckTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle deck trigger.
13 | struct ShuffleDeckTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[235/271] Compiling ShuffleItForTest ShuffleDeck+View.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for shuffle deck style.
12 | struct ShuffleDeckStyleKey: EnvironmentKey {
13 |     static var defaultValue: ShuffleDeckStyle = .finiteShuffle
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck translation.
 4 | struct ShuffleDeckTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle deck trigger.
13 | struct ShuffleDeckTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[236/271] Compiling ShuffleItForTest ShuffleDeckAnimation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle deck animation.
29 | struct ShuffleDeckAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleDeckAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle deck context.
14 | struct ShuffleDeckContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleDeckContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDeckDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck scale.
 4 | struct ShuffleDeckScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.07
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
[237/271] Compiling ShuffleItForTest ShuffleDeckContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle deck animation.
29 | struct ShuffleDeckAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleDeckAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle deck context.
14 | struct ShuffleDeckContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleDeckContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDeckDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck scale.
 4 | struct ShuffleDeckScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.07
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
[238/271] Compiling ShuffleItForTest ShuffleDeckDisabled.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle deck animation.
29 | struct ShuffleDeckAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleDeckAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle deck context.
14 | struct ShuffleDeckContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleDeckContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDeckDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck scale.
 4 | struct ShuffleDeckScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.07
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
[239/271] Compiling ShuffleItForTest ShuffleDeckScale.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle deck animation.
29 | struct ShuffleDeckAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleDeckAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle deck context.
14 | struct ShuffleDeckContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleDeckContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDeckDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck scale.
 4 | struct ShuffleDeckScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.07
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
[240/275] Compiling ShuffleItForTest ShuffleOffset.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleOffset.swift:6:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// An environment key for shuffle stack offset.
 5 | struct ShuffleOffsetKey: EnvironmentKey {
 6 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 | }
 8 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShufflePadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack padding.
 4 | struct ShufflePaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack scale.
 4 | struct ShuffleScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.95
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleStyle.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle style.
14 | struct ShuffleStyleKey: EnvironmentKey {
15 |     static var defaultValue: ShuffleStyle = .slide
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
[241/275] Compiling ShuffleItForTest ShufflePadding.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleOffset.swift:6:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// An environment key for shuffle stack offset.
 5 | struct ShuffleOffsetKey: EnvironmentKey {
 6 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 | }
 8 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShufflePadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack padding.
 4 | struct ShufflePaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack scale.
 4 | struct ShuffleScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.95
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleStyle.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle style.
14 | struct ShuffleStyleKey: EnvironmentKey {
15 |     static var defaultValue: ShuffleStyle = .slide
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
[242/275] Compiling ShuffleItForTest ShuffleScale.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleOffset.swift:6:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// An environment key for shuffle stack offset.
 5 | struct ShuffleOffsetKey: EnvironmentKey {
 6 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 | }
 8 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShufflePadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack padding.
 4 | struct ShufflePaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack scale.
 4 | struct ShuffleScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.95
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleStyle.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle style.
14 | struct ShuffleStyleKey: EnvironmentKey {
15 |     static var defaultValue: ShuffleStyle = .slide
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
[243/275] Compiling ShuffleItForTest ShuffleStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleOffset.swift:6:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// An environment key for shuffle stack offset.
 5 | struct ShuffleOffsetKey: EnvironmentKey {
 6 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 | }
 8 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShufflePadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack padding.
 4 | struct ShufflePaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack scale.
 4 | struct ShuffleScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.95
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleStyle.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle style.
14 | struct ShuffleStyleKey: EnvironmentKey {
15 |     static var defaultValue: ShuffleStyle = .slide
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
[244/275] Compiling ShuffleItForTest CarouselSpacing.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[245/275] Compiling ShuffleItForTest CarouselStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[246/275] Compiling ShuffleItForTest CarouselTranslation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[247/275] Compiling ShuffleItForTest CarouselTrigger.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[248/275] Compiling ShuffleItForTest CarouselStack+View.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[249/275] Emitting module ShuffleItForTest
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for carousel animation.
29 | struct CarouselAnimationKey: EnvironmentKey {
30 |     static var defaultValue: CarouselAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for carousel context.
14 | struct CarouselContextKey: EnvironmentKey {
15 |     static var defaultValue: ((CarouselContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct CarouselDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselPadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel padding.
 4 | struct CarouselPaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 20
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselSpacing.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel spacing.
 4 | struct CarouselSpacingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 10
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for carousel style.
12 | struct CarouselStyleKey: EnvironmentKey {
13 |     static var defaultValue: CarouselStyle = .finiteScroll
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel translation.
 4 | struct CarouselTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for carousel trigger.
13 | struct CarouselTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<CarouselDirection, Never> = Empty<CarouselDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle deck animation.
29 | struct ShuffleDeckAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleDeckAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle deck context.
14 | struct ShuffleDeckContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleDeckContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDeckDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck scale.
 4 | struct ShuffleDeckScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.07
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift:13:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | /// An environment key for shuffle deck style.
12 | struct ShuffleDeckStyleKey: EnvironmentKey {
13 |     static var defaultValue: ShuffleDeckStyle = .finiteShuffle
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle deck translation.
 4 | struct ShuffleDeckTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle deck trigger.
13 | struct ShuffleDeckTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDeckDirection, Never> = Empty<ShuffleDeckDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle animation.
29 | struct ShuffleAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle context.
14 | struct ShuffleContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleOffset.swift:6:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 4 | /// An environment key for shuffle stack offset.
 5 | struct ShuffleOffsetKey: EnvironmentKey {
 6 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 7 | }
 8 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShufflePadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack padding.
 4 | struct ShufflePaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 15
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleScale.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for shuffle stack scale.
 4 | struct ShuffleScaleKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 0.95
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleStyle.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle style.
14 | struct ShuffleStyleKey: EnvironmentKey {
15 |     static var defaultValue: ShuffleStyle = .slide
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for suffle translation.
 4 | struct ShuffleTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle trigger.
13 | struct ShuffleTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDirection, Never> = Empty<ShuffleDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[250/275] Compiling ShuffleItForTest ShuffleTranslation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for suffle translation.
 4 | struct ShuffleTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle trigger.
13 | struct ShuffleTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDirection, Never> = Empty<ShuffleDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[251/275] Compiling ShuffleItForTest ShuffleTrigger.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for suffle translation.
 4 | struct ShuffleTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle trigger.
13 | struct ShuffleTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDirection, Never> = Empty<ShuffleDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[252/275] Compiling ShuffleItForTest ShuffleStack+View.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for suffle translation.
 4 | struct ShuffleTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle trigger.
13 | struct ShuffleTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDirection, Never> = Empty<ShuffleDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[253/275] Compiling ShuffleItForTest ShuffleStack+Content.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTranslation.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for suffle translation.
 4 | struct ShuffleTranslationKey: EnvironmentKey {
 5 |     static var defaultValue: ((CGFloat) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleTrigger.swift:14:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | /// An environment key for shuffle trigger.
13 | struct ShuffleTriggerKey: EnvironmentKey {
14 |     static var defaultValue: AnyPublisher<ShuffleDirection, Never> = Empty<ShuffleDirection, Never>().eraseToAnyPublisher()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[254/275] Compiling ShuffleItForTest ShuffleDeck+Content.swift
[255/275] Compiling ShuffleItForTest ShuffleDeck+Data.swift
[256/275] Compiling ShuffleItForTest ShuffleDeck+Gesture.swift
[257/275] Compiling ShuffleItForTest ShuffleDeck+Shuffling.swift
[258/275] Compiling ShuffleItForTest ShuffleDeck.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle animation.
29 | struct ShuffleAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle context.
14 | struct ShuffleContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
[259/275] Compiling ShuffleItForTest ShuffleAnimation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle animation.
29 | struct ShuffleAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle context.
14 | struct ShuffleContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
[260/275] Compiling ShuffleItForTest ShuffleContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle animation.
29 | struct ShuffleAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle context.
14 | struct ShuffleContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
[261/275] Compiling ShuffleItForTest ShuffleDiabled.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for shuffle animation.
29 | struct ShuffleAnimationKey: EnvironmentKey {
30 |     static var defaultValue: ShuffleAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for shuffle context.
14 | struct ShuffleContextKey: EnvironmentKey {
15 |     static var defaultValue: ((ShuffleContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/ShuffleStack/EnvironmentValues/ShuffleDiabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct ShuffleDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
[262/275] Compiling ShuffleItForTest CarouselAnimation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for carousel animation.
29 | struct CarouselAnimationKey: EnvironmentKey {
30 |     static var defaultValue: CarouselAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for carousel context.
14 | struct CarouselContextKey: EnvironmentKey {
15 |     static var defaultValue: ((CarouselContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct CarouselDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselPadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel padding.
 4 | struct CarouselPaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 20
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
[263/275] Compiling ShuffleItForTest CarouselContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for carousel animation.
29 | struct CarouselAnimationKey: EnvironmentKey {
30 |     static var defaultValue: CarouselAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for carousel context.
14 | struct CarouselContextKey: EnvironmentKey {
15 |     static var defaultValue: ((CarouselContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct CarouselDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselPadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel padding.
 4 | struct CarouselPaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 20
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
[264/275] Compiling ShuffleItForTest CarouselDisabled.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for carousel animation.
29 | struct CarouselAnimationKey: EnvironmentKey {
30 |     static var defaultValue: CarouselAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for carousel context.
14 | struct CarouselContextKey: EnvironmentKey {
15 |     static var defaultValue: ((CarouselContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct CarouselDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselPadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel padding.
 4 | struct CarouselPaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 20
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
[265/275] Compiling ShuffleItForTest CarouselPadding.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for carousel animation.
29 | struct CarouselAnimationKey: EnvironmentKey {
30 |     static var defaultValue: CarouselAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for carousel context.
14 | struct CarouselContextKey: EnvironmentKey {
15 |     static var defaultValue: ((CarouselContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct CarouselDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselPadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel padding.
 4 | struct CarouselPaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 20
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
[266/275] Compiling ShuffleItForTest CarouselScale.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselAnimation.swift:30:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | /// An environment key for carousel animation.
29 | struct CarouselAnimationKey: EnvironmentKey {
30 |     static var defaultValue: CarouselAnimation = .linear
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 | }
32 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselContext.swift:15:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | /// An environment key for carousel context.
14 | struct CarouselContextKey: EnvironmentKey {
15 |     static var defaultValue: ((CarouselContext) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselDisabled.swift:7:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 5 | @available(tvOS, unavailable)
 6 | struct CarouselDisabledKey: EnvironmentKey {
 7 |     static var defaultValue: Bool = false
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 8 | }
 9 |
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleItForTest/CarouselStack/EnvironmentValues/CarouselPadding.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 | /// An environment key for carousel padding.
 4 | struct CarouselPaddingKey: EnvironmentKey {
 5 |     static var defaultValue: CGFloat = 20
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
[267/275] Compiling ShuffleItForTest CarouselStack+Content.swift
[268/275] Compiling ShuffleItForTest CarouselStack+Data.swift
[269/275] Compiling ShuffleItForTest CarouselStack+Gesture.swift
[270/275] Compiling ShuffleItForTest CarouselStack+Sliding.swift
[271/275] Compiling ShuffleItForTest CarouselStack.swift
[272/275] Compiling ShuffleItForTest ShuffleStack+Data.swift
[273/275] Compiling ShuffleItForTest ShuffleStack+Gesture.swift
[274/275] Compiling ShuffleItForTest ShuffleStack+Shuffling.swift
[275/275] Compiling ShuffleItForTest ShuffleStack.swift
Build complete! (36.60s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "viewinspector",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.9.7",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nalexn/ViewInspector.git"
    }
  ],
  "manifest_display_name" : "ShuffleIt",
  "name" : "ShuffleIt",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "ShuffleIt",
      "targets" : [
        "ShuffleIt"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ShuffleStack",
      "targets" : [
        "ShuffleStack"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CarouselStack",
      "targets" : [
        "CarouselStack"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ShuffleDeck",
      "targets" : [
        "ShuffleDeck"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "UtilsForTest",
      "module_type" : "SwiftTarget",
      "name" : "UtilsForTest",
      "path" : "Sources/UtilsForTest",
      "product_dependencies" : [
        "ViewInspector"
      ],
      "sources" : [
        "Inspection.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Utils",
      "module_type" : "SwiftTarget",
      "name" : "Utils",
      "path" : "Sources/Utils",
      "product_memberships" : [
        "ShuffleIt",
        "ShuffleStack",
        "CarouselStack",
        "ShuffleDeck"
      ],
      "sources" : [
        "Extensions/RandomAccessCollection+Extension.swift",
        "PreferenceKeys/SizePreferenceKey.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ShuffleStack",
      "module_type" : "SwiftTarget",
      "name" : "ShuffleStack",
      "path" : "Sources/ShuffleStack",
      "product_memberships" : [
        "ShuffleStack"
      ],
      "sources" : [
        "EnvironmentValues/ShuffleAnimation.swift",
        "EnvironmentValues/ShuffleContext.swift",
        "EnvironmentValues/ShuffleDiabled.swift",
        "EnvironmentValues/ShuffleOffset.swift",
        "EnvironmentValues/ShufflePadding.swift",
        "EnvironmentValues/ShuffleScale.swift",
        "EnvironmentValues/ShuffleStyle.swift",
        "EnvironmentValues/ShuffleTranslation.swift",
        "EnvironmentValues/ShuffleTrigger.swift",
        "Extensions/ShuffleStack+View.swift",
        "View/ShuffleStack+Content.swift",
        "View/ShuffleStack+Data.swift",
        "View/ShuffleStack+Gesture.swift",
        "View/ShuffleStack+Shuffling.swift",
        "View/ShuffleStack.swift"
      ],
      "target_dependencies" : [
        "Utils"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ShuffleItTests",
      "module_type" : "SwiftTarget",
      "name" : "ShuffleItTests",
      "path" : "Tests/ShuffleItTests",
      "product_dependencies" : [
        "ViewInspector"
      ],
      "sources" : [
        "CarouselStack/CarouselStackGestureTests.swift",
        "CarouselStack/CarouselStackShufflingTests.swift",
        "CarouselStack/CarouselStackTests.swift",
        "ShuffleDeck/ShuffleDeckGestureTests.swift",
        "ShuffleDeck/ShuffleDeckSlidingTests.swift",
        "ShuffleDeck/ShuffleDeckTests.swift",
        "ShuffleStack/ShuffleStackGestureTests.swift",
        "ShuffleStack/ShuffleStackShufflingTests.swift",
        "ShuffleStack/ShuffleStackTests.swift",
        "Utils/BaseTestCase.swift",
        "Utils/ColorView.swift",
        "Utils/ValueSpy.swift"
      ],
      "target_dependencies" : [
        "ShuffleItForTest",
        "Utils"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ShuffleItForTest",
      "module_type" : "SwiftTarget",
      "name" : "ShuffleItForTest",
      "path" : "Sources/ShuffleItForTest",
      "product_dependencies" : [
        "ViewInspector"
      ],
      "sources" : [
        "CarouselStack/EnvironmentValues/CarouselAnimation.swift",
        "CarouselStack/EnvironmentValues/CarouselContext.swift",
        "CarouselStack/EnvironmentValues/CarouselDisabled.swift",
        "CarouselStack/EnvironmentValues/CarouselPadding.swift",
        "CarouselStack/EnvironmentValues/CarouselScale.swift",
        "CarouselStack/EnvironmentValues/CarouselSpacing.swift",
        "CarouselStack/EnvironmentValues/CarouselStyle.swift",
        "CarouselStack/EnvironmentValues/CarouselTranslation.swift",
        "CarouselStack/EnvironmentValues/CarouselTrigger.swift",
        "CarouselStack/Extensions/CarouselStack+View.swift",
        "CarouselStack/View/CarouselStack+Content.swift",
        "CarouselStack/View/CarouselStack+Data.swift",
        "CarouselStack/View/CarouselStack+Gesture.swift",
        "CarouselStack/View/CarouselStack+Sliding.swift",
        "CarouselStack/View/CarouselStack.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckAnimation.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckContext.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckDisabled.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift",
        "ShuffleDeck/Extensions/ShuffleDeck+View.swift",
        "ShuffleDeck/View/ShuffleDeck+Content.swift",
        "ShuffleDeck/View/ShuffleDeck+Data.swift",
        "ShuffleDeck/View/ShuffleDeck+Gesture.swift",
        "ShuffleDeck/View/ShuffleDeck+Shuffling.swift",
        "ShuffleDeck/View/ShuffleDeck.swift",
        "ShuffleStack/EnvironmentValues/ShuffleAnimation.swift",
        "ShuffleStack/EnvironmentValues/ShuffleContext.swift",
        "ShuffleStack/EnvironmentValues/ShuffleDiabled.swift",
        "ShuffleStack/EnvironmentValues/ShuffleOffset.swift",
        "ShuffleStack/EnvironmentValues/ShufflePadding.swift",
        "ShuffleStack/EnvironmentValues/ShuffleScale.swift",
        "ShuffleStack/EnvironmentValues/ShuffleStyle.swift",
        "ShuffleStack/EnvironmentValues/ShuffleTranslation.swift",
        "ShuffleStack/EnvironmentValues/ShuffleTrigger.swift",
        "ShuffleStack/Extensions/ShuffleStack+View.swift",
        "ShuffleStack/View/ShuffleStack+Content.swift",
        "ShuffleStack/View/ShuffleStack+Data.swift",
        "ShuffleStack/View/ShuffleStack+Gesture.swift",
        "ShuffleStack/View/ShuffleStack+Shuffling.swift",
        "ShuffleStack/View/ShuffleStack.swift"
      ],
      "target_dependencies" : [
        "UtilsForTest"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ShuffleIt",
      "module_type" : "SwiftTarget",
      "name" : "ShuffleIt",
      "path" : "Sources/ShuffleIt",
      "product_memberships" : [
        "ShuffleIt"
      ],
      "sources" : [
        "CarouselStack/EnvironmentValues/CarouselAnimation.swift",
        "CarouselStack/EnvironmentValues/CarouselContext.swift",
        "CarouselStack/EnvironmentValues/CarouselDisabled.swift",
        "CarouselStack/EnvironmentValues/CarouselPadding.swift",
        "CarouselStack/EnvironmentValues/CarouselScale.swift",
        "CarouselStack/EnvironmentValues/CarouselSpacing.swift",
        "CarouselStack/EnvironmentValues/CarouselStyle.swift",
        "CarouselStack/EnvironmentValues/CarouselTranslation.swift",
        "CarouselStack/EnvironmentValues/CarouselTrigger.swift",
        "CarouselStack/Extensions/CarouselStack+View.swift",
        "CarouselStack/View/CarouselStack+Content.swift",
        "CarouselStack/View/CarouselStack+Data.swift",
        "CarouselStack/View/CarouselStack+Gesture.swift",
        "CarouselStack/View/CarouselStack+Sliding.swift",
        "CarouselStack/View/CarouselStack.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckAnimation.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckContext.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckDisabled.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckScale.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckStyle.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckTranslation.swift",
        "ShuffleDeck/EnvironmentValues/ShuffleDeckTrigger.swift",
        "ShuffleDeck/Extensions/ShuffleDeck+View.swift",
        "ShuffleDeck/View/ShuffleDeck+Content.swift",
        "ShuffleDeck/View/ShuffleDeck+Data.swift",
        "ShuffleDeck/View/ShuffleDeck+Gesture.swift",
        "ShuffleDeck/View/ShuffleDeck+Shuffling.swift",
        "ShuffleDeck/View/ShuffleDeck.swift",
        "ShuffleStack/EnvironmentValues/ShuffleAnimation.swift",
        "ShuffleStack/EnvironmentValues/ShuffleContext.swift",
        "ShuffleStack/EnvironmentValues/ShuffleDiabled.swift",
        "ShuffleStack/EnvironmentValues/ShuffleOffset.swift",
        "ShuffleStack/EnvironmentValues/ShufflePadding.swift",
        "ShuffleStack/EnvironmentValues/ShuffleScale.swift",
        "ShuffleStack/EnvironmentValues/ShuffleStyle.swift",
        "ShuffleStack/EnvironmentValues/ShuffleTranslation.swift",
        "ShuffleStack/EnvironmentValues/ShuffleTrigger.swift",
        "ShuffleStack/Extensions/ShuffleStack+View.swift",
        "ShuffleStack/View/ShuffleStack+Content.swift",
        "ShuffleStack/View/ShuffleStack+Data.swift",
        "ShuffleStack/View/ShuffleStack+Gesture.swift",
        "ShuffleStack/View/ShuffleStack+Shuffling.swift",
        "ShuffleStack/View/ShuffleStack.swift"
      ],
      "target_dependencies" : [
        "Utils"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ShuffleDeck",
      "module_type" : "SwiftTarget",
      "name" : "ShuffleDeck",
      "path" : "Sources/ShuffleDeck",
      "product_memberships" : [
        "ShuffleDeck"
      ],
      "sources" : [
        "EnvironmentValues/ShuffleDeckAnimation.swift",
        "EnvironmentValues/ShuffleDeckContext.swift",
        "EnvironmentValues/ShuffleDeckDisabled.swift",
        "EnvironmentValues/ShuffleDeckScale.swift",
        "EnvironmentValues/ShuffleDeckStyle.swift",
        "EnvironmentValues/ShuffleDeckTranslation.swift",
        "EnvironmentValues/ShuffleDeckTrigger.swift",
        "Extensions/ShuffleDeck+View.swift",
        "View/ShuffleDeck+Content.swift",
        "View/ShuffleDeck+Data.swift",
        "View/ShuffleDeck+Gesture.swift",
        "View/ShuffleDeck+Shuffling.swift",
        "View/ShuffleDeck.swift"
      ],
      "target_dependencies" : [
        "Utils"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CarouselStack",
      "module_type" : "SwiftTarget",
      "name" : "CarouselStack",
      "path" : "Sources/CarouselStack",
      "product_memberships" : [
        "CarouselStack"
      ],
      "sources" : [
        "EnvironmentValues/CarouselAnimation.swift",
        "EnvironmentValues/CarouselContext.swift",
        "EnvironmentValues/CarouselDisabled.swift",
        "EnvironmentValues/CarouselPadding.swift",
        "EnvironmentValues/CarouselScale.swift",
        "EnvironmentValues/CarouselSpacing.swift",
        "EnvironmentValues/CarouselStyle.swift",
        "EnvironmentValues/CarouselTranslation.swift",
        "EnvironmentValues/CarouselTrigger.swift",
        "Extensions/CarouselStack+View.swift",
        "View/CarouselStack+Content.swift",
        "View/CarouselStack+Data.swift",
        "View/CarouselStack+Gesture.swift",
        "View/CarouselStack+Sliding.swift",
        "View/CarouselStack.swift"
      ],
      "target_dependencies" : [
        "Utils"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.