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 CompactSlider, reference main (f07c7a), with Swift 6.0 for macOS (SPM) on 26 Mar 2025 12:16:04 UTC.

Swift 6 data race errors: 21

Build Command

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

Build Log

 70 |         }
 71 |
 72 |         static var none = FocusState(isHovering: false, isDragging: false, isWheelScrolling: false)
    |                    |- warning: static property 'none' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'none' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |     }
 74 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderStyleConfiguration.swift:393:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CompactSliderStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 16 | /// - The step defines the step for the slider values.
 17 | /// - The colorScheme defines the possible color schemes, corresponding to the light and dark appearances.
 18 | public struct CompactSliderStyleConfiguration: Equatable {
    |               `- note: consider making struct 'CompactSliderStyleConfiguration' conform to the 'Sendable' protocol
 19 |     /// A slider type in which the slider will indicate the selected value.
 20 |     public let type: CompactSliderType
    :
391 |
392 | struct CompactSliderStyleConfigurationKey: EnvironmentKey {
393 |     static let defaultValue: CompactSliderStyleConfiguration = CompactSliderStyleConfiguration(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CompactSliderStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
394 |         type: .horizontal(.leading),
395 |         size: .zero,
[23/74] Compiling CompactSlider CompactSliderType.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:53:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | }
55 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderStyleConfiguration.swift:72:20: warning: static property 'none' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 70 |         }
 71 |
 72 |         static var none = FocusState(isHovering: false, isDragging: false, isWheelScrolling: false)
    |                    |- warning: static property 'none' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'none' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |     }
 74 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderStyleConfiguration.swift:393:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CompactSliderStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 16 | /// - The step defines the step for the slider values.
 17 | /// - The colorScheme defines the possible color schemes, corresponding to the light and dark appearances.
 18 | public struct CompactSliderStyleConfiguration: Equatable {
    |               `- note: consider making struct 'CompactSliderStyleConfiguration' conform to the 'Sendable' protocol
 19 |     /// A slider type in which the slider will indicate the selected value.
 20 |     public let type: CompactSliderType
    :
391 |
392 | struct CompactSliderStyleConfigurationKey: EnvironmentKey {
393 |     static let defaultValue: CompactSliderStyleConfiguration = CompactSliderStyleConfiguration(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CompactSliderStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
394 |         type: .horizontal(.leading),
395 |         size: .zero,
[24/74] Compiling CompactSlider BackgroundContainerView.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:53:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | }
55 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderStyleConfiguration.swift:72:20: warning: static property 'none' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 70 |         }
 71 |
 72 |         static var none = FocusState(isHovering: false, isDragging: false, isWheelScrolling: false)
    |                    |- warning: static property 'none' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'none' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |     }
 74 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderStyleConfiguration.swift:393:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CompactSliderStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 16 | /// - The step defines the step for the slider values.
 17 | /// - The colorScheme defines the possible color schemes, corresponding to the light and dark appearances.
 18 | public struct CompactSliderStyleConfiguration: Equatable {
    |               `- note: consider making struct 'CompactSliderStyleConfiguration' conform to the 'Sendable' protocol
 19 |     /// A slider type in which the slider will indicate the selected value.
 20 |     public let type: CompactSliderType
    :
391 |
392 | struct CompactSliderStyleConfigurationKey: EnvironmentKey {
393 |     static let defaultValue: CompactSliderStyleConfiguration = CompactSliderStyleConfiguration(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CompactSliderStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
394 |         type: .horizontal(.leading),
395 |         size: .zero,
[25/74] Compiling CompactSlider DefaultBackgroundView.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:53:23: warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
   |                       |- warning: static property 'full' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'full' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | }
55 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderStyleConfiguration.swift:72:20: warning: static property 'none' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 70 |         }
 71 |
 72 |         static var none = FocusState(isHovering: false, isDragging: false, isWheelScrolling: false)
    |                    |- warning: static property 'none' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'none' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 73 |     }
 74 | }
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderStyleConfiguration.swift:393:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CompactSliderStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 16 | /// - The step defines the step for the slider values.
 17 | /// - The colorScheme defines the possible color schemes, corresponding to the light and dark appearances.
 18 | public struct CompactSliderStyleConfiguration: Equatable {
    |               `- note: consider making struct 'CompactSliderStyleConfiguration' conform to the 'Sendable' protocol
 19 |     /// A slider type in which the slider will indicate the selected value.
 20 |     public let type: CompactSliderType
    :
391 |
392 | struct CompactSliderStyleConfigurationKey: EnvironmentKey {
393 |     static let defaultValue: CompactSliderStyleConfiguration = CompactSliderStyleConfiguration(
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CompactSliderStyleConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
394 |         type: .horizontal(.leading),
395 |         size: .zero,
[26/74] Compiling CompactSlider CompactSlider+Dragging.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderAnimations.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Compact slider animations events.
 9 | public enum CompactSliderAnimationEvent {
   |             `- note: consider making enum 'CompactSliderAnimationEvent' conform to the 'Sendable' protocol
10 |     case hovering
11 |     case dragging
   :
18 |
19 | struct CompactSliderAnimationsKey: EnvironmentKey {
20 |     static let defaultValue: [CompactSliderAnimationEvent: Animation] = [:]
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOnChangeAction.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct CompactSliderOnChangeActionKey: EnvironmentKey {
 9 |     static let defaultValue: ((CompactSliderStyleConfiguration) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOption.swift:116:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A set of options for the ``CompactSlider``. The options are used to configure the slider behavior.
  9 | public enum CompactSliderOption: Hashable {
    |             `- note: consider making enum 'CompactSliderOption' conform to the 'Sendable' protocol
 10 |     /// Enable haptic feedback. Enabled by default.
 11 |     case enabledHapticFeedback
    :
114 |
115 | struct CompactSliderOptionKey: EnvironmentKey {
116 |     static let defaultValue: Set<CompactSliderOption> = .default
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 | }
118 |
[27/74] Compiling CompactSlider CompactSlider+OnChange.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderAnimations.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Compact slider animations events.
 9 | public enum CompactSliderAnimationEvent {
   |             `- note: consider making enum 'CompactSliderAnimationEvent' conform to the 'Sendable' protocol
10 |     case hovering
11 |     case dragging
   :
18 |
19 | struct CompactSliderAnimationsKey: EnvironmentKey {
20 |     static let defaultValue: [CompactSliderAnimationEvent: Animation] = [:]
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOnChangeAction.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct CompactSliderOnChangeActionKey: EnvironmentKey {
 9 |     static let defaultValue: ((CompactSliderStyleConfiguration) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOption.swift:116:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A set of options for the ``CompactSlider``. The options are used to configure the slider behavior.
  9 | public enum CompactSliderOption: Hashable {
    |             `- note: consider making enum 'CompactSliderOption' conform to the 'Sendable' protocol
 10 |     /// Enable haptic feedback. Enabled by default.
 11 |     case enabledHapticFeedback
    :
114 |
115 | struct CompactSliderOptionKey: EnvironmentKey {
116 |     static let defaultValue: Set<CompactSliderOption> = .default
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 | }
118 |
[28/74] Compiling CompactSlider CompactSlider+ScrollWheel.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderAnimations.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Compact slider animations events.
 9 | public enum CompactSliderAnimationEvent {
   |             `- note: consider making enum 'CompactSliderAnimationEvent' conform to the 'Sendable' protocol
10 |     case hovering
11 |     case dragging
   :
18 |
19 | struct CompactSliderAnimationsKey: EnvironmentKey {
20 |     static let defaultValue: [CompactSliderAnimationEvent: Animation] = [:]
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOnChangeAction.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct CompactSliderOnChangeActionKey: EnvironmentKey {
 9 |     static let defaultValue: ((CompactSliderStyleConfiguration) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOption.swift:116:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A set of options for the ``CompactSlider``. The options are used to configure the slider behavior.
  9 | public enum CompactSliderOption: Hashable {
    |             `- note: consider making enum 'CompactSliderOption' conform to the 'Sendable' protocol
 10 |     /// Enable haptic feedback. Enabled by default.
 11 |     case enabledHapticFeedback
    :
114 |
115 | struct CompactSliderOptionKey: EnvironmentKey {
116 |     static let defaultValue: Set<CompactSliderOption> = .default
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 | }
118 |
[29/74] Compiling CompactSlider CompactSlider.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderAnimations.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Compact slider animations events.
 9 | public enum CompactSliderAnimationEvent {
   |             `- note: consider making enum 'CompactSliderAnimationEvent' conform to the 'Sendable' protocol
10 |     case hovering
11 |     case dragging
   :
18 |
19 | struct CompactSliderAnimationsKey: EnvironmentKey {
20 |     static let defaultValue: [CompactSliderAnimationEvent: Animation] = [:]
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOnChangeAction.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct CompactSliderOnChangeActionKey: EnvironmentKey {
 9 |     static let defaultValue: ((CompactSliderStyleConfiguration) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOption.swift:116:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A set of options for the ``CompactSlider``. The options are used to configure the slider behavior.
  9 | public enum CompactSliderOption: Hashable {
    |             `- note: consider making enum 'CompactSliderOption' conform to the 'Sendable' protocol
 10 |     /// Enable haptic feedback. Enabled by default.
 11 |     case enabledHapticFeedback
    :
114 |
115 | struct CompactSliderOptionKey: EnvironmentKey {
116 |     static let defaultValue: Set<CompactSliderOption> = .default
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 | }
118 |
[30/74] Compiling CompactSlider CompactSliderAnimations.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderAnimations.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Compact slider animations events.
 9 | public enum CompactSliderAnimationEvent {
   |             `- note: consider making enum 'CompactSliderAnimationEvent' conform to the 'Sendable' protocol
10 |     case hovering
11 |     case dragging
   :
18 |
19 | struct CompactSliderAnimationsKey: EnvironmentKey {
20 |     static let defaultValue: [CompactSliderAnimationEvent: Animation] = [:]
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOnChangeAction.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct CompactSliderOnChangeActionKey: EnvironmentKey {
 9 |     static let defaultValue: ((CompactSliderStyleConfiguration) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOption.swift:116:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A set of options for the ``CompactSlider``. The options are used to configure the slider behavior.
  9 | public enum CompactSliderOption: Hashable {
    |             `- note: consider making enum 'CompactSliderOption' conform to the 'Sendable' protocol
 10 |     /// Enable haptic feedback. Enabled by default.
 11 |     case enabledHapticFeedback
    :
114 |
115 | struct CompactSliderOptionKey: EnvironmentKey {
116 |     static let defaultValue: Set<CompactSliderOption> = .default
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 | }
118 |
[31/74] Compiling CompactSlider CompactSliderOnChangeAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderAnimations.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Compact slider animations events.
 9 | public enum CompactSliderAnimationEvent {
   |             `- note: consider making enum 'CompactSliderAnimationEvent' conform to the 'Sendable' protocol
10 |     case hovering
11 |     case dragging
   :
18 |
19 | struct CompactSliderAnimationsKey: EnvironmentKey {
20 |     static let defaultValue: [CompactSliderAnimationEvent: Animation] = [:]
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOnChangeAction.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct CompactSliderOnChangeActionKey: EnvironmentKey {
 9 |     static let defaultValue: ((CompactSliderStyleConfiguration) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOption.swift:116:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A set of options for the ``CompactSlider``. The options are used to configure the slider behavior.
  9 | public enum CompactSliderOption: Hashable {
    |             `- note: consider making enum 'CompactSliderOption' conform to the 'Sendable' protocol
 10 |     /// Enable haptic feedback. Enabled by default.
 11 |     case enabledHapticFeedback
    :
114 |
115 | struct CompactSliderOptionKey: EnvironmentKey {
116 |     static let defaultValue: Set<CompactSliderOption> = .default
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 | }
118 |
[32/74] Compiling CompactSlider CompactSliderOption.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderAnimations.swift:20:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Compact slider animations events.
 9 | public enum CompactSliderAnimationEvent {
   |             `- note: consider making enum 'CompactSliderAnimationEvent' conform to the 'Sendable' protocol
10 |     case hovering
11 |     case dragging
   :
18 |
19 | struct CompactSliderAnimationsKey: EnvironmentKey {
20 |     static let defaultValue: [CompactSliderAnimationEvent: Animation] = [:]
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '[CompactSliderAnimationEvent : Animation]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | }
22 |
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOnChangeAction.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct CompactSliderOnChangeActionKey: EnvironmentKey {
 9 |     static let defaultValue: ((CompactSliderStyleConfiguration) -> Void)? = nil
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '((CompactSliderStyleConfiguration) -> Void)?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderOption.swift:116:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A set of options for the ``CompactSlider``. The options are used to configure the slider behavior.
  9 | public enum CompactSliderOption: Hashable {
    |             `- note: consider making enum 'CompactSliderOption' conform to the 'Sendable' protocol
 10 |     /// Enable haptic feedback. Enabled by default.
 11 |     case enabledHapticFeedback
    :
114 |
115 | struct CompactSliderOptionKey: EnvironmentKey {
116 |     static let defaultValue: Set<CompactSliderOption> = .default
    |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'Set<CompactSliderOption>' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 | }
118 |
[33/74] Compiling CompactSlider Functions.swift
[34/74] Compiling CompactSlider HapticFeedback.swift
[35/74] Compiling CompactSlider ScreenScaleFactor.swift
[36/74] Compiling CompactSlider ScrollWheelModifier.swift
[37/74] Compiling CompactSlider View.swift
[38/74] Compiling CompactSlider WatchOSFillMaterial.swift
[39/74] Compiling CompactSlider resource_bundle_accessor.swift
[40/74] Compiling CompactSlider ProgressContainerView.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
  |                     `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 |     case none
3 |     case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[41/74] Compiling CompactSlider ProgressView.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
  |                     `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 |     case none
3 |     case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[42/74] Compiling CompactSlider DefaultScaleView.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
  |                     `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 |     case none
3 |     case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[43/74] Compiling CompactSlider EnvironmentScaleViewKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
  |                     `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 |     case none
3 |     case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[44/74] Compiling CompactSlider ScaleContainerView.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
  |                     `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 |     case none
3 |     case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[45/74] Compiling CompactSlider ScaleShapeStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
  |                     `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 |     case none
3 |     case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[46/74] Compiling CompactSlider ScaleView.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView?' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
  |                     `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 |     case none
3 |     case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Scale/EnvironmentScaleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ScaleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView? = ScaleContainerView {
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         DefaultScaleView(configuration: $0)
11 |     }.anyView()
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[47/74] Compiling CompactSlider EnvironmentBackgroundViewKey.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[48/74] Compiling CompactSlider GridBackgroundView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[49/74] Compiling CompactSlider GridView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[50/74] Compiling CompactSlider CompactSliderVisibility.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[51/74] Compiling CompactSlider GaugeStyle.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[52/74] Compiling CompactSlider GaugeView.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[53/74] Compiling CompactSlider Grid.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(EdgeInsets) -> AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Background/EnvironmentBackgroundViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct BackgroundViewKey: EnvironmentKey {
 9 |     static let defaultValue: (EdgeInsets) -> AnyView = { padding in
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         BackgroundContainerView(padding: padding) {
11 |             DefaultBackgroundView(configuration: $0, padding: $1)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[54/74] Compiling CompactSlider EnvironmentHandleStyleKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleStyleKey: EnvironmentKey {
 9 |     static let defaultValue = HandleStyle.default()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[55/74] Compiling CompactSlider EnvironmentHandleViewKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleStyleKey: EnvironmentKey {
 9 |     static let defaultValue = HandleStyle.default()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[56/74] Compiling CompactSlider HandleStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleStyleKey: EnvironmentKey {
 9 |     static let defaultValue = HandleStyle.default()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[57/74] Compiling CompactSlider HandleView.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleStyleKey: EnvironmentKey {
 9 |     static let defaultValue = HandleStyle.default()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[58/74] Compiling CompactSlider HandleViewContainerView.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleStyleKey: EnvironmentKey {
 9 |     static let defaultValue = HandleStyle.default()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[59/74] Compiling CompactSlider EnvironmentProgressViewKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleStyleKey: EnvironmentKey {
 9 |     static let defaultValue = HandleStyle.default()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[60/74] Compiling CompactSlider Progress.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleStyleKey: EnvironmentKey {
 9 |     static let defaultValue = HandleStyle.default()
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'HandleStyle' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | }
11 |
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/EnvironmentHandleViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct HandleViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         HandleViewContainerView { configuration, style, _, _ in
11 |             HandleView(configuration: configuration, style: style)
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AnyView' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
SwiftUICore.AnyView:2:23: note: struct 'AnyView' does not conform to the 'Sendable' protocol
 1 | @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 2 | @frozen public struct AnyView : View {
   |                       `- note: struct 'AnyView' does not conform to the 'Sendable' protocol
 3 |     public init<V>(_ view: V) where V : View
 4 |     public init<V>(erasing view: V) where V : View
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Progress/EnvironmentProgressViewKey.swift:9:16: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
 7 |
 8 | struct ProgressViewKey: EnvironmentKey {
 9 |     static let defaultValue: AnyView =
   |                `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
10 |         ProgressContainerView { configuration in
11 |             ProgressView(
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[61/74] Compiling CompactSlider GradientMask.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Treats/SystemSlider/EnvironmentSystemSliderStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct SystemSliderStyleKey: EnvironmentKey {
 9 |     static let defaultValue: (slider: DefaultCompactSliderStyle, handle: HandleStyle?) = (
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultCompactSliderStyle.horizontal(clipShapeStyle: .none), nil
11 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:26:15: note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
24 | /// - SeeAlso: `CompactSliderStyle`.
25 | /// - Note: You can create your own compact slider style by implementing the `CompactSliderStyle` protocol.
26 | public struct DefaultCompactSliderStyle: CompactSliderStyle {
   |               `- note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
27 |     /// The type of the slider.
28 |     public let type: CompactSliderType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[62/74] Compiling CompactSlider OptionalCGSize.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Treats/SystemSlider/EnvironmentSystemSliderStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct SystemSliderStyleKey: EnvironmentKey {
 9 |     static let defaultValue: (slider: DefaultCompactSliderStyle, handle: HandleStyle?) = (
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultCompactSliderStyle.horizontal(clipShapeStyle: .none), nil
11 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:26:15: note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
24 | /// - SeeAlso: `CompactSliderStyle`.
25 | /// - Note: You can create your own compact slider style by implementing the `CompactSliderStyle` protocol.
26 | public struct DefaultCompactSliderStyle: CompactSliderStyle {
   |               `- note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
27 |     /// The type of the slider.
28 |     public let type: CompactSliderType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[63/74] Compiling CompactSlider ReversedMask.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Treats/SystemSlider/EnvironmentSystemSliderStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct SystemSliderStyleKey: EnvironmentKey {
 9 |     static let defaultValue: (slider: DefaultCompactSliderStyle, handle: HandleStyle?) = (
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultCompactSliderStyle.horizontal(clipShapeStyle: .none), nil
11 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:26:15: note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
24 | /// - SeeAlso: `CompactSliderStyle`.
25 | /// - Note: You can create your own compact slider style by implementing the `CompactSliderStyle` protocol.
26 | public struct DefaultCompactSliderStyle: CompactSliderStyle {
   |               `- note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
27 |     /// The type of the slider.
28 |     public let type: CompactSliderType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[64/74] Compiling CompactSlider EnvironmentSystemSliderStyleKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Treats/SystemSlider/EnvironmentSystemSliderStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct SystemSliderStyleKey: EnvironmentKey {
 9 |     static let defaultValue: (slider: DefaultCompactSliderStyle, handle: HandleStyle?) = (
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultCompactSliderStyle.horizontal(clipShapeStyle: .none), nil
11 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:26:15: note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
24 | /// - SeeAlso: `CompactSliderStyle`.
25 | /// - Note: You can create your own compact slider style by implementing the `CompactSliderStyle` protocol.
26 | public struct DefaultCompactSliderStyle: CompactSliderStyle {
   |               `- note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
27 |     /// The type of the slider.
28 |     public let type: CompactSliderType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[65/74] Compiling CompactSlider HandleStyle+SystemSlider.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Treats/SystemSlider/EnvironmentSystemSliderStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct SystemSliderStyleKey: EnvironmentKey {
 9 |     static let defaultValue: (slider: DefaultCompactSliderStyle, handle: HandleStyle?) = (
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultCompactSliderStyle.horizontal(clipShapeStyle: .none), nil
11 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:26:15: note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
24 | /// - SeeAlso: `CompactSliderStyle`.
25 | /// - Note: You can create your own compact slider style by implementing the `CompactSliderStyle` protocol.
26 | public struct DefaultCompactSliderStyle: CompactSliderStyle {
   |               `- note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
27 |     /// The type of the slider.
28 |     public let type: CompactSliderType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[66/74] Compiling CompactSlider SystemSlider+ViewFrame.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Treats/SystemSlider/EnvironmentSystemSliderStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct SystemSliderStyleKey: EnvironmentKey {
 9 |     static let defaultValue: (slider: DefaultCompactSliderStyle, handle: HandleStyle?) = (
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultCompactSliderStyle.horizontal(clipShapeStyle: .none), nil
11 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:26:15: note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
24 | /// - SeeAlso: `CompactSliderStyle`.
25 | /// - Note: You can create your own compact slider style by implementing the `CompactSliderStyle` protocol.
26 | public struct DefaultCompactSliderStyle: CompactSliderStyle {
   |               `- note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
27 |     /// The type of the slider.
28 |     public let type: CompactSliderType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[67/74] Compiling CompactSlider SystemSlider.swift
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Treats/SystemSlider/EnvironmentSystemSliderStyleKey.swift:9:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | struct SystemSliderStyleKey: EnvironmentKey {
 9 |     static let defaultValue: (slider: DefaultCompactSliderStyle, handle: HandleStyle?) = (
   |                |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type '(slider: DefaultCompactSliderStyle, handle: HandleStyle?)' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |         DefaultCompactSliderStyle.horizontal(clipShapeStyle: .none), nil
11 |     )
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/DefaultCompactSliderStyle.swift:26:15: note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
24 | /// - SeeAlso: `CompactSliderStyle`.
25 | /// - Note: You can create your own compact slider style by implementing the `CompactSliderStyle` protocol.
26 | public struct DefaultCompactSliderStyle: CompactSliderStyle {
   |               `- note: consider making struct 'DefaultCompactSliderStyle' conform to the 'Sendable' protocol
27 |     /// The type of the slider.
28 |     public let type: CompactSliderType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Components/Handle/HandleStyle.swift:28:15: note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 26 |
 27 | /// A handle style.
 28 | public struct HandleStyle: Equatable {
    |               `- note: consider making struct 'HandleStyle' conform to the 'Sendable' protocol
 29 |     /// The handle type.
 30 |     public let type: HandleType
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/Styles/ClipShapeStyle.swift:73:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
  7 |
  8 | /// A clip shape style. It can be used for clipping the background, progress view, and scale view or all of them.
  9 | public struct ClipShapeStyle {
    |               `- note: consider making struct 'ClipShapeStyle' conform to the 'Sendable' protocol
 10 |     public let shape: ClipShapeStyle.Shape?
 11 |     public let options: ClipShapeOptionSet
    :
 71 |
 72 |     /// A clip shape style with no shape.
 73 |     public static let none = ClipShapeStyle(shape: nil)
    |                       |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'ClipShapeStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 74 |
 75 |     /// A default clip shape style for the given type.
/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/CompactSliderPolarPoint.swift:51:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
11 | /// The center of the circle is in the center of the view.
12 | /// The radius is a half of the min size of the view.
13 | public struct CompactSliderPolarPoint: Hashable {
   |               `- note: consider making struct 'CompactSliderPolarPoint' conform to the 'Sendable' protocol
14 |     /// An angle.
15 |     public let angle: Angle
   :
49 | extension CompactSliderPolarPoint {
50 |     /// A zero angle and zero radius.
51 |     public static let zero = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'CompactSliderPolarPoint' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |     /// A zero angle and radius is 1.
53 |     public static let full = CompactSliderPolarPoint(angle: .zero, normalizedRadius: 1)
[68/74] Compiling CompactSlider SystemSliderBackgroundView.swift
[69/74] Compiling CompactSlider SystemSliderHandleView.swift
[70/74] Compiling CompactSlider SystemSliderProgressView.swift
[71/74] Compiling CompactSlider SystemSliderType.swift
[72/74] Compiling CompactSlider ClosedRange.swift
[73/74] Compiling CompactSlider CoreGraphics.swift
[74/74] Compiling CompactSlider Defaults.swift
Build complete! (35.96s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CompactSlider",
  "name" : "CompactSlider",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "CompactSlider",
      "targets" : [
        "CompactSlider"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "CompactSlider",
      "module_type" : "SwiftTarget",
      "name" : "CompactSlider",
      "path" : "Sources/CompactSlider",
      "product_memberships" : [
        "CompactSlider"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/CompactSlider/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "CompactSlider+Dragging.swift",
        "CompactSlider+OnChange.swift",
        "CompactSlider+ScrollWheel.swift",
        "CompactSlider.swift",
        "CompactSliderAnimations.swift",
        "CompactSliderOnChangeAction.swift",
        "CompactSliderOption.swift",
        "CompactSliderPoint.swift",
        "CompactSliderPolarPoint.swift",
        "CompactSliderStep.swift",
        "CompactSliderStyleConfiguration.swift",
        "CompactSliderType.swift",
        "Components/Background/BackgroundContainerView.swift",
        "Components/Background/DefaultBackgroundView.swift",
        "Components/Background/EnvironmentBackgroundViewKey.swift",
        "Components/Background/GridBackgroundView.swift",
        "Components/Background/GridView.swift",
        "Components/CompactSliderVisibility.swift",
        "Components/Gauge/GaugeStyle.swift",
        "Components/Gauge/GaugeView.swift",
        "Components/Grid/Grid.swift",
        "Components/Handle/EnvironmentHandleStyleKey.swift",
        "Components/Handle/EnvironmentHandleViewKey.swift",
        "Components/Handle/HandleStyle.swift",
        "Components/Handle/HandleView.swift",
        "Components/Handle/HandleViewContainerView.swift",
        "Components/Progress/EnvironmentProgressViewKey.swift",
        "Components/Progress/Progress.swift",
        "Components/Progress/ProgressContainerView.swift",
        "Components/Progress/ProgressView.swift",
        "Components/Scale/DefaultScaleView.swift",
        "Components/Scale/EnvironmentScaleViewKey.swift",
        "Components/Scale/ScaleContainerView.swift",
        "Components/Scale/ScaleShapeStyle.swift",
        "Components/Scale/ScaleView.swift",
        "Components/Scale/ScaleZStackView.swift",
        "Components/Scale/Scales/CircularScaleShape.swift",
        "Components/Scale/Scales/LinearScaleShape.swift",
        "Components/Scale/Scales/ScaleLabels.swift",
        "Styles/BackgroundViewWrapper.swift",
        "Styles/ClipShapeStyle.swift",
        "Styles/CompactSliderStyle.swift",
        "Styles/DefaultCompactSliderStyle+Init.swift",
        "Styles/DefaultCompactSliderStyle.swift",
        "Styles/HandleViewWrapper.swift",
        "Styles/ProgressViewWrapper.swift",
        "Styles/ScaleViewWrapper.swift",
        "Treats/Convertor.swift",
        "Treats/EdgeInsets.swift",
        "Treats/GradientMask.swift",
        "Treats/OptionalCGSize.swift",
        "Treats/ReversedMask.swift",
        "Treats/SystemSlider/EnvironmentSystemSliderStyleKey.swift",
        "Treats/SystemSlider/HandleStyle+SystemSlider.swift",
        "Treats/SystemSlider/SystemSlider+ViewFrame.swift",
        "Treats/SystemSlider/SystemSlider.swift",
        "Treats/SystemSlider/SystemSliderBackgroundView.swift",
        "Treats/SystemSlider/SystemSliderHandleView.swift",
        "Treats/SystemSlider/SystemSliderProgressView.swift",
        "Treats/SystemSlider/SystemSliderType.swift",
        "Utils/ClosedRange.swift",
        "Utils/CoreGraphics.swift",
        "Utils/Defaults.swift",
        "Utils/Functions.swift",
        "Utils/HapticFeedback.swift",
        "Utils/ScreenScaleFactor.swift",
        "Utils/ScrollWheelModifier.swift",
        "Utils/View.swift",
        "Utils/WatchOSFillMaterial.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/buh/compactslider/main
Repository:               buh/CompactSlider
Swift version used:       6.0
Target:                   CompactSlider
Extracting symbol information for 'CompactSlider'...
Finished extracting symbol information for 'CompactSlider'. (7.71s)
Building documentation for 'CompactSlider'...
warning: '.compactSliderOptions()' doesn't exist at '/CompactSlider/CompactSlider'
  --> Sources/CompactSlider/CompactSlider.swift:44:53-44:76
42 | ///
43 | ///  The slider can be customized with a variety of options, including the possibility to enable haptic feedback,
44 + ///  snap to steps, and scroll wheel support. Use ``.compactSliderOptions()`` and ``.compactSliderOptionsByAdding()``
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderOptions(_:)'
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderOptionsByAdding(_:)'
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderOptionsByRemoving(_:)'
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderOnChange(action:)'
   |                                                     ├─suggestion: Replace '.compactSliderOptions()' with 'compactSliderAnimation(_:when:)'
   |                                                     ╰─suggestion: Replace '.compactSliderOptions()' with 'compactSliderStyle(_:)'
45 | ///  modifiers to change options.
46 | ///
warning: '.compactSliderOptionsByAdding()' doesn't exist at '/CompactSlider/CompactSlider'
  --> Sources/CompactSlider/CompactSlider.swift:44:85-44:116
42 | ///
43 | ///  The slider can be customized with a variety of options, including the possibility to enable haptic feedback,
44 + ///  snap to steps, and scroll wheel support. Use ``.compactSliderOptions()`` and ``.compactSliderOptionsByAdding()``
   |                                                                                     ├─suggestion: Replace '.compactSliderOptionsByAdding()' with 'compactSliderOptionsByAdding(_:)'
   |                                                                                     ├─suggestion: Replace '.compactSliderOptionsByAdding()' with 'compactSliderOptionsByRemoving(_:)'
   |                                                                                     ╰─suggestion: Replace '.compactSliderOptionsByAdding()' with 'compactSliderOptions(_:)'
45 | ///  modifiers to change options.
46 | ///
warning: '.simultaneousGesture' doesn't exist at '/CompactSlider/CompactSliderOption/highPriorityGesture'
  --> Sources/CompactSlider/CompactSliderOption.swift:15:87-15:107
13 |     /// Default value is 1 and 0 for macOS.
14 |     case dragGestureMinimumDistance(CGFloat)
15 +     /// Attaches a high priority gesture to the slider and it has the priority over ``.simultaneousGesture`` option.
16 |     case highPriorityGesture
17 |     /// Attaches a simultaneous gesture to the slider and it has less priority than ``.highPriorityGesture`` option.
warning: '.highPriorityGesture' doesn't exist at '/CompactSlider/CompactSliderOption/simultaneousGesture'
  --> Sources/CompactSlider/CompactSliderOption.swift:17:87-17:107
15 |     /// Attaches a high priority gesture to the slider and it has the priority over ``.simultaneousGesture`` option.
16 |     case highPriorityGesture
17 +     /// Attaches a simultaneous gesture to the slider and it has less priority than ``.highPriorityGesture`` option.
18 |     case simultaneousGesture
19 |     /// Delays the touch gesture. Enabled by default for iOS.
warning: Parameter 'inverse' is missing documentation
  --> Sources/CompactSlider/Components/Grid/Grid.swift:43:70-43:70
41 |     ///   - countY: the number of shapes in the Y-axis.
42 |     ///   - size: the size of grid shapes.
43 +     ///   - padding: the padding from the edges (default is `.zero`).
   |                                                                      ╰─suggestion: Document 'inverse' parameter
44 |     public init(
45 |         type: GridType = .circle,Finished building documentation for 'CompactSlider' (5.77s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/buh/compactslider/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2050] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.22s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (2.41s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3344] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.16s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.59s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write snippet-extract-tool-entitlement.plist
[0/8] Write sources
[4/8] Write swift-version-5BDAB9E9C0126B9D.txt
[6/53] Compiling SymbolKit SourceRange.swift
[7/53] Compiling SymbolKit Metadata.swift
[8/53] Compiling SymbolKit Module.swift
[9/53] Compiling SymbolKit OperatingSystem.swift
[10/53] Compiling SymbolKit Platform.swift
[11/57] Compiling SymbolKit DeclarationFragments.swift
[12/57] Compiling SymbolKit Fragment.swift
[13/57] Compiling SymbolKit FragmentKind.swift
[14/57] Compiling SymbolKit FunctionParameter.swift
[15/57] Compiling SymbolKit FunctionSignature.swift
[16/57] Compiling SymbolKit Names.swift
[17/57] Compiling SymbolKit SPI.swift
[18/57] Compiling SymbolKit Snippet.swift
[19/57] Compiling SymbolKit Extension.swift
[20/57] Compiling SymbolKit GenericConstraint.swift
[21/57] Compiling SymbolKit GenericParameter.swift
[22/57] Compiling SymbolKit Generics.swift
[23/57] Compiling SymbolKit Namespace.swift
[24/57] Compiling SymbolKit Identifier.swift
[25/57] Compiling SymbolKit KindIdentifier.swift
[26/57] Compiling SymbolKit Location.swift
[27/57] Compiling SymbolKit Mutability.swift
[28/57] Compiling SymbolKit Mixin+Equals.swift
[29/57] Compiling SymbolKit Mixin+Hash.swift
[30/57] Compiling SymbolKit Mixin.swift
[31/57] Compiling SymbolKit LineList.swift
[32/57] Compiling SymbolKit Position.swift
[33/57] Compiling SymbolKit SemanticVersion.swift
[34/57] Compiling SymbolKit AccessControl.swift
[35/57] Compiling SymbolKit Availability.swift
[36/57] Compiling SymbolKit AvailabilityItem.swift
[37/57] Compiling SymbolKit Domain.swift
[38/57] Compiling SymbolKit Relationship.swift
[39/57] Compiling SymbolKit RelationshipKind.swift
[40/57] Compiling SymbolKit SourceOrigin.swift
[41/57] Compiling SymbolKit GenericConstraints.swift
[42/57] Compiling SymbolKit Swift.swift
[43/57] Compiling Snippets Snippet.swift
[44/57] Emitting module Snippets
[45/57] Compiling Snippets SnippetParser.swift
[46/57] Compiling SymbolKit Symbol.swift
[47/57] Compiling SymbolKit SymbolKind.swift
[48/57] Compiling SymbolKit SymbolGraph.swift
[49/57] Compiling SymbolKit GraphCollector.swift
[50/57] Emitting module SymbolKit
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.00s)
Building for debugging...
[0/1] Write swift-version-5BDAB9E9C0126B9D.txt
[2/65] Compiling CompactSlider SystemSliderBackgroundView.swift
[3/65] Compiling CompactSlider SystemSliderHandleView.swift
[4/65] Compiling CompactSlider SystemSliderProgressView.swift
[5/65] Compiling CompactSlider SystemSliderType.swift
[6/65] Compiling CompactSlider ClosedRange.swift
[7/65] Compiling CompactSlider CoreGraphics.swift
[8/65] Compiling CompactSlider Defaults.swift
[9/72] Emitting module CompactSlider
[10/72] Compiling CompactSlider DefaultCompactSliderStyle+Init.swift
[11/72] Compiling CompactSlider DefaultCompactSliderStyle.swift
[12/72] Compiling CompactSlider HandleViewWrapper.swift
[13/72] Compiling CompactSlider ProgressViewWrapper.swift
[14/72] Compiling CompactSlider ScaleViewWrapper.swift
[15/72] Compiling CompactSlider Convertor.swift
[16/72] Compiling CompactSlider EdgeInsets.swift
[17/72] Compiling CompactSlider EnvironmentHandleStyleKey.swift
[18/72] Compiling CompactSlider EnvironmentHandleViewKey.swift
[19/72] Compiling CompactSlider HandleStyle.swift
[20/72] Compiling CompactSlider HandleView.swift
[21/72] Compiling CompactSlider HandleViewContainerView.swift
[22/72] Compiling CompactSlider EnvironmentProgressViewKey.swift
[23/72] Compiling CompactSlider Progress.swift
[24/72] Compiling CompactSlider Functions.swift
[25/72] Compiling CompactSlider HapticFeedback.swift
[26/72] Compiling CompactSlider ScreenScaleFactor.swift
[27/72] Compiling CompactSlider ScrollWheelModifier.swift
[28/72] Compiling CompactSlider View.swift
[29/72] Compiling CompactSlider WatchOSFillMaterial.swift
[30/72] Compiling CompactSlider resource_bundle_accessor.swift
[31/72] Compiling CompactSlider GradientMask.swift
[32/72] Compiling CompactSlider OptionalCGSize.swift
[33/72] Compiling CompactSlider ReversedMask.swift
[34/72] Compiling CompactSlider EnvironmentSystemSliderStyleKey.swift
[35/72] Compiling CompactSlider HandleStyle+SystemSlider.swift
[36/72] Compiling CompactSlider SystemSlider+ViewFrame.swift
[37/72] Compiling CompactSlider SystemSlider.swift
[38/72] Compiling CompactSlider EnvironmentBackgroundViewKey.swift
[39/72] Compiling CompactSlider GridBackgroundView.swift
[40/72] Compiling CompactSlider GridView.swift
[41/72] Compiling CompactSlider CompactSliderVisibility.swift
[42/72] Compiling CompactSlider GaugeStyle.swift
[43/72] Compiling CompactSlider GaugeView.swift
[44/72] Compiling CompactSlider Grid.swift
[45/72] Compiling CompactSlider CompactSliderPoint.swift
[46/72] Compiling CompactSlider CompactSliderPolarPoint.swift
[47/72] Compiling CompactSlider CompactSliderStep.swift
[48/72] Compiling CompactSlider CompactSliderStyleConfiguration.swift
[49/72] Compiling CompactSlider CompactSliderType.swift
[50/72] Compiling CompactSlider BackgroundContainerView.swift
[51/72] Compiling CompactSlider DefaultBackgroundView.swift
[52/72] Compiling CompactSlider ProgressContainerView.swift
[53/72] Compiling CompactSlider ProgressView.swift
[54/72] Compiling CompactSlider DefaultScaleView.swift
[55/72] Compiling CompactSlider EnvironmentScaleViewKey.swift
[56/72] Compiling CompactSlider ScaleContainerView.swift
[57/72] Compiling CompactSlider ScaleShapeStyle.swift
[58/72] Compiling CompactSlider ScaleView.swift
[59/72] Compiling CompactSlider ScaleZStackView.swift
[60/72] Compiling CompactSlider CircularScaleShape.swift
[61/72] Compiling CompactSlider LinearScaleShape.swift
[62/72] Compiling CompactSlider ScaleLabels.swift
[63/72] Compiling CompactSlider BackgroundViewWrapper.swift
[64/72] Compiling CompactSlider ClipShapeStyle.swift
[65/72] Compiling CompactSlider CompactSliderStyle.swift
[66/72] Compiling CompactSlider CompactSlider+Dragging.swift
[67/72] Compiling CompactSlider CompactSlider+OnChange.swift
[68/72] Compiling CompactSlider CompactSlider+ScrollWheel.swift
[69/72] Compiling CompactSlider CompactSlider.swift
[70/72] Compiling CompactSlider CompactSliderAnimations.swift
[71/72] Compiling CompactSlider CompactSliderOnChangeAction.swift
[72/72] Compiling CompactSlider CompactSliderOption.swift
Build of target: 'CompactSlider' complete! (2.72s)
   18160
130	/Users/admin/builder/spi-builder-workspace/.docs/buh/compactslider/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/buh/compactslider/main
File count: 18160
Doc size:   130.0MB
Preparing doc bundle ...
Uploading prod-buh-compactslider-main-3e1dbbba.zip to s3://spi-docs-inbox/prod-buh-compactslider-main-3e1dbbba.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [50%]
Copying... [60%]
Copying... [70%]
Copying... [80%]
Copying... [90%]
Copying... [100%]
Done.