Build Information
Successful build of Split, reference master (9e2aaf), with Swift 6.1 for macOS (SPM) on 19 Feb 2026 21:11:45 UTC.
Swift 6 data race errors: 8
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCapturesBuild Log
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | #endif
26 |
[120/318] Compiling Split SplitClientConfig.swift
/Users/admin/builder/spi-builder-workspace/Split/Api/DefaultSplitFactoryBuilder.swift:39:28: warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
37 | nonisolated(unsafe) private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
38 | #else
39 | private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
| |- warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'factoryMonitor' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | #endif
41 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Validators/FactoryMonitor.swift:82:10: note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
80 | }
81 |
82 | protocol FactoryMonitor {
| `- note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
83 | var allCount: Int { get }
84 | func instanceCount(for apiKey: String) -> Int
/Users/admin/builder/spi-builder-workspace/Split/Api/SplitDatabaseHelper.swift:24:24: warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 | nonisolated(unsafe) static private var storageLockMap: [String: NSLock] = [:]
23 | #else
24 | static private var storageLockMap: [String: NSLock] = [:]
| |- warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'storageLockMap' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'storageLockMap' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | #endif
26 |
[121/318] Compiling Split SplitClientManager.swift
/Users/admin/builder/spi-builder-workspace/Split/Api/DefaultSplitFactoryBuilder.swift:39:28: warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
37 | nonisolated(unsafe) private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
38 | #else
39 | private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
| |- warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'factoryMonitor' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | #endif
41 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Validators/FactoryMonitor.swift:82:10: note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
80 | }
81 |
82 | protocol FactoryMonitor {
| `- note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
83 | var allCount: Int { get }
84 | func instanceCount(for apiKey: String) -> Int
/Users/admin/builder/spi-builder-workspace/Split/Api/SplitDatabaseHelper.swift:24:24: warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 | nonisolated(unsafe) static private var storageLockMap: [String: NSLock] = [:]
23 | #else
24 | static private var storageLockMap: [String: NSLock] = [:]
| |- warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'storageLockMap' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'storageLockMap' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | #endif
26 |
[122/318] Compiling Split SplitDatabaseHelper.swift
/Users/admin/builder/spi-builder-workspace/Split/Api/DefaultSplitFactoryBuilder.swift:39:28: warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
37 | nonisolated(unsafe) private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
38 | #else
39 | private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
| |- warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'factoryMonitor' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | #endif
41 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Validators/FactoryMonitor.swift:82:10: note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
80 | }
81 |
82 | protocol FactoryMonitor {
| `- note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
83 | var allCount: Int { get }
84 | func instanceCount(for apiKey: String) -> Int
/Users/admin/builder/spi-builder-workspace/Split/Api/SplitDatabaseHelper.swift:24:24: warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 | nonisolated(unsafe) static private var storageLockMap: [String: NSLock] = [:]
23 | #else
24 | static private var storageLockMap: [String: NSLock] = [:]
| |- warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'storageLockMap' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'storageLockMap' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | #endif
26 |
[123/318] Compiling Split SplitEncryptionLevel.swift
/Users/admin/builder/spi-builder-workspace/Split/Api/DefaultSplitFactoryBuilder.swift:39:28: warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
37 | nonisolated(unsafe) private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
38 | #else
39 | private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
| |- warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'factoryMonitor' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | #endif
41 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Validators/FactoryMonitor.swift:82:10: note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
80 | }
81 |
82 | protocol FactoryMonitor {
| `- note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
83 | var allCount: Int { get }
84 | func instanceCount(for apiKey: String) -> Int
/Users/admin/builder/spi-builder-workspace/Split/Api/SplitDatabaseHelper.swift:24:24: warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 | nonisolated(unsafe) static private var storageLockMap: [String: NSLock] = [:]
23 | #else
24 | static private var storageLockMap: [String: NSLock] = [:]
| |- warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'storageLockMap' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'storageLockMap' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | #endif
26 |
[124/318] Compiling Split SplitError.swift
/Users/admin/builder/spi-builder-workspace/Split/Api/DefaultSplitFactoryBuilder.swift:39:28: warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
37 | nonisolated(unsafe) private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
38 | #else
39 | private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
| |- warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'factoryMonitor' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | #endif
41 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Validators/FactoryMonitor.swift:82:10: note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
80 | }
81 |
82 | protocol FactoryMonitor {
| `- note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
83 | var allCount: Int { get }
84 | func instanceCount(for apiKey: String) -> Int
/Users/admin/builder/spi-builder-workspace/Split/Api/SplitDatabaseHelper.swift:24:24: warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 | nonisolated(unsafe) static private var storageLockMap: [String: NSLock] = [:]
23 | #else
24 | static private var storageLockMap: [String: NSLock] = [:]
| |- warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'storageLockMap' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'storageLockMap' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | #endif
26 |
[125/318] Compiling Split SplitFactory.swift
/Users/admin/builder/spi-builder-workspace/Split/Api/DefaultSplitFactoryBuilder.swift:39:28: warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
37 | nonisolated(unsafe) private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
38 | #else
39 | private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
| |- warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'factoryMonitor' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | #endif
41 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Validators/FactoryMonitor.swift:82:10: note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
80 | }
81 |
82 | protocol FactoryMonitor {
| `- note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
83 | var allCount: Int { get }
84 | func instanceCount(for apiKey: String) -> Int
/Users/admin/builder/spi-builder-workspace/Split/Api/SplitDatabaseHelper.swift:24:24: warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 | nonisolated(unsafe) static private var storageLockMap: [String: NSLock] = [:]
23 | #else
24 | static private var storageLockMap: [String: NSLock] = [:]
| |- warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'storageLockMap' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'storageLockMap' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | #endif
26 |
[126/318] Compiling Split SplitFactoryBuilder.swift
/Users/admin/builder/spi-builder-workspace/Split/Api/DefaultSplitFactoryBuilder.swift:39:28: warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
37 | nonisolated(unsafe) private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
38 | #else
39 | private static let factoryMonitor: FactoryMonitor = { DefaultFactoryMonitor() }()
| |- warning: static property 'factoryMonitor' is not concurrency-safe because non-'Sendable' type 'any FactoryMonitor' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'factoryMonitor' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 | #endif
41 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Validators/FactoryMonitor.swift:82:10: note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
80 | }
81 |
82 | protocol FactoryMonitor {
| `- note: protocol 'FactoryMonitor' does not conform to the 'Sendable' protocol
83 | var allCount: Int { get }
84 | func instanceCount(for apiKey: String) -> Int
/Users/admin/builder/spi-builder-workspace/Split/Api/SplitDatabaseHelper.swift:24:24: warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 | nonisolated(unsafe) static private var storageLockMap: [String: NSLock] = [:]
23 | #else
24 | static private var storageLockMap: [String: NSLock] = [:]
| |- warning: static property 'storageLockMap' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'storageLockMap' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'storageLockMap' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | #endif
26 |
[127/318] Compiling Split Spec.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[128/318] Compiling Split SplitHelper.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[129/318] Compiling Split Stopwatch.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[130/318] Compiling Split ThreadUtils.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[131/318] Compiling Split Version.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[132/318] Compiling Split AnyValueValidator.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[133/318] Compiling Split ApiKeyValidator.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[134/318] Compiling Split EventValidator.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[135/318] Compiling Split FactoryMonitor.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[136/318] Compiling Split KeyValidator.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[137/318] Compiling Split PropertyValidator.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[138/318] Compiling Split SplitValidator.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[139/318] Compiling Split ValidationConfig.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[140/318] Compiling Split ValidationErrorInfo.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[141/318] Compiling Split ValidatorMessageLogger.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[142/318] Compiling Split YAMLOperators.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[143/318] Compiling Split YAMLParser.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[144/318] Compiling Split YAMLRegex.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[145/318] Compiling Split YAMLResult.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[146/318] Compiling Split YAMLTokenizer.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[147/318] Compiling Split Yaml.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[148/318] Compiling Split SplitConstants.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[149/318] Compiling Split DefaultTreatmentManager.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[150/318] Compiling Split Evaluator.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Spec.swift:14:20: warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 | nonisolated(unsafe) static var flagsSpec = "1.3"
13 | #else
14 | static var flagsSpec = "1.3"
| |- warning: static property 'flagsSpec' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'flagsSpec' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'flagsSpec' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | #endif
16 | }
[151/318] Compiling Split ImpressionsCount.swift
[152/318] Compiling Split ImpressionsCountEntity.swift
[153/318] Compiling Split ImpressionsCountPerFeature.swift
[154/318] Compiling Split ImpressionsCounter.swift
[155/318] Compiling Split ImpressionsTest.swift
[156/318] Compiling Split KeyImpression.swift
[157/318] Compiling Split UniqueKey.swift
[158/318] Compiling Split UniqueKeys.swift
[159/318] Compiling Split RolloutCacheManager.swift
[160/318] Compiling Split SplitComponentCatalog.swift
[161/318] Compiling Split SplitComponentFactory.swift
[162/318] Compiling Split LocalhostApiDataSource.swift
[163/318] Compiling Split LocalhostClientManager.swift
[164/318] Compiling Split LocalhostFileDataSource.swift
[165/318] Compiling Split LocalhostSplitsParser.swift
[166/318] Compiling Split LocalhostSplitsStorage.swift
[167/318] Compiling Split LocalhostSynchronizer.swift
[168/318] Compiling Split SpaceDelimitedLocalhostSplitsParser.swift
[169/318] Compiling Split YamlLocalhostSplitsParser.swift
[170/318] Compiling Split AllKeysMatcher.swift
[171/318] Compiling Split BaseMatcher.swift
[172/318] Compiling Split BetweenMatcher.swift
[173/318] Compiling Split ContainsAllOfSetMatcher.swift
[174/318] Compiling Split ContainsAnyOfSetMatcher.swift
[175/366] Compiling Split ContainsStringMatcher.swift
[176/366] Compiling Split DateTime.swift
[177/366] Compiling Split DependencyMatcher.swift
[178/366] Compiling Split EndsWithMatcher.swift
[179/366] Compiling Split EqualToBooleanMatcher.swift
[180/366] Compiling Split EqualToMatcher.swift
[181/366] Compiling Split EqualToSetMatcher.swift
[182/366] Compiling Split GreaterThanOrEqualToMatcher.swift
[183/366] Compiling Split InRuleBasedSegmentMatcher.swift
[184/366] Compiling Split InSegmentMatcher.swift
[185/366] Compiling Split LessThanOrEqualToMatcher.swift
[186/366] Compiling Split MatchesStringMatcher.swift
[187/366] Compiling Split PartOfSetMatcher.swift
[188/366] Compiling Split PrerequisitesMatcher.swift
[189/366] Compiling Split BetweenSemverMatcher.swift
[190/366] Compiling Split EqualToSemverMatcher.swift
[191/366] Compiling Split GreaterThanOrEqualToSemverMatcher.swift
[192/366] Compiling Split InListSemverMatcher.swift
[193/366] Compiling Split LessThanOrEqualToSemverMatcher.swift
[194/366] Compiling Split Semver.swift
[195/366] Compiling Split StartWithMatcher.swift
[196/366] Compiling Split Whitelist.swift
[197/366] Compiling Split BetweenMatcherData.swift
[198/366] Compiling Split BetweenStringMatcherData.swift
[199/366] Compiling Split UInt64+bits.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[200/366] Compiling Split ServiceConstants.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[201/366] Compiling Split ConcurrentArrayQueue.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[202/366] Compiling Split ConcurrentDictionary.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[203/366] Compiling Split ConcurrentDictionaryList.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[204/366] Compiling Split ConcurrentSet.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[205/366] Compiling Split KeyStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[206/366] Compiling Split LRUCache.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[207/366] Compiling Split SynchronizedDictionary.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[208/366] Compiling Split SynchronizedDictionaryComposed.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[209/366] Compiling Split SynchronizedDictionarySet.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[210/366] Compiling Split SynchronizedList.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[211/366] Compiling Split Atomic.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[212/366] Compiling Split Base64Utils.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[213/366] Compiling Split CastUtils.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[214/366] Compiling Split Cipher.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[215/366] Compiling Split CompressionUtil.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[216/366] Compiling Split DbCipher.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[217/366] Compiling Split DbEncryptionManager.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[218/366] Compiling Split FileUtil.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[219/366] Compiling Split InfoUtils.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[220/366] Compiling Split Logger.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[221/366] Compiling Split NotificationsHelper.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[222/366] Compiling Split PeriodicTaskManager.swift
/Users/admin/builder/spi-builder-workspace/Split/Common/ServiceConstants.swift:17:20: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
15 | nonisolated(unsafe) static var values: Values?
16 | #else
17 | static var values: Values?
| |- warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 | #endif
19 |
/Users/admin/builder/spi-builder-workspace/Split/Common/Utils/Logger.swift:15:28: warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static var startTime: Int64 = 0
14 | #else
15 | private static var startTime: Int64 = 0
| |- warning: static property 'startTime' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'startTime' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'startTime' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
[223/366] Compiling Split ImpressionsRecorderWorker.swift
[224/366] Compiling Split PeriodicRecorderWorker.swift
[225/366] Compiling Split RecorderWorker.swift
[226/366] Compiling Split TelemetryConfigRecorder.swift
[227/366] Compiling Split TelemetryConfigRecorderWorker.swift
[228/366] Compiling Split TelemetryStatsRecorder.swift
[229/366] Compiling Split TelemetryStatsRecorderWorker.swift
[230/366] Compiling Split UniqueKeysRecorder.swift
[231/366] Compiling Split UniqueKeysRecorderWorker.swift
[232/366] Compiling Split BackgroundSyncWorker.swift
[233/366] Compiling Split ChangesChecker.swift
[234/366] Compiling Split EmptyMySegmentsStorage.swift
[235/366] Compiling Split PeriodicSyncWorker.swift
[236/366] Compiling Split QueryableMySegmentsFetcher.swift
[237/366] Compiling Split RetryableSegmentsSyncWorker.swift
[238/366] Compiling Split RetryableSyncWorker.swift
[239/366] Compiling Split SplitBgSynchronizer.swift
[240/366] Compiling Split SplitsSyncHelper.swift
[241/366] Compiling Split SyncHelper.swift
[242/366] Compiling Split DecoratedImpression.swift
[243/366] Compiling Split DefaultImpressionsObserver.swift
[244/366] Compiling Split HashedImpression.swift
[245/366] Compiling Split Impression.swift
[246/366] Compiling Split ImpressionsConstants.swift
[247/366] Compiling Split UniqueKeyTracker.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[248/366] Compiling Split SecureDataStore.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[249/366] Compiling Split AttributeEntity.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[250/366] Compiling Split AttributeMap.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[251/366] Compiling Split AttributesDao.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[252/366] Compiling Split AttributesStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[253/366] Compiling Split ByKeyAttributesStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[254/366] Compiling Split OneKeyAttributesStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[255/366] Compiling Split OneKeyPersistentAttributesStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[256/366] Compiling Split PersistentAttributesStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[257/366] Compiling Split CoreDataContextBuilder.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[258/366] Compiling Split CoreDataHelper.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[259/366] Compiling Split DefaultFileStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[260/366] Compiling Split EventDao.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[261/366] Compiling Split EventEntity.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[262/366] Compiling Split EventsStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[263/366] Compiling Split PersistentEventsStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[264/366] Compiling Split FileStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[265/366] Compiling Split GeneralInfoDao.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[266/366] Compiling Split GeneralInfoEntity.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[267/366] Compiling Split GeneralInfoStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[268/366] Compiling Split GlobalSecureStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[269/366] Compiling Split KeyValueStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[270/366] Compiling Split HashedImpressionDao.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:15:28: warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
13 | nonisolated(unsafe) private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
14 | #else
15 | private static let prodStorage: KeyValueStorage = GlobalSecureStorage()
| |- warning: static property 'prodStorage' is not concurrency-safe because non-'Sendable' type 'any KeyValueStorage' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'prodStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | #endif
17 |
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/KeyValueStorage.swift:30:10: note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
28 | }
29 |
30 | protocol KeyValueStorage {
| `- note: protocol 'KeyValueStorage' does not conform to the 'Sendable' protocol
31 | func set<T: Encodable>(item: T, for key: SecureItem)
32 | func getInt(item: SecureItem) -> Int?
/Users/admin/builder/spi-builder-workspace/Split/Storage/Global/GlobalSecureStorage.swift:22:20: warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | nonisolated(unsafe) static var testStorage: KeyValueStorage?
21 | #else
22 | static var testStorage: KeyValueStorage?
| |- warning: static property 'testStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'testStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'testStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 | #endif
24 |
[271/366] Compiling Split HashedImpressionEntity.swift
[272/366] Compiling Split HashedImpressionStorage.swift
[273/366] Compiling Split PersistentHashedImpressionsStorage.swift
[274/366] Compiling Split ImpressionDao.swift
[275/366] Compiling Split ImpressionEntity.swift
[276/366] Compiling Split ImpressionsCountDao.swift
[277/366] Compiling Split ImpressionsMode.swift
[278/366] Compiling Split ImpressionsStorage.swift
[279/366] Compiling Split PersistentImpressionsCountStorage.swift
[280/366] Compiling Split PersistentImpressionsStorage.swift
[281/366] Compiling Split LegacyStorageCleaner.swift
[282/366] Compiling Split ByKeyMySegmentsStorage.swift
[283/366] Compiling Split MyLargeSegmentsStorage.swift
[284/366] Compiling Split MySegmentEntity.swift
[285/366] Compiling Split MySegmentsDao.swift
[286/366] Compiling Split MySegmentsStorage.swift
[287/366] Compiling Split PersistentMySegmentsStorage.swift
[288/366] Compiling Split PersistenceBreaker.swift
[289/366] Compiling Split RolloutDefinitionsCache.swift
[290/366] Compiling Split PersistentRuleBasedSegmentsStorage.swift
[291/366] Compiling Split ProcessedRuleBasedSegmentChange.swift
[292/366] Compiling Split RuleBasedSegment.swift
[293/366] Compiling Split RuleBasedSegmentDao.swift
[294/366] Compiling Split RuleBasedSegmentEntity.swift
[295/366] Compiling Split RestClient+ImpressionsCount.swift
[296/366] Compiling Split RestClient+MySegments.swift
[297/366] Compiling Split RestClient+SplitChanges.swift
[298/366] Compiling Split RestClient+SseAuthenticator.swift
[299/366] Compiling Split RestClient+TelemetryConfig.swift
[300/366] Compiling Split RestClient+TelemetryStats.swift
[301/366] Compiling Split RestClient+TrackEvents.swift
[302/366] Compiling Split RestClient+UniqueKeys.swift
[303/366] Compiling Split RestClient.swift
[304/366] Compiling Split AllSegmentsChange.swift
[305/366] Compiling Split DataResult.swift
[306/366] Compiling Split SegmentsChange.swift
[307/366] Compiling Split HostDomainFilter.swift
[308/366] Compiling Split PublicKeyHeaders.swift
[309/366] Compiling Split TlsPinChecker.swift
[310/366] Compiling Split BackoffCounterTimer.swift
[311/366] Compiling Split DefaultSseNotificationParser.swift
[312/366] Compiling Split EventStreamParser.swift
[313/366] Compiling Split FeatureFlagsPayloadDecoder.swift
[314/366] Compiling Split JwtTokenParser.swift
[315/366] Compiling Split MySegmentsPayloadDecoder.swift
[316/366] Compiling Split NotificationManagerKeeper.swift
[317/366] Compiling Split PushNotificationManager.swift
[318/366] Compiling Split ReconnectBackoffCounter.swift
[319/366] Compiling Split RuleBasedSegmentsDecoder.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[320/366] Compiling Split RuleBasedSegmentsEncoder.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[321/366] Compiling Split RuleBasedSegmentsStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[322/366] Compiling Split SplitDatabase.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[323/366] Compiling Split FlagSetsCache.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[324/366] Compiling Split PersistentSplitsStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[325/366] Compiling Split ProcessedSplitChange.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[326/366] Compiling Split SplitDao.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[327/366] Compiling Split SplitEntity.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[328/366] Compiling Split SplitsDecoder.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[329/366] Compiling Split SplitsEncoder.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[330/366] Compiling Split SplitsSnapshot.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[331/366] Compiling Split SplitsStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[332/366] Compiling Split StorageHelper.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[333/366] Compiling Split PersistentUniqueKeysStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[334/366] Compiling Split UniqueKeyDao.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[335/366] Compiling Split UniqueKeyEntity.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[336/366] Compiling Split LatencyCounter.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[337/366] Compiling Split TelemetryConfig.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[338/366] Compiling Split TelemetryInMemoryStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[339/366] Compiling Split TelemetryStats.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[340/366] Compiling Split TelemetryStorage.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[341/366] Compiling Split EventDTO.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[342/366] Compiling Split resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsDecoder.swift:55:21: warning: mutation of captured var 'splits' in concurrently-executing code
53 | let parsed = serialDecoder.decode(chunk)
54 | dataQueue.sync {
55 | splits.append(contentsOf: parsed)
| `- warning: mutation of captured var 'splits' in concurrently-executing code
56 | }
57 | }
/Users/admin/builder/spi-builder-workspace/Split/Storage/Splits/SplitsEncoder.swift:57:21: warning: mutation of captured var 'splitsJson' in concurrently-executing code
55 | let parsed = serialEncoder.encode(splits)
56 | dataQueue.sync {
57 | splitsJson.merge( parsed, uniquingKeysWith: {(_, new) in new })
| `- warning: mutation of captured var 'splitsJson' in concurrently-executing code
58 | }
59 | }
[343/366] Compiling Split RetryableSplitsUpdateWorkerFactory.swift
[344/366] Compiling Split SegmentsPayloadDecoder.swift
[345/366] Compiling Split SseAuthenticator.swift
[346/366] Compiling Split SseClient.swift
[347/366] Compiling Split SseClientFactory.swift
[348/366] Compiling Split SseConnectionHandler.swift
[349/366] Compiling Split SseHandler.swift
[350/366] Compiling Split SseNotificationProcessor.swift
[351/366] Compiling Split SseNotifications.swift
[352/366] Compiling Split SyncEventBroadcaster.swift
[353/366] Compiling Split SyncSegmentsUpdateWorker.swift
[354/366] Compiling Split SyncUpdateWorker.swift
[355/366] Compiling Split Timers.swift
[356/366] Compiling Split ByKeyFacade.swift
[357/366] Compiling Split EventsSynchronizer.swift
[358/366] Compiling Split FeatureFlagsSynchronizer.swift
[359/366] Compiling Split ImpressionsTracker.swift
[360/366] Compiling Split MySegmentsSynchronizer.swift
[361/366] Compiling Split SyncCommons.swift
[362/366] Compiling Split SyncGuardian.swift
[363/366] Compiling Split SyncManager.swift
[364/366] Compiling Split SyncManagerBuilder.swift
[365/366] Compiling Split Synchronizer.swift
[366/366] Compiling Split TelemetrySynchronizer.swift
Build complete! (10.35s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Split",
"name" : "Split",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "9.0"
},
{
"name" : "macos",
"version" : "10.11"
},
{
"name" : "watchos",
"version" : "7.0"
},
{
"name" : "tvos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "Split",
"targets" : [
"Split"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Split",
"module_type" : "SwiftTarget",
"name" : "Split",
"path" : "Split",
"product_memberships" : [
"Split"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Split/Storage/split_cache.xcdatamodeld",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Api/CertificatePinningConfig.swift",
"Api/DefaultSplitClient.swift",
"Api/DefaultSplitFactory.swift",
"Api/DefaultSplitFactoryBuilder.swift",
"Api/DefaultSplitManager.swift",
"Api/Destroyable.swift",
"Api/EvaluationOptions.swift",
"Api/EventsTracker.swift",
"Api/FailHelpers.swift",
"Api/FilterBuilder.swift",
"Api/FlagSetsValidator.swift",
"Api/InternalSplitClient.swift",
"Api/LocalhostSplitClient.swift",
"Api/LocalhostSplitFactory.swift",
"Api/RolloutCacheConfiguration.swift",
"Api/SplitApiFacade.swift",
"Api/SplitCertPinningAuthenticator.swift",
"Api/SplitClient.swift",
"Api/SplitClientConfig.swift",
"Api/SplitClientManager.swift",
"Api/SplitDatabaseHelper.swift",
"Api/SplitEncryptionLevel.swift",
"Api/SplitError.swift",
"Api/SplitFactory.swift",
"Api/SplitFactoryBuilder.swift",
"Api/SplitFilter.swift",
"Api/SplitHttpsAuthenticator.swift",
"Api/SplitLocalhostDataSource.swift",
"Api/SplitLogLevel.swift",
"Api/SplitManager.swift",
"Api/SplitResult.swift",
"Api/SplitView.swift",
"Api/SyncConfig.swift",
"Api/TelemetryConfigHelper.swift",
"Api/UserConsentManager.swift",
"Common/Config/UserConsent.swift",
"Common/Extensions/Array+Chunked.swift",
"Common/Extensions/Array+DynamicCodable.swift",
"Common/Extensions/Array+asSet.swift",
"Common/Extensions/Bundle+Finder.swift",
"Common/Extensions/Bundle+Name.swift",
"Common/Extensions/Data+StringRepresentation.swift",
"Common/Extensions/Date+Utils.swift",
"Common/Extensions/Dictionary+DynamicCodable.swift",
"Common/Extensions/Dictionary+Extensions.swift",
"Common/Extensions/Dictionary+JSON.swift",
"Common/Extensions/Int+Extension.swift",
"Common/Extensions/Set+Extension.swift",
"Common/Extensions/SplitView+StringConvertible.swift",
"Common/Extensions/String+Utils.swift",
"Common/Extensions/UInt64+bits.swift",
"Common/ServiceConstants.swift",
"Common/Structs/ConcurrentArrayQueue.swift",
"Common/Structs/ConcurrentDictionary.swift",
"Common/Structs/ConcurrentDictionaryList.swift",
"Common/Structs/ConcurrentSet.swift",
"Common/Structs/KeyStorage.swift",
"Common/Structs/LRUCache.swift",
"Common/Structs/SynchronizedDictionary.swift",
"Common/Structs/SynchronizedDictionaryComposed.swift",
"Common/Structs/SynchronizedDictionarySet.swift",
"Common/Structs/SynchronizedList.swift",
"Common/Utils/Atomic.swift",
"Common/Utils/Base64Utils.swift",
"Common/Utils/CastUtils.swift",
"Common/Utils/Cipher.swift",
"Common/Utils/CompressionUtil.swift",
"Common/Utils/DbCipher.swift",
"Common/Utils/DbEncryptionManager.swift",
"Common/Utils/FileUtil.swift",
"Common/Utils/InfoUtils.swift",
"Common/Utils/Logger.swift",
"Common/Utils/NotificationsHelper.swift",
"Common/Utils/PeriodicTaskManager.swift",
"Common/Utils/Spec.swift",
"Common/Utils/SplitHelper.swift",
"Common/Utils/Stopwatch.swift",
"Common/Utils/ThreadUtils.swift",
"Common/Utils/Version.swift",
"Common/Validators/AnyValueValidator.swift",
"Common/Validators/ApiKeyValidator.swift",
"Common/Validators/EventValidator.swift",
"Common/Validators/FactoryMonitor.swift",
"Common/Validators/KeyValidator.swift",
"Common/Validators/PropertyValidator.swift",
"Common/Validators/SplitValidator.swift",
"Common/Validators/ValidationConfig.swift",
"Common/Validators/ValidationErrorInfo.swift",
"Common/Validators/ValidatorMessageLogger.swift",
"Common/Yaml/YAMLOperators.swift",
"Common/Yaml/YAMLParser.swift",
"Common/Yaml/YAMLRegex.swift",
"Common/Yaml/YAMLResult.swift",
"Common/Yaml/YAMLTokenizer.swift",
"Common/Yaml/Yaml.swift",
"Engine/Constants/SplitConstants.swift",
"Engine/DefaultTreatmentManager.swift",
"Engine/Evaluator.swift",
"Engine/EvaluatorError.swift",
"Engine/FallbackTreatments/FallbackSanitizer.swift",
"Engine/FallbackTreatments/FallbackTreatments.swift",
"Engine/FallbackTreatments/FallbackTreatmentsCalculator.swift",
"Engine/Hashing/LegacyHash.swift",
"Engine/Hashing/Murmur3Hash.swift",
"Engine/Hashing/Murmur64x128.swift",
"Engine/Partition.swift",
"Engine/Splitter.swift",
"Engine/TreatmentManager.swift",
"Events/EventsManagerCoordinator.swift",
"Events/SplitEvent.swift",
"Events/SplitEventActionTask.swift",
"Events/SplitEventTask.swift",
"Events/SplitEventsManager.swift",
"Events/SplitInternalEvent.swift",
"Events/SplitMetadata.swift",
"FetcherEngine/HttpMySegmentsFetcher.swift",
"FetcherEngine/HttpSplitFetcher.swift",
"FetcherEngine/Recorder/EventsRecorder.swift",
"FetcherEngine/Recorder/EventsRecorderWorker.swift",
"FetcherEngine/Recorder/ImpressionsCountRecorder.swift",
"FetcherEngine/Recorder/ImpressionsCountRecorderWorker.swift",
"FetcherEngine/Recorder/ImpressionsRecorder.swift",
"FetcherEngine/Recorder/ImpressionsRecorderWorker.swift",
"FetcherEngine/Recorder/PeriodicRecorderWorker.swift",
"FetcherEngine/Recorder/RecorderWorker.swift",
"FetcherEngine/Recorder/TelemetryConfigRecorder.swift",
"FetcherEngine/Recorder/TelemetryConfigRecorderWorker.swift",
"FetcherEngine/Recorder/TelemetryStatsRecorder.swift",
"FetcherEngine/Recorder/TelemetryStatsRecorderWorker.swift",
"FetcherEngine/Recorder/UniqueKeysRecorder.swift",
"FetcherEngine/Recorder/UniqueKeysRecorderWorker.swift",
"FetcherEngine/Refresh/BackgroundSyncWorker.swift",
"FetcherEngine/Refresh/ChangesChecker.swift",
"FetcherEngine/Refresh/EmptyMySegmentsStorage.swift",
"FetcherEngine/Refresh/PeriodicSyncWorker.swift",
"FetcherEngine/Refresh/QueryableMySegmentsFetcher.swift",
"FetcherEngine/Refresh/RetryableSegmentsSyncWorker.swift",
"FetcherEngine/Refresh/RetryableSyncWorker.swift",
"FetcherEngine/Refresh/SplitBgSynchronizer.swift",
"FetcherEngine/Refresh/SplitsSyncHelper.swift",
"FetcherEngine/SyncHelper.swift",
"Impressions/DecoratedImpression.swift",
"Impressions/DefaultImpressionsObserver.swift",
"Impressions/HashedImpression.swift",
"Impressions/Impression.swift",
"Impressions/ImpressionsConstants.swift",
"Impressions/ImpressionsCount.swift",
"Impressions/ImpressionsCountEntity.swift",
"Impressions/ImpressionsCountPerFeature.swift",
"Impressions/ImpressionsCounter.swift",
"Impressions/ImpressionsTest.swift",
"Impressions/KeyImpression.swift",
"Impressions/UniqueKey.swift",
"Impressions/UniqueKeys.swift",
"Initialization/RolloutCacheManager.swift",
"Initialization/SplitComponentCatalog.swift",
"Initialization/SplitComponentFactory.swift",
"Localhost/LocalhostApiDataSource.swift",
"Localhost/LocalhostClientManager.swift",
"Localhost/LocalhostFileDataSource.swift",
"Localhost/LocalhostSplitsParser.swift",
"Localhost/LocalhostSplitsStorage.swift",
"Localhost/LocalhostSynchronizer.swift",
"Localhost/SpaceDelimitedLocalhostSplitsParser.swift",
"Localhost/YamlLocalhostSplitsParser.swift",
"Matchers/AllKeysMatcher.swift",
"Matchers/BaseMatcher.swift",
"Matchers/BetweenMatcher.swift",
"Matchers/ContainsAllOfSetMatcher.swift",
"Matchers/ContainsAnyOfSetMatcher.swift",
"Matchers/ContainsStringMatcher.swift",
"Matchers/DataType/DateTime.swift",
"Matchers/DependencyMatcher.swift",
"Matchers/EndsWithMatcher.swift",
"Matchers/EqualToBooleanMatcher.swift",
"Matchers/EqualToMatcher.swift",
"Matchers/EqualToSetMatcher.swift",
"Matchers/GreaterThanOrEqualToMatcher.swift",
"Matchers/InRuleBasedSegmentMatcher.swift",
"Matchers/InSegmentMatcher.swift",
"Matchers/LessThanOrEqualToMatcher.swift",
"Matchers/MatchesStringMatcher.swift",
"Matchers/PartOfSetMatcher.swift",
"Matchers/PrerequisitesMatcher.swift",
"Matchers/Semver/BetweenSemverMatcher.swift",
"Matchers/Semver/EqualToSemverMatcher.swift",
"Matchers/Semver/GreaterThanOrEqualToSemverMatcher.swift",
"Matchers/Semver/InListSemverMatcher.swift",
"Matchers/Semver/LessThanOrEqualToSemverMatcher.swift",
"Matchers/Semver/Semver.swift",
"Matchers/StartWithMatcher.swift",
"Matchers/Whitelist.swift",
"Models/BetweenMatcherData.swift",
"Models/BetweenStringMatcherData.swift",
"Models/Condition.swift",
"Models/ConditionType.swift",
"Models/DataType.swift",
"Models/DependencyMatcherData.swift",
"Models/Extensions/SplitModels+StringConvertible.swift",
"Models/Key.swift",
"Models/KeySelector.swift",
"Models/Matcher.swift",
"Models/MatcherCombiner.swift",
"Models/MatcherGroup.swift",
"Models/MatcherProtocol.swift",
"Models/MatcherType.swift",
"Models/Segment.swift",
"Models/SplitModel/RuleBasedSegmentChange.swift",
"Models/SplitModel/Split.swift",
"Models/SplitModel/SplitBase.swift",
"Models/SplitModel/SplitChange.swift",
"Models/SplitModel/TargetingRulesChange.swift",
"Models/SplitModel/TargetingRulesChangeDecoder.swift",
"Models/Status.swift",
"Models/TrafficType.swift",
"Models/Treatment.swift",
"Models/UnaryNumericMatcherData.swift",
"Models/UserDefinedSegmentMatcherData.swift",
"Models/WhitelistMatcherData.swift",
"Network/Configuration/RestClientConfiguration.swift",
"Network/DataParsing/Json.swift",
"Network/Endpoints/Endpoint.swift",
"Network/Endpoints/EndpointFactory.swift",
"Network/Endpoints/ServiceEndpoints.swift",
"Network/Errors/GenericError.swift",
"Network/HttpClient/HttpClient.swift",
"Network/HttpClient/HttpDataRequest.swift",
"Network/HttpClient/HttpDataResponse.swift",
"Network/HttpClient/HttpError.swift",
"Network/HttpClient/HttpParameter.swift",
"Network/HttpClient/HttpParameters.swift",
"Network/HttpClient/HttpRequest.swift",
"Network/HttpClient/HttpRequestList.swift",
"Network/HttpClient/HttpRequestManager.swift",
"Network/HttpClient/HttpResponse.swift",
"Network/HttpClient/HttpSession.swift",
"Network/HttpClient/HttpStreamRequest.swift",
"Network/HttpClient/HttpStreamResponse.swift",
"Network/HttpClient/HttpTask.swift",
"Network/HttpClient/OutdatedSplitProxyHandler.swift",
"Network/NetworkReachabilityManager.swift",
"Network/RestClient/RestClient+Impressions.swift",
"Network/RestClient/RestClient+ImpressionsCount.swift",
"Network/RestClient/RestClient+MySegments.swift",
"Network/RestClient/RestClient+SplitChanges.swift",
"Network/RestClient/RestClient+SseAuthenticator.swift",
"Network/RestClient/RestClient+TelemetryConfig.swift",
"Network/RestClient/RestClient+TelemetryStats.swift",
"Network/RestClient/RestClient+TrackEvents.swift",
"Network/RestClient/RestClient+UniqueKeys.swift",
"Network/RestClient/RestClient.swift",
"Network/Results/AllSegmentsChange.swift",
"Network/Results/DataResult.swift",
"Network/Results/SegmentsChange.swift",
"Network/Security/HostDomainFilter.swift",
"Network/Security/PublicKeyHeaders.swift",
"Network/Security/TlsPinChecker.swift",
"Network/Streaming/BackoffCounterTimer.swift",
"Network/Streaming/DefaultSseNotificationParser.swift",
"Network/Streaming/EventStreamParser.swift",
"Network/Streaming/FeatureFlagsPayloadDecoder.swift",
"Network/Streaming/JwtTokenParser.swift",
"Network/Streaming/MySegmentsPayloadDecoder.swift",
"Network/Streaming/NotificationManagerKeeper.swift",
"Network/Streaming/PushNotificationManager.swift",
"Network/Streaming/ReconnectBackoffCounter.swift",
"Network/Streaming/RetryableSplitsUpdateWorkerFactory.swift",
"Network/Streaming/SegmentsPayloadDecoder.swift",
"Network/Streaming/SseAuthenticator.swift",
"Network/Streaming/SseClient.swift",
"Network/Streaming/SseClientFactory.swift",
"Network/Streaming/SseConnectionHandler.swift",
"Network/Streaming/SseHandler.swift",
"Network/Streaming/SseNotificationProcessor.swift",
"Network/Streaming/SseNotifications.swift",
"Network/Streaming/SyncEventBroadcaster.swift",
"Network/Streaming/SyncSegmentsUpdateWorker.swift",
"Network/Streaming/SyncUpdateWorker.swift",
"Network/Streaming/Timers.swift",
"Network/Sync/ByKeyFacade.swift",
"Network/Sync/EventsSynchronizer.swift",
"Network/Sync/FeatureFlagsSynchronizer.swift",
"Network/Sync/ImpressionsTracker.swift",
"Network/Sync/MySegmentsSynchronizer.swift",
"Network/Sync/SyncCommons.swift",
"Network/Sync/SyncGuardian.swift",
"Network/Sync/SyncManager.swift",
"Network/Sync/SyncManagerBuilder.swift",
"Network/Sync/Synchronizer.swift",
"Network/Sync/TelemetrySynchronizer.swift",
"Network/Sync/UniqueKeyTracker.swift",
"Secure/SecureDataStore.swift",
"Storage/Attributes/AttributeEntity.swift",
"Storage/Attributes/AttributeMap.swift",
"Storage/Attributes/AttributesDao.swift",
"Storage/Attributes/AttributesStorage.swift",
"Storage/Attributes/ByKeyAttributesStorage.swift",
"Storage/Attributes/OneKeyAttributesStorage.swift",
"Storage/Attributes/OneKeyPersistentAttributesStorage.swift",
"Storage/Attributes/PersistentAttributesStorage.swift",
"Storage/CoreDataContextBuilder.swift",
"Storage/CoreDataHelper.swift",
"Storage/DefaultFileStorage.swift",
"Storage/Events/EventDao.swift",
"Storage/Events/EventEntity.swift",
"Storage/Events/EventsStorage.swift",
"Storage/Events/PersistentEventsStorage.swift",
"Storage/FileStorage.swift",
"Storage/GeneralInfo/GeneralInfoDao.swift",
"Storage/GeneralInfo/GeneralInfoEntity.swift",
"Storage/GeneralInfo/GeneralInfoStorage.swift",
"Storage/Global/GlobalSecureStorage.swift",
"Storage/Global/KeyValueStorage.swift",
"Storage/HashedImpression/HashedImpressionDao.swift",
"Storage/HashedImpression/HashedImpressionEntity.swift",
"Storage/HashedImpression/HashedImpressionStorage.swift",
"Storage/HashedImpression/PersistentHashedImpressionsStorage.swift",
"Storage/Impressions/ImpressionDao.swift",
"Storage/Impressions/ImpressionEntity.swift",
"Storage/Impressions/ImpressionsCountDao.swift",
"Storage/Impressions/ImpressionsMode.swift",
"Storage/Impressions/ImpressionsStorage.swift",
"Storage/Impressions/PersistentImpressionsCountStorage.swift",
"Storage/Impressions/PersistentImpressionsStorage.swift",
"Storage/LegacyStorageCleaner.swift",
"Storage/MySegments/ByKeyMySegmentsStorage.swift",
"Storage/MySegments/MyLargeSegmentsStorage.swift",
"Storage/MySegments/MySegmentEntity.swift",
"Storage/MySegments/MySegmentsDao.swift",
"Storage/MySegments/MySegmentsStorage.swift",
"Storage/MySegments/PersistentMySegmentsStorage.swift",
"Storage/PersistenceBreaker.swift",
"Storage/RolloutDefinitionsCache.swift",
"Storage/RuleBasedSegments/PersistentRuleBasedSegmentsStorage.swift",
"Storage/RuleBasedSegments/ProcessedRuleBasedSegmentChange.swift",
"Storage/RuleBasedSegments/RuleBasedSegment.swift",
"Storage/RuleBasedSegments/RuleBasedSegmentDao.swift",
"Storage/RuleBasedSegments/RuleBasedSegmentEntity.swift",
"Storage/RuleBasedSegments/RuleBasedSegmentsDecoder.swift",
"Storage/RuleBasedSegments/RuleBasedSegmentsEncoder.swift",
"Storage/RuleBasedSegments/RuleBasedSegmentsStorage.swift",
"Storage/SplitDatabase.swift",
"Storage/Splits/FlagSetsCache.swift",
"Storage/Splits/PersistentSplitsStorage.swift",
"Storage/Splits/ProcessedSplitChange.swift",
"Storage/Splits/SplitDao.swift",
"Storage/Splits/SplitEntity.swift",
"Storage/Splits/SplitsDecoder.swift",
"Storage/Splits/SplitsEncoder.swift",
"Storage/Splits/SplitsSnapshot.swift",
"Storage/Splits/SplitsStorage.swift",
"Storage/StorageHelper.swift",
"Storage/UniqueKeys/PersistentUniqueKeysStorage.swift",
"Storage/UniqueKeys/UniqueKeyDao.swift",
"Storage/UniqueKeys/UniqueKeyEntity.swift",
"Telemetry/LatencyCounter.swift",
"Telemetry/Storage/TelemetryConfig.swift",
"Telemetry/Storage/TelemetryInMemoryStorage.swift",
"Telemetry/Storage/TelemetryStats.swift",
"Telemetry/Storage/TelemetryStorage.swift",
"Track/Models/EventDTO.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.