This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 FeatureFlags with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 17

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/rwbutler/FeatureFlags.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/rwbutler/FeatureFlags
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 6b41f24 Updated date in CHANGELOG.md
Cloned https://github.com/rwbutler/FeatureFlags.git
Revision (git rev-parse @):
6b41f2448afd9001eb35b366bb20f7ca97439058
SUCCESS checkout https://github.com/rwbutler/FeatureFlags.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/rwbutler/FeatureFlags.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/35] Compiling FeatureFlags FeatureDetailsViewController.swift
[4/35] Compiling FeatureFlags UIControl.swift
[5/35] Compiling FeatureFlags CloseButtonAlignment.swift
[6/35] Compiling FeatureFlags FeaturesModel.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:14:16: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
   |                |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     // MARK: Type definitions
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:15:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:16:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:17:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:18:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:19:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let f = Test.Variation(rawValue: "F")
21 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:20:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' 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 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:23:23: warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
21 |
22 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
23 |     public static let unassigned = Test.Variation(rawValue: "Unassigned")
   |                       |- warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unassigned' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     private static let disabledRawValues = ["disabled", "off"]
[7/35] Compiling FeatureFlags Percentage.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:14:16: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
   |                |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     // MARK: Type definitions
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:15:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:16:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:17:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:18:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:19:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let f = Test.Variation(rawValue: "F")
21 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:20:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' 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 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:23:23: warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
21 |
22 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
23 |     public static let unassigned = Test.Variation(rawValue: "Unassigned")
   |                       |- warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unassigned' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     private static let disabledRawValues = ["disabled", "off"]
[8/35] Compiling FeatureFlags Test.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:14:16: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
   |                |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     // MARK: Type definitions
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:15:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:16:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:17:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:18:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:19:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let f = Test.Variation(rawValue: "F")
21 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:20:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' 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 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:23:23: warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
21 |
22 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
23 |     public static let unassigned = Test.Variation(rawValue: "Unassigned")
   |                       |- warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unassigned' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     private static let disabledRawValues = ["disabled", "off"]
[9/35] Compiling FeatureFlags TestVariation.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:14:16: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
   |                |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     // MARK: Type definitions
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:15:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:16:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:17:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:18:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:19:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let f = Test.Variation(rawValue: "F")
21 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:20:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' 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 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:23:23: warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
21 |
22 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
23 |     public static let unassigned = Test.Variation(rawValue: "Unassigned")
   |                       |- warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unassigned' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     private static let disabledRawValues = ["disabled", "off"]
[10/38] Compiling FeatureFlags JSONParsingService.swift
[11/38] Compiling FeatureFlags PropertyListParsingService.swift
[12/38] Compiling FeatureFlags ParsingServiceResult.swift
[13/38] Compiling FeatureFlags ParsingService.swift
[14/38] Compiling FeatureFlags FeatureFlagsViewController+UIViewControllerPreviewingDelegate.swift
[15/38] Compiling FeatureFlags FeatureFlagsViewController.swift
[16/38] Compiling FeatureFlags FeatureFlagsViewControllerDelegate.swift
[17/38] Compiling FeatureFlags FeatureFlagTableViewCell.swift
[18/38] Compiling FeatureFlags FeatureFlagsUI.swift
[19/38] Compiling FeatureFlags FeatureFlagsUIObserver.swift
[20/38] Compiling FeatureFlags Filter.swift
[21/38] Compiling FeatureFlags NavigationSettings.swift
[22/38] Compiling FeatureFlags FeatureFlagsViewModel.swift
[23/38] Compiling FeatureFlags Feature.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:23:23: warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
21 |
22 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
23 |     public static let unassigned = Test.Variation(rawValue: "Unassigned")
   |                       |- warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unassigned' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     private static let disabledRawValues = ["disabled", "off"]
[24/38] Compiling FeatureFlags FeatureName.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:23:23: warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
21 |
22 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
23 |     public static let unassigned = Test.Variation(rawValue: "Unassigned")
   |                       |- warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unassigned' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     private static let disabledRawValues = ["disabled", "off"]
[25/38] Compiling FeatureFlags FeatureTest.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:23:23: warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
21 |
22 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
23 |     public static let unassigned = Test.Variation(rawValue: "Unassigned")
   |                       |- warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unassigned' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     private static let disabledRawValues = ["disabled", "off"]
[26/38] Compiling FeatureFlags FeatureType.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:23:23: warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
21 |
22 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
23 |     public static let unassigned = Test.Variation(rawValue: "Unassigned")
   |                       |- warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unassigned' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     private static let disabledRawValues = ["disabled", "off"]
[27/38] Compiling FeatureFlags UIColorAdditions.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Feature+Codable.swift:24:16: warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |         case labels = "labels"
 23 |     }
 24 |     static let defaultTestVariations: [TestVariation] = [.enabled, .disabled]
    |                |- warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultTestVariations' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     public init(from decoder: Decoder) throws {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:10:15: note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:14:16: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
   |                |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     // MARK: Type definitions
[28/38] Compiling FeatureFlags ConfigurationType.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Feature+Codable.swift:24:16: warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |         case labels = "labels"
 23 |     }
 24 |     static let defaultTestVariations: [TestVariation] = [.enabled, .disabled]
    |                |- warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultTestVariations' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     public init(from decoder: Decoder) throws {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:10:15: note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:14:16: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
   |                |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     // MARK: Type definitions
[29/38] Compiling FeatureFlags Feature+Codable.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Feature+Codable.swift:24:16: warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |         case labels = "labels"
 23 |     }
 24 |     static let defaultTestVariations: [TestVariation] = [.enabled, .disabled]
    |                |- warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultTestVariations' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     public init(from decoder: Decoder) throws {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:10:15: note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:14:16: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
   |                |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     // MARK: Type definitions
[30/38] Compiling FeatureFlags Feature+Equatable.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Feature+Codable.swift:24:16: warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |         case labels = "labels"
 23 |     }
 24 |     static let defaultTestVariations: [TestVariation] = [.enabled, .disabled]
    |                |- warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultTestVariations' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     public init(from decoder: Decoder) throws {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:10:15: note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:14:16: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
   |                |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     // MARK: Type definitions
[31/38] Emitting module FeatureFlags
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:38:23: warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |     }
 37 |
 38 |     public static var configurationType: ConfigurationType = {
    |                       |- warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationType' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationType' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |         for configurationType in ConfigurationType.allCases {
 40 |             if bundledConfigurationURL(configurationType) != nil {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:26:23: warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 |
 25 |     /// Defaults configuration URL to bundled configuration detecting the type of config when set
 26 |     public static var configurationURL: URL? = bundledConfigurationURL() {
    |                       |- warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |         didSet { // detect configuration format by extension
 28 |             guard let lastPathComponent = configurationURL?.lastPathComponent.lowercased() else { return }
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:95:23: warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 93 |
 94 |     /// Whether or not the app is running in development mode
 95 |     public static var isDevelopment: Bool = false
    |                       |- warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isDevelopment' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isDevelopment' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |
 97 |     static func isNoLongerUnderDevelopment(named name: Feature.Name) {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:111:23: warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
109 |
110 |     /// Where using a remote URL, a local fallback file may be specified
111 |     public static var localFallbackConfigurationURL: URL?
    |                       |- warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'localFallbackConfigurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'localFallbackConfigurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |
113 |     /// Prints status of all feature flags
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Feature+Codable.swift:24:16: warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
 22 |         case labels = "labels"
 23 |     }
 24 |     static let defaultTestVariations: [TestVariation] = [.enabled, .disabled]
    |                |- warning: static property 'defaultTestVariations' is not concurrency-safe because non-'Sendable' type '[TestVariation]' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'defaultTestVariations' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 25 |
 26 |     public init(from decoder: Decoder) throws {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:10:15: note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:13:16: warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
   |                |- warning: static property 'min' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'min' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
15 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/Percentage.swift:14:16: warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct Percentage: RawRepresentable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     static let min: Percentage = Percentage(rawValue: 0.0)
14 |     static let max: Percentage = Percentage(rawValue: 100.0)
   |                |- warning: static property 'max' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: annotate 'max' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |
16 |     // MARK: Type definitions
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:15:23: warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
   |                       |- warning: static property 'a' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'a' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:16:23: warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
   |                       |- warning: static property 'b' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'b' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:17:23: warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
   |                       |- warning: static property 'c' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'c' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:18:23: warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
16 |     public static let b = Test.Variation(rawValue: "B")
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
   |                       |- warning: static property 'd' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'd' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:19:23: warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
17 |     public static let c = Test.Variation(rawValue: "C")
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
   |                       |- warning: static property 'e' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'e' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     public static let f = Test.Variation(rawValue: "F")
21 |
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:20:23: warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
18 |     public static let d = Test.Variation(rawValue: "D")
19 |     public static let e = Test.Variation(rawValue: "E")
20 |     public static let f = Test.Variation(rawValue: "F")
   |                       |- warning: static property 'f' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'f' with '@MainActor' 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 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:23:23: warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
   :
21 |
22 |     // Note: A logic error has occurred and a Test.Variation could not be assigned.
23 |     public static let unassigned = Test.Variation(rawValue: "Unassigned")
   |                       |- warning: static property 'unassigned' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'unassigned' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     private static let disabledRawValues = ["disabled", "off"]
[32/38] Compiling FeatureFlags FeatureFlags+Internal.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:38:23: warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |     }
 37 |
 38 |     public static var configurationType: ConfigurationType = {
    |                       |- warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationType' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationType' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |         for configurationType in ConfigurationType.allCases {
 40 |             if bundledConfigurationURL(configurationType) != nil {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:26:23: warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 |
 25 |     /// Defaults configuration URL to bundled configuration detecting the type of config when set
 26 |     public static var configurationURL: URL? = bundledConfigurationURL() {
    |                       |- warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |         didSet { // detect configuration format by extension
 28 |             guard let lastPathComponent = configurationURL?.lastPathComponent.lowercased() else { return }
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:111:23: warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
109 |
110 |     /// Where using a remote URL, a local fallback file may be specified
111 |     public static var localFallbackConfigurationURL: URL?
    |                       |- warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'localFallbackConfigurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'localFallbackConfigurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |
113 |     /// Prints status of all feature flags
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:95:23: warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 93 |
 94 |     /// Whether or not the app is running in development mode
 95 |     public static var isDevelopment: Bool = false
    |                       |- warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isDevelopment' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isDevelopment' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |
 97 |     static func isNoLongerUnderDevelopment(named name: Feature.Name) {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
[33/38] Compiling FeatureFlags FeatureFlags.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:38:23: warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |     }
 37 |
 38 |     public static var configurationType: ConfigurationType = {
    |                       |- warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationType' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationType' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |         for configurationType in ConfigurationType.allCases {
 40 |             if bundledConfigurationURL(configurationType) != nil {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:26:23: warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 |
 25 |     /// Defaults configuration URL to bundled configuration detecting the type of config when set
 26 |     public static var configurationURL: URL? = bundledConfigurationURL() {
    |                       |- warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |         didSet { // detect configuration format by extension
 28 |             guard let lastPathComponent = configurationURL?.lastPathComponent.lowercased() else { return }
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:111:23: warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
109 |
110 |     /// Where using a remote URL, a local fallback file may be specified
111 |     public static var localFallbackConfigurationURL: URL?
    |                       |- warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'localFallbackConfigurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'localFallbackConfigurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |
113 |     /// Prints status of all feature flags
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:95:23: warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 93 |
 94 |     /// Whether or not the app is running in development mode
 95 |     public static var isDevelopment: Bool = false
    |                       |- warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isDevelopment' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isDevelopment' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |
 97 |     static func isNoLongerUnderDevelopment(named name: Feature.Name) {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
[34/38] Compiling FeatureFlags FeatureFlagsAdapter.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:38:23: warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |     }
 37 |
 38 |     public static var configurationType: ConfigurationType = {
    |                       |- warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationType' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationType' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |         for configurationType in ConfigurationType.allCases {
 40 |             if bundledConfigurationURL(configurationType) != nil {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:26:23: warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 |
 25 |     /// Defaults configuration URL to bundled configuration detecting the type of config when set
 26 |     public static var configurationURL: URL? = bundledConfigurationURL() {
    |                       |- warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |         didSet { // detect configuration format by extension
 28 |             guard let lastPathComponent = configurationURL?.lastPathComponent.lowercased() else { return }
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:111:23: warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
109 |
110 |     /// Where using a remote URL, a local fallback file may be specified
111 |     public static var localFallbackConfigurationURL: URL?
    |                       |- warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'localFallbackConfigurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'localFallbackConfigurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |
113 |     /// Prints status of all feature flags
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:95:23: warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 93 |
 94 |     /// Whether or not the app is running in development mode
 95 |     public static var isDevelopment: Bool = false
    |                       |- warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isDevelopment' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isDevelopment' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |
 97 |     static func isNoLongerUnderDevelopment(named name: Feature.Name) {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
[35/38] Compiling FeatureFlags CollectionAdditions.swift
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:38:23: warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |     }
 37 |
 38 |     public static var configurationType: ConfigurationType = {
    |                       |- warning: static property 'configurationType' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationType' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationType' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |         for configurationType in ConfigurationType.allCases {
 40 |             if bundledConfigurationURL(configurationType) != nil {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags+Internal.swift:42:16: warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |     }
 41 |
 42 |     static var configuration: [Feature]? = loadConfiguration()
    |                |- warning: static property 'configuration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'configuration' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |
 44 |     static let configurationName: String = "Features"
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:26:23: warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 24 |
 25 |     /// Defaults configuration URL to bundled configuration detecting the type of config when set
 26 |     public static var configurationURL: URL? = bundledConfigurationURL() {
    |                       |- warning: static property 'configurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'configurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'configurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 27 |         didSet { // detect configuration format by extension
 28 |             guard let lastPathComponent = configurationURL?.lastPathComponent.lowercased() else { return }
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:111:23: warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
109 |
110 |     /// Where using a remote URL, a local fallback file may be specified
111 |     public static var localFallbackConfigurationURL: URL?
    |                       |- warning: static property 'localFallbackConfigurationURL' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'localFallbackConfigurationURL' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'localFallbackConfigurationURL' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
112 |
113 |     /// Prints status of all feature flags
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Core/FeatureFlags.swift:95:23: warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 93 |
 94 |     /// Whether or not the app is running in development mode
 95 |     public static var isDevelopment: Bool = false
    |                       |- warning: static property 'isDevelopment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isDevelopment' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isDevelopment' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 96 |
 97 |     static func isNoLongerUnderDevelopment(named name: Feature.Name) {
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:13:23: warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
   |                       |- warning: static property 'enabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'enabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
15 |     public static let a = Test.Variation(rawValue: "A")
/Users/admin/builder/spi-builder-workspace/FeatureFlags/Classes/Model/TestVariation.swift:14:23: warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
 8 | import Foundation
 9 |
10 | public struct TestVariation: RawRepresentable {
   |               `- note: consider making struct 'TestVariation' conform to the 'Sendable' protocol
11 |
12 |     // MARK: Global state
13 |     public static let enabled = Test.Variation(rawValue: "Enabled")
14 |     public static let disabled = Test.Variation(rawValue: "Disabled")
   |                       |- warning: static property 'disabled' is not concurrency-safe because non-'Sendable' type 'Test.Variation' (aka 'TestVariation') may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'disabled' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let a = Test.Variation(rawValue: "A")
16 |     public static let b = Test.Variation(rawValue: "B")
[36/38] Compiling FeatureFlags PickerViewController.swift
[37/38] Compiling FeatureFlags TestVariationPickerViewController.swift
[38/38] Compiling FeatureFlags PickerOptionsViewModel.swift
Build complete! (21.96s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FeatureFlags",
  "name" : "FeatureFlags",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    }
  ],
  "products" : [
    {
      "name" : "FeatureFlags",
      "targets" : [
        "FeatureFlags"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FeatureFlags",
      "module_type" : "SwiftTarget",
      "name" : "FeatureFlags",
      "path" : "FeatureFlags",
      "product_memberships" : [
        "FeatureFlags"
      ],
      "sources" : [
        "Classes/Core/FeatureFlags+Internal.swift",
        "Classes/Core/FeatureFlags.swift",
        "Classes/Core/FeatureFlagsAdapter.swift",
        "Classes/Extensions/CollectionAdditions.swift",
        "Classes/Extensions/UIColorAdditions.swift",
        "Classes/Model/ConfigurationType.swift",
        "Classes/Model/Feature+Codable.swift",
        "Classes/Model/Feature+Equatable.swift",
        "Classes/Model/Feature.swift",
        "Classes/Model/FeatureName.swift",
        "Classes/Model/FeatureTest.swift",
        "Classes/Model/FeatureType.swift",
        "Classes/Model/FeaturesModel.swift",
        "Classes/Model/Percentage.swift",
        "Classes/Model/Test.swift",
        "Classes/Model/TestVariation.swift",
        "Classes/Services/Parsing/Implementation/JSONParsingService.swift",
        "Classes/Services/Parsing/Implementation/PropertyListParsingService.swift",
        "Classes/Services/Parsing/Model/ParsingServiceResult.swift",
        "Classes/Services/Parsing/Protocol/ParsingService.swift",
        "Classes/UI/Details/View Controller/FeatureDetailsViewController.swift",
        "Classes/UI/Feature Flags/Shared/UIControl.swift",
        "Classes/UI/Feature Flags/View Controller/CloseButtonAlignment.swift",
        "Classes/UI/Feature Flags/View Controller/FeatureFlagsViewController+UIViewControllerPreviewingDelegate.swift",
        "Classes/UI/Feature Flags/View Controller/FeatureFlagsViewController.swift",
        "Classes/UI/Feature Flags/View Controller/FeatureFlagsViewControllerDelegate.swift",
        "Classes/UI/Feature Flags/View Controller/Filter.swift",
        "Classes/UI/Feature Flags/View Controller/NavigationSettings.swift",
        "Classes/UI/Feature Flags/View Model/FeatureFlagsViewModel.swift",
        "Classes/UI/Feature Flags/Views/FeatureFlagTableViewCell.swift",
        "Classes/UI/FeatureFlagsUI.swift",
        "Classes/UI/FeatureFlagsUIObserver.swift",
        "Classes/UI/Picker/View Controller/PickerViewController.swift",
        "Classes/UI/Picker/View Controller/TestVariationPickerViewController.swift",
        "Classes/UI/Picker/View Model/PickerOptionsViewModel.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.