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 main (e0e707), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 10:33:39 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

Build Log

 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 |
[134/229] Compiling ShuffleDeck ShuffleDeck.swift
[135/229] Compiling ViewInspector NavigationDestination.swift
[136/229] Compiling ViewInspector NavigationLink.swift
[137/229] Compiling ViewInspector NavigationSplitView.swift
[138/229] Compiling ViewInspector NavigationStack.swift
[139/229] Compiling ViewInspector NavigationView.swift
[140/229] Compiling ViewInspector OptionalContent.swift
[141/229] Compiling ViewInspector OutlineGroup.swift
[142/229] Compiling ViewInspector Overlay.swift
[143/229] Compiling ViewInspector PasteButton.swift
[144/229] Compiling ViewInspector Picker.swift
[145/229] Compiling ViewInspector Popover.swift
[146/229] Compiling ViewInspector PopoverContent.swift
[147/229] Compiling ViewInspector Spacer.swift
[148/229] Compiling ViewInspector Stepper.swift
[149/229] Compiling ViewInspector StyleConfiguration.swift
[150/229] Compiling ViewInspector SubscriptionView.swift
[151/229] Compiling ViewInspector TabView.swift
[152/229] Compiling ViewInspector Text.swift
[153/229] Compiling ViewInspector TextAttributes.swift
[154/229] Compiling ViewInspector TextEditor.swift
[155/229] Compiling ViewInspector TextField.swift
[156/229] Compiling ViewInspector TimelineView.swift
[157/229] Compiling ViewInspector Toggle.swift
[158/229] Compiling ViewInspector Toolbar.swift
[159/229] Compiling ViewInspector ProgressView.swift
[160/229] Compiling ViewInspector RadialGradient.swift
[161/229] Compiling ViewInspector SafeAreaInset.swift
[162/229] Compiling ViewInspector ScrollView.swift
[163/229] Compiling ViewInspector ScrollViewReader.swift
[164/229] Compiling ViewInspector Section.swift
[165/229] Compiling ViewInspector SecureField.swift
[166/229] Compiling ViewInspector Shape.swift
[167/229] Compiling ViewInspector ShareLink.swift
[168/229] Compiling ViewInspector Sheet.swift
[169/229] Compiling ViewInspector SignInWithAppleButton.swift
[170/229] Compiling ViewInspector Slider.swift
[171/229] Compiling CarouselStack CarouselStack.swift
[172/229] Compiling ShuffleStack ShuffleStack.swift
[173/229] Emitting module ViewInspector
[175/229] Compiling ShuffleIt ShuffleStack+Data.swift
[176/229] Compiling ShuffleIt ShuffleStack+Gesture.swift
[177/229] Compiling ShuffleIt ShuffleStack+Shuffling.swift
[178/229] Compiling ShuffleIt ShuffleStack.swift
[179/229] Compiling ViewInspector PreviewModifiers.swift
[180/229] Compiling ViewInspector SizingModifiers.swift
[181/229] Compiling ViewInspector TextInputModifiers.swift
[182/229] Compiling ViewInspector TransformingModifiers.swift
[183/229] Compiling ViewInspector TransitiveModifiers.swift
[184/229] Compiling ViewInspector VisualEffectModifiers.swift
[185/229] Compiling ViewInspector PopupPresenter.swift
[186/229] Compiling ViewInspector ActionSheet.swift
[187/229] Compiling ViewInspector BaseTypes.swift
[188/229] Compiling ViewInspector ContentExtraction.swift
[189/229] Compiling ViewInspector EnvironmentInjection.swift
[190/229] Compiling ViewInspector InspectableView+RandomAccessCollection.swift
[191/229] Compiling ViewInspector InspectableView.swift
[192/229] Compiling ViewInspector InspectionEmissary.swift
[193/229] Compiling ViewInspector Inspector.swift
[194/229] Compiling ViewInspector LazyGroup.swift
[195/229] Compiling ViewInspector AccessibilityModifiers.swift
[196/229] Compiling ViewInspector AnimationModifiers.swift
[197/229] Compiling ViewInspector ConfigurationModifiers.swift
[198/229] Compiling ViewInspector CustomStyleModifiers.swift
[199/229] Compiling ViewInspector EnvironmentModifiers.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/ShuffleIt/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/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 |
/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 |
[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/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 |
[237/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 |
[238/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 |
[239/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 |
[240/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 |
[241/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 |
[242/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 |
[243/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 |
[244/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 |
[245/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 |
[246/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 |
[247/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 |
[248/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 |
[249/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 |
[250/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 |
[251/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 |
[252/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 |
[253/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 |
[254/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 |
[255/275] 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 |
[256/275] 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 |
[257/275] 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 |
[258/275] 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 |
[259/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 |
[260/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 |
[261/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 |
[262/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 |
[263/275] Compiling ShuffleItForTest ShuffleDeck+Content.swift
[264/275] Compiling ShuffleItForTest ShuffleDeck+Data.swift
[265/275] Compiling ShuffleItForTest ShuffleDeck+Gesture.swift
[266/275] Compiling ShuffleItForTest ShuffleDeck+Shuffling.swift
[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! (38.73s)
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.