The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of ElegantCalendar, reference 1.0.0 (1299ff), with Swift 6.1 for iOS using Xcode 16.3 on 16 Sep 2025 18:43:43 UTC.

Swift 6 data race errors: 43

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ElegantCalendar-Package -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

SwiftCompile normal arm64 Compiling\ Comparable+Clamped.swift,\ View+Erased.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Extensions/Comparable+Clamped.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Extensions/View+Erased.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Extensions/Comparable+Clamped.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Extensions/View+Erased.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ElegantPagesManager.swift,\ PageTurnType.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantPagesManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantPagesManager.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:28:16: warning: static property 'regularDefault' is not concurrency-safe because non-'Sendable' type 'PageTurnType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let regularDefault = Self.regular(pageTurnDelta: 0.3)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:5:13: note: consider making enum 'PageTurnType' conform to the 'Sendable' protocol
public enum PageTurnType {
            ^
                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:28:16: note: add '@MainActor' to make static property 'regularDefault' part of global actor 'MainActor'
    static let regularDefault = Self.regular(pageTurnDelta: 0.3)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:28:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let regularDefault = Self.regular(pageTurnDelta: 0.3)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:29:16: warning: static property 'earlyCutOffDefault' is not concurrency-safe because non-'Sendable' type 'PageTurnType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let earlyCutOffDefault = Self.earlyCutoff(config: .default)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:5:13: note: consider making enum 'PageTurnType' conform to the 'Sendable' protocol
public enum PageTurnType {
            ^
                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:29:16: note: add '@MainActor' to make static property 'earlyCutOffDefault' part of global actor 'MainActor'
    static let earlyCutOffDefault = Self.earlyCutoff(config: .default)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:29:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let earlyCutOffDefault = Self.earlyCutoff(config: .default)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:35:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'EarlyCutOffConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default` = EarlyCutOffConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:12:15: note: consider making struct 'EarlyCutOffConfiguration' conform to the 'Sendable' protocol
public struct EarlyCutOffConfiguration {
              ^
                                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:35:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    static let `default` = EarlyCutOffConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:35:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default` = EarlyCutOffConfiguration(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ElegantVPages.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Public/ElegantVPages.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Public/ElegantVPages.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ ElegantPages (in target 'ElegantPages' from project 'ElegantCalendar')
EmitSwiftModule normal arm64 (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:25:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
@_functionBuilder
 ^~~~~~~~~~~~~~~~
 resultBuilder
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift:14:25: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantListManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var manager: ElegantListManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift:7:62: note: add '@preconcurrency' to the 'ElegantListManagerDirectAccess' conformance to defer isolation checking to run time
struct ElegantListController: UIViewControllerRepresentable, ElegantListManagerDirectAccess, PageTurnTypeDirectAccess {
                                                             ^
                                                             @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift:79:9: note: requirement 'manager' declared here
    var manager: ElegantListManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift:18:9: warning: main actor-isolated property 'pageTurnType' cannot be used to satisfy nonisolated requirement from protocol 'PageTurnTypeDirectAccess'; this is an error in the Swift 6 language mode
    let pageTurnType: PageTurnType
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift:7:94: note: add '@preconcurrency' to the 'PageTurnTypeDirectAccess' conformance to defer isolation checking to run time
struct ElegantListController: UIViewControllerRepresentable, ElegantListManagerDirectAccess, PageTurnTypeDirectAccess {
                                                                                             ^
                                                                                             @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:45:9: note: requirement 'pageTurnType' declared here
    var pageTurnType: PageTurnType { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift:10:25: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantListManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var manager: ElegantListManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift:5:37: note: add '@preconcurrency' to the 'ElegantListManagerDirectAccess' conformance to defer isolation checking to run time
struct ElegantListView<List>: View, ElegantListManagerDirectAccess, PageTurnTypeDirectAccess where List: View {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift:79:9: note: requirement 'manager' declared here
    var manager: ElegantListManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift:14:9: warning: main actor-isolated property 'pageTurnType' cannot be used to satisfy nonisolated requirement from protocol 'PageTurnTypeDirectAccess'; this is an error in the Swift 6 language mode
    let pageTurnType: PageTurnType
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift:5:69: note: add '@preconcurrency' to the 'PageTurnTypeDirectAccess' conformance to defer isolation checking to run time
struct ElegantListView<List>: View, ElegantListManagerDirectAccess, PageTurnTypeDirectAccess where List: View {
                                                                    ^
                                                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:45:9: note: requirement 'pageTurnType' declared here
    var pageTurnType: PageTurnType { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantHList.swift:7:32: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantListManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject public var manager: ElegantListManager
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantHList.swift:5:35: note: add '@preconcurrency' to the 'ElegantListManagerDirectAccess' conformance to defer isolation checking to run time
public struct ElegantHList: View, ElegantListManagerDirectAccess {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift:79:9: note: requirement 'manager' declared here
    var manager: ElegantListManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantVList.swift:7:32: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantListManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject public var manager: ElegantListManager
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantVList.swift:5:35: note: add '@preconcurrency' to the 'ElegantListManagerDirectAccess' conformance to defer isolation checking to run time
public struct ElegantVList: View, ElegantListManagerDirectAccess {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift:79:9: note: requirement 'manager' declared here
    var manager: ElegantListManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Internal/Constants.swift:5:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
let screen = UIScreen.main.bounds
    ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:28:16: warning: static property 'regularDefault' is not concurrency-safe because non-'Sendable' type 'PageTurnType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let regularDefault = Self.regular(pageTurnDelta: 0.3)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:5:13: note: consider making enum 'PageTurnType' conform to the 'Sendable' protocol
public enum PageTurnType {
            ^
                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:28:16: note: add '@MainActor' to make static property 'regularDefault' part of global actor 'MainActor'
    static let regularDefault = Self.regular(pageTurnDelta: 0.3)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:28:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let regularDefault = Self.regular(pageTurnDelta: 0.3)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:29:16: warning: static property 'earlyCutOffDefault' is not concurrency-safe because non-'Sendable' type 'PageTurnType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let earlyCutOffDefault = Self.earlyCutoff(config: .default)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:5:13: note: consider making enum 'PageTurnType' conform to the 'Sendable' protocol
public enum PageTurnType {
            ^
                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:29:16: note: add '@MainActor' to make static property 'earlyCutOffDefault' part of global actor 'MainActor'
    static let earlyCutOffDefault = Self.earlyCutoff(config: .default)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:29:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let earlyCutOffDefault = Self.earlyCutoff(config: .default)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:35:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'EarlyCutOffConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default` = EarlyCutOffConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:12:15: note: consider making struct 'EarlyCutOffConfiguration' conform to the 'Sendable' protocol
public struct EarlyCutOffConfiguration {
              ^
                                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:35:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    static let `default` = EarlyCutOffConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:35:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default` = EarlyCutOffConfiguration(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Internal/ElegantPagesView.swift:11:25: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantPagesManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var manager: ElegantPagesManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Internal/ElegantPagesView.swift:5:39: note: add '@preconcurrency' to the 'ElegantPagesManagerDirectAccess' conformance to defer isolation checking to run time
struct ElegantPagesView<Stack>: View, ElegantPagesManagerDirectAccess where Stack: View {
                                      ^
                                      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantPagesManager.swift:40:9: note: requirement 'manager' declared here
    var manager: ElegantPagesManager { get }
        ^
SwiftCompile normal arm64 Compiling\ ScrollDirection.swift,\ ElegantListManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Internal/ScrollDirection.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Internal/ScrollDirection.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Constants.swift,\ PageState.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Internal/Constants.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Internal/PageState.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Internal/Constants.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Internal/Constants.swift:5:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
let screen = UIScreen.main.bounds
    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Internal/PageState.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ PageViewBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:25:2: warning: '@_functionBuilder' has been renamed to '@resultBuilder'
@_functionBuilder
 ^~~~~~~~~~~~~~~~
 resultBuilder
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:29:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 1, content: c)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:28:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<Content>(_ c: Content) -> PageContainer<Content> {
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:41:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 2, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:32:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<C0, C1>(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:55:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 3, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:44:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<C0, C1, C2>(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:71:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 4, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:58:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<C0, C1, C2, C3>(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:89:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 5, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:74:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<C0, C1, C2, C3, C4>(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:109:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 6, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:92:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<C0, C1, C2, C3, C4, C5>(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:131:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 7, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:112:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<C0, C1, C2, C3, C4, C5, C6>(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:155:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 8, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:134:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<C0, C1, C2, C3, C4, C5, C6, C7>(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:181:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 9, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:158:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<C0, C1, C2, C3, C4, C5, C6, C7, C8>(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:209:16: warning: call to main actor-isolated initializer 'init(count:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        return PageContainer(count: 10, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: calls to initializer 'init(count:content:)' from outside of its actor context are implicitly asynchronous
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:10:15: note: main actor isolation inferred from conformance to protocol 'View'
public struct PageContainer<Content>: View where Content: View {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:184:24: note: add '@MainActor' to make static method 'buildBlock' part of global actor 'MainActor'
    public static func buildBlock<C0, C1, C2, C3, C4, C5, C6, C7, C8, C9>(
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:29:16: warning: sending 'c' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 1, content: c)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:29:16: note: sending task-isolated 'c' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 1, content: c)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:41:16: warning: sending 'compositeView' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 2, content: compositeView)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:41:16: note: sending task-isolated 'compositeView' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 2, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:55:16: warning: sending 'compositeView' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 3, content: compositeView)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:55:16: note: sending task-isolated 'compositeView' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 3, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:71:16: warning: sending 'compositeView' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 4, content: compositeView)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:71:16: note: sending task-isolated 'compositeView' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 4, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:89:16: warning: sending 'compositeView' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 5, content: compositeView)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:89:16: note: sending task-isolated 'compositeView' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 5, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:109:16: warning: sending 'compositeView' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 6, content: compositeView)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:109:16: note: sending task-isolated 'compositeView' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 6, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:131:16: warning: sending 'compositeView' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 7, content: compositeView)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:131:16: note: sending task-isolated 'compositeView' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 7, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:155:16: warning: sending 'compositeView' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 8, content: compositeView)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:155:16: note: sending task-isolated 'compositeView' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 8, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:181:16: warning: sending 'compositeView' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 9, content: compositeView)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:181:16: note: sending task-isolated 'compositeView' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 9, content: compositeView)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:209:16: warning: sending 'compositeView' risks causing data races; this is an error in the Swift 6 language mode
        return PageContainer(count: 10, content: compositeView)
               ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageViewBuilder.swift:209:16: note: sending task-isolated 'compositeView' to main actor-isolated initializer 'init(count:content:)' risks causing data races between main actor-isolated and task-isolated uses
        return PageContainer(count: 10, content: compositeView)
               ^
SwiftCompile normal arm64 Compiling\ ElegantHPages.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Public/ElegantHPages.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Public/ElegantHPages.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ ElegantPagesView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Internal/ElegantPagesView.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Internal/ElegantPagesView.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Internal/ElegantPagesView.swift:11:25: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantPagesManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var manager: ElegantPagesManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Pages/Internal/ElegantPagesView.swift:5:39: note: add '@preconcurrency' to the 'ElegantPagesManagerDirectAccess' conformance to defer isolation checking to run time
struct ElegantPagesView<Stack>: View, ElegantPagesManagerDirectAccess where Stack: View {
                                      ^
                                      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantPagesManager.swift:40:9: note: requirement 'manager' declared here
    var manager: ElegantPagesManager { get }
        ^
SwiftCompile normal arm64 Compiling\ ElegantListController.swift,\ ElegantListView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift:14:25: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantListManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var manager: ElegantListManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift:7:62: note: add '@preconcurrency' to the 'ElegantListManagerDirectAccess' conformance to defer isolation checking to run time
struct ElegantListController: UIViewControllerRepresentable, ElegantListManagerDirectAccess, PageTurnTypeDirectAccess {
                                                             ^
                                                             @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift:79:9: note: requirement 'manager' declared here
    var manager: ElegantListManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift:18:9: warning: main actor-isolated property 'pageTurnType' cannot be used to satisfy nonisolated requirement from protocol 'PageTurnTypeDirectAccess'; this is an error in the Swift 6 language mode
    let pageTurnType: PageTurnType
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListController.swift:7:94: note: add '@preconcurrency' to the 'PageTurnTypeDirectAccess' conformance to defer isolation checking to run time
struct ElegantListController: UIViewControllerRepresentable, ElegantListManagerDirectAccess, PageTurnTypeDirectAccess {
                                                                                             ^
                                                                                             @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:45:9: note: requirement 'pageTurnType' declared here
    var pageTurnType: PageTurnType { get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift:10:25: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantListManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var manager: ElegantListManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift:5:37: note: add '@preconcurrency' to the 'ElegantListManagerDirectAccess' conformance to defer isolation checking to run time
struct ElegantListView<List>: View, ElegantListManagerDirectAccess, PageTurnTypeDirectAccess where List: View {
                                    ^
                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift:79:9: note: requirement 'manager' declared here
    var manager: ElegantListManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift:14:9: warning: main actor-isolated property 'pageTurnType' cannot be used to satisfy nonisolated requirement from protocol 'PageTurnTypeDirectAccess'; this is an error in the Swift 6 language mode
    let pageTurnType: PageTurnType
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Internal/ElegantListView.swift:5:69: note: add '@preconcurrency' to the 'PageTurnTypeDirectAccess' conformance to defer isolation checking to run time
struct ElegantListView<List>: View, ElegantListManagerDirectAccess, PageTurnTypeDirectAccess where List: View {
                                                                    ^
                                                                    @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:45:9: note: requirement 'pageTurnType' declared here
    var pageTurnType: PageTurnType { get }
        ^
SwiftCompile normal arm64 Compiling\ ElegantHList.swift,\ ElegantVList.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantHList.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantVList.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantHList.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantHList.swift:7:32: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantListManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject public var manager: ElegantListManager
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantHList.swift:5:35: note: add '@preconcurrency' to the 'ElegantListManagerDirectAccess' conformance to defer isolation checking to run time
public struct ElegantHList: View, ElegantListManagerDirectAccess {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift:79:9: note: requirement 'manager' declared here
    var manager: ElegantListManager { get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantVList.swift (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantVList.swift:7:32: warning: main actor-isolated property 'manager' cannot be used to satisfy nonisolated requirement from protocol 'ElegantListManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject public var manager: ElegantListManager
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Lists/Public/ElegantVList.swift:5:35: note: add '@preconcurrency' to the 'ElegantListManagerDirectAccess' conformance to defer isolation checking to run time
public struct ElegantVList: View, ElegantListManagerDirectAccess {
                                  ^
                                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/ElegantListManager.swift:79:9: note: requirement 'manager' declared here
    var manager: ElegantListManager { get }
        ^
SwiftDriverJobDiscovery normal arm64 Emitting module for ElegantPages (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftDriver\ Compilation\ Requirements ElegantPages normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ElegantPages -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Constants.swift, PageState.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ElegantPages-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages-Swift.h (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ElegantPages-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.swiftmodule (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.swiftdoc (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.abi.json (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.swiftsourceinfo (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriver ElegantCalendar normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ElegantCalendar -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ ElegantCalendar (in target 'ElegantCalendar' from project 'ElegantCalendar')
EmitSwiftModule normal arm64 (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:17:16: warning: static property 'allThemes' is not concurrency-safe because non-'Sendable' type '[CalendarTheme]' may have shared mutable state; this is an error in the Swift 6 language mode
    static let allThemes: [CalendarTheme] = [.brilliantViolet, .craftBrown, .fluorescentPink, .kiwiGreen, .mauvePurple, .orangeYellow, .red, .royalBlue]
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:17:16: note: add '@MainActor' to make static property 'allThemes' part of global actor 'MainActor'
    static let allThemes: [CalendarTheme] = [.brilliantViolet, .craftBrown, .fluorescentPink, .kiwiGreen, .mauvePurple, .orangeYellow, .red, .royalBlue]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let allThemes: [CalendarTheme] = [.brilliantViolet, .craftBrown, .fluorescentPink, .kiwiGreen, .mauvePurple, .orangeYellow, .red, .royalBlue]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:19:16: warning: static property 'brilliantViolet' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let brilliantViolet = CalendarTheme(primary: .brilliantViolet)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:19:16: note: add '@MainActor' to make static property 'brilliantViolet' part of global actor 'MainActor'
    static let brilliantViolet = CalendarTheme(primary: .brilliantViolet)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let brilliantViolet = CalendarTheme(primary: .brilliantViolet)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:20:16: warning: static property 'craftBrown' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let craftBrown = CalendarTheme(primary: .craftBrown)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:20:16: note: add '@MainActor' to make static property 'craftBrown' part of global actor 'MainActor'
    static let craftBrown = CalendarTheme(primary: .craftBrown)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let craftBrown = CalendarTheme(primary: .craftBrown)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:21:16: warning: static property 'fluorescentPink' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let fluorescentPink = CalendarTheme(primary: .fluorescentPink)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:21:16: note: add '@MainActor' to make static property 'fluorescentPink' part of global actor 'MainActor'
    static let fluorescentPink = CalendarTheme(primary: .fluorescentPink)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let fluorescentPink = CalendarTheme(primary: .fluorescentPink)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:22:16: warning: static property 'kiwiGreen' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let kiwiGreen = CalendarTheme(primary: .kiwiGreen)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:22:16: note: add '@MainActor' to make static property 'kiwiGreen' part of global actor 'MainActor'
    static let kiwiGreen = CalendarTheme(primary: .kiwiGreen)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:22:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let kiwiGreen = CalendarTheme(primary: .kiwiGreen)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:23:16: warning: static property 'mauvePurple' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mauvePurple = CalendarTheme(primary: .mauvePurple)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:23:16: note: add '@MainActor' to make static property 'mauvePurple' part of global actor 'MainActor'
    static let mauvePurple = CalendarTheme(primary: .mauvePurple)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mauvePurple = CalendarTheme(primary: .mauvePurple)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:24:16: warning: static property 'orangeYellow' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let orangeYellow = CalendarTheme(primary: .orangeYellow)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:24:16: note: add '@MainActor' to make static property 'orangeYellow' part of global actor 'MainActor'
    static let orangeYellow = CalendarTheme(primary: .orangeYellow)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let orangeYellow = CalendarTheme(primary: .orangeYellow)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:25:16: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let red = CalendarTheme(primary: .red)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:25:16: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
    static let red = CalendarTheme(primary: .red)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:25:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let red = CalendarTheme(primary: .red)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:26:16: warning: static property 'royalBlue' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let royalBlue = CalendarTheme(primary: .royalBlue)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:26:16: note: add '@MainActor' to make static property 'royalBlue' part of global actor 'MainActor'
    static let royalBlue = CalendarTheme(primary: .royalBlue)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:26:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let royalBlue = CalendarTheme(primary: .royalBlue)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:32:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default`: CalendarTheme = .royalBlue
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:32:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    static let `default`: CalendarTheme = .royalBlue
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:32:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default`: CalendarTheme = .royalBlue
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:38:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultValue: CalendarTheme = .default
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:38:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static let defaultValue: CalendarTheme = .default
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultValue: CalendarTheme = .default
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift:7:16: warning: static property 'uTurnLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var uTurnLeft: Image = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift:7:16: note: convert 'uTurnLeft' to a 'let' constant to make 'Sendable' shared state immutable
    static var uTurnLeft: Image = {
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift:7:16: note: add '@MainActor' to make static property 'uTurnLeft' part of global actor 'MainActor'
    static var uTurnLeft: Image = {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift:7:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var uTurnLeft: Image = {
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift:28:16: warning: static property 'mock' is not concurrency-safe because non-'Sendable' type 'CalendarConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mock = CalendarConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift:6:15: note: consider making struct 'CalendarConfiguration' conform to the 'Sendable' protocol
public struct CalendarConfiguration: Equatable {
              ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift:28:16: note: add '@MainActor' to make static property 'mock' part of global actor 'MainActor'
    static let mock = CalendarConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift:28:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mock = CalendarConfiguration(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:5:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
let screen = UIScreen.main.bounds
    ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:15:20: warning: static property 'cellWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var cellWidth: CGFloat!
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:15:20: note: convert 'cellWidth' to a 'let' constant to make 'Sendable' shared state immutable
        static var cellWidth: CGFloat!
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:15:20: note: add '@MainActor' to make static property 'cellWidth' part of global actor 'MainActor'
        static var cellWidth: CGFloat!
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:15:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var cellWidth: CGFloat!
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:130:16: warning: static property 'calendarEarlySwipe' is not concurrency-safe because non-'Sendable' type 'PageTurnType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let calendarEarlySwipe: PageTurnType = .earlyCutoff(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:5:13: note: enum 'PageTurnType' does not conform to the 'Sendable' protocol
public enum PageTurnType {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ElegantPages'
import ElegantPages
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:130:16: note: add '@MainActor' to make static property 'calendarEarlySwipe' part of global actor 'MainActor'
    static let calendarEarlySwipe: PageTurnType = .earlyCutoff(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:130:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let calendarEarlySwipe: PageTurnType = .earlyCutoff(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:123:16: warning: static property 'mock' is not concurrency-safe because non-'Sendable' type 'MonthlyCalendarManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mock = MonthlyCalendarManager(configuration: .mock)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:7:14: note: class 'MonthlyCalendarManager' does not conform to the 'Sendable' protocol
public class MonthlyCalendarManager: ObservableObject, ConfigurationDirectAccess {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:123:16: note: add '@MainActor' to make static property 'mock' part of global actor 'MainActor'
    static let mock = MonthlyCalendarManager(configuration: .mock)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:123:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mock = MonthlyCalendarManager(configuration: .mock)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:124:16: warning: static property 'mockWithInitialMonth' is not concurrency-safe because non-'Sendable' type 'MonthlyCalendarManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mockWithInitialMonth = MonthlyCalendarManager(configuration: .mock, initialMonth: .daysFromToday(60))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:7:14: note: class 'MonthlyCalendarManager' does not conform to the 'Sendable' protocol
public class MonthlyCalendarManager: ObservableObject, ConfigurationDirectAccess {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:124:16: note: add '@MainActor' to make static property 'mockWithInitialMonth' part of global actor 'MainActor'
    static let mockWithInitialMonth = MonthlyCalendarManager(configuration: .mock, initialMonth: .daysFromToday(60))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:124:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mockWithInitialMonth = MonthlyCalendarManager(configuration: .mock, initialMonth: .daysFromToday(60))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:80:16: warning: static property 'mock' is not concurrency-safe because non-'Sendable' type 'YearlyCalendarManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mock = YearlyCalendarManager(configuration: .mock)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:6:14: note: class 'YearlyCalendarManager' does not conform to the 'Sendable' protocol
public class YearlyCalendarManager: ObservableObject, ConfigurationDirectAccess {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:80:16: note: add '@MainActor' to make static property 'mock' part of global actor 'MainActor'
    static let mock = YearlyCalendarManager(configuration: .mock)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:80:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mock = YearlyCalendarManager(configuration: .mock)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:81:16: warning: static property 'mockWithInitialYear' is not concurrency-safe because non-'Sendable' type 'YearlyCalendarManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mockWithInitialYear = YearlyCalendarManager(configuration: .mock, initialYear: .daysFromToday(365))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:6:14: note: class 'YearlyCalendarManager' does not conform to the 'Sendable' protocol
public class YearlyCalendarManager: ObservableObject, ConfigurationDirectAccess {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:81:16: note: add '@MainActor' to make static property 'mockWithInitialYear' part of global actor 'MainActor'
    static let mockWithInitialYear = YearlyCalendarManager(configuration: .mock, initialYear: .daysFromToday(365))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:81:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mockWithInitialYear = YearlyCalendarManager(configuration: .mock, initialYear: .daysFromToday(365))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/DayView.swift:9:25: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var calendarManager: MonthlyCalendarManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/DayView.swift:5:23: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct DayView: View, MonthlyCalendarManagerDirectAccess {
                      ^
                      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift:11:25: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var calendarManager: MonthlyCalendarManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift:7:25: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct MonthView: View, MonthlyCalendarManagerDirectAccess {
                        ^
                        @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift:127:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: MonthlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift:125:45: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
private struct CalendarAccessoryView: View, MonthlyCalendarManagerDirectAccess {
                                            ^
                                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:11:32: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject public var calendarManager: MonthlyCalendarManager
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:6:42: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
public struct MonthlyCalendarView: View, MonthlyCalendarManagerDirectAccess {
                                         ^
                                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:87:16: warning: static property 'monthlyEarlyCutoff' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var monthlyEarlyCutoff: PageTurnType = .earlyCutoff(config: .monthlyConfig)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:87:16: note: convert 'monthlyEarlyCutoff' to a 'let' constant to make 'Sendable' shared state immutable
    static var monthlyEarlyCutoff: PageTurnType = .earlyCutoff(config: .monthlyConfig)
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:87:16: note: add '@MainActor' to make static property 'monthlyEarlyCutoff' part of global actor 'MainActor'
    static var monthlyEarlyCutoff: PageTurnType = .earlyCutoff(config: .monthlyConfig)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:87:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var monthlyEarlyCutoff: PageTurnType = .earlyCutoff(config: .monthlyConfig)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:93:16: warning: static property 'monthlyConfig' is not concurrency-safe because non-'Sendable' type 'EarlyCutOffConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    static let monthlyConfig = EarlyCutOffConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:12:15: note: struct 'EarlyCutOffConfiguration' does not conform to the 'Sendable' protocol
public struct EarlyCutOffConfiguration {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ElegantPages'
import ElegantPages
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:93:16: note: add '@MainActor' to make static property 'monthlyConfig' part of global actor 'MainActor'
    static let monthlyConfig = EarlyCutOffConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:93:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let monthlyConfig = EarlyCutOffConfiguration(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/WeekView.swift:7:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: MonthlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/WeekView.swift:5:24: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct WeekView: View, MonthlyCalendarManagerDirectAccess {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallDayView.swift:7:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: YearlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallDayView.swift:5:28: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct SmallDayView: View, YearlyCalendarManagerDirectAccess {
                           ^
                           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallMonthView.swift:9:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: YearlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallMonthView.swift:5:30: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct SmallMonthView: View, YearlyCalendarManagerDirectAccess {
                             ^
                             @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallWeekView.swift:7:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: YearlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallWeekView.swift:5:29: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct SmallWeekView: View, YearlyCalendarManagerDirectAccess {
                            ^
                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearView.swift:10:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: YearlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearView.swift:5:24: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct YearView: View, YearlyCalendarManagerDirectAccess {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearlyCalendarView.swift:10:32: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject public var calendarManager: YearlyCalendarManager
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearlyCalendarView.swift:5:41: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
public struct YearlyCalendarView: View, YearlyCalendarManagerDirectAccess {
                                        ^
                                        @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
SwiftCompile normal arm64 Compiling\ ElegantCalendarCommunicator.swift,\ ElegantCalendarDataSource.swift,\ ElegantCalendarDelegate.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/ElegantCalendarCommunicator.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/ElegantCalendarDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/ElegantCalendarDelegate.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/ElegantCalendarCommunicator.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/ElegantCalendarDataSource.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/ElegantCalendarDataSource.swift:23:21: warning: main actor-isolated property 'erased' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        EmptyView().erased
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Extensions/View+Erased.swift:7:9: note: property declared here
    var erased: AnyView {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/ElegantCalendarDataSource.swift:22:10: note: add '@MainActor' to make instance method 'calendar(viewForSelectedDate:dimensions:)' part of global actor 'MainActor'
    func calendar(viewForSelectedDate date: Date, dimensions size: CGSize) -> AnyView {
         ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/ElegantCalendarDelegate.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for ElegantCalendar (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriver\ Compilation\ Requirements ElegantCalendar normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ElegantCalendar -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ElegantHList.swift, ElegantVList.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 Compiling\ ScrollBackToTodayButton.swift,\ SmallDayView.swift,\ SmallMonthView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Shared/ScrollBackToTodayButton.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallDayView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallMonthView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Shared/ScrollBackToTodayButton.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallDayView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallDayView.swift:7:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: YearlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallDayView.swift:5:28: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct SmallDayView: View, YearlyCalendarManagerDirectAccess {
                           ^
                           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallMonthView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallMonthView.swift:9:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: YearlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallMonthView.swift:5:30: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct SmallMonthView: View, YearlyCalendarManagerDirectAccess {
                             ^
                             @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ElegantCalendar-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar-Swift.h (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/ElegantCalendar-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling ElegantListController.swift, ElegantListView.swift (in target 'ElegantPages' from project 'ElegantCalendar')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftmodule (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftdoc (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.abi.json (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftsourceinfo (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ MonthView.swift,\ MonthlyCalendarView.swift,\ WeekView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/WeekView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift:11:25: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var calendarManager: MonthlyCalendarManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift:7:25: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct MonthView: View, MonthlyCalendarManagerDirectAccess {
                        ^
                        @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift:127:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: MonthlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthView.swift:125:45: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
private struct CalendarAccessoryView: View, MonthlyCalendarManagerDirectAccess {
                                            ^
                                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:11:32: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject public var calendarManager: MonthlyCalendarManager
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:6:42: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
public struct MonthlyCalendarView: View, MonthlyCalendarManagerDirectAccess {
                                         ^
                                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:87:16: warning: static property 'monthlyEarlyCutoff' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var monthlyEarlyCutoff: PageTurnType = .earlyCutoff(config: .monthlyConfig)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:87:16: note: convert 'monthlyEarlyCutoff' to a 'let' constant to make 'Sendable' shared state immutable
    static var monthlyEarlyCutoff: PageTurnType = .earlyCutoff(config: .monthlyConfig)
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:87:16: note: add '@MainActor' to make static property 'monthlyEarlyCutoff' part of global actor 'MainActor'
    static var monthlyEarlyCutoff: PageTurnType = .earlyCutoff(config: .monthlyConfig)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:87:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var monthlyEarlyCutoff: PageTurnType = .earlyCutoff(config: .monthlyConfig)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:93:16: warning: static property 'monthlyConfig' is not concurrency-safe because non-'Sendable' type 'EarlyCutOffConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    static let monthlyConfig = EarlyCutOffConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:12:15: note: struct 'EarlyCutOffConfiguration' does not conform to the 'Sendable' protocol
public struct EarlyCutOffConfiguration {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ElegantPages'
import ElegantPages
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:93:16: note: add '@MainActor' to make static property 'monthlyConfig' part of global actor 'MainActor'
    static let monthlyConfig = EarlyCutOffConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/MonthlyCalendarView.swift:93:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let monthlyConfig = EarlyCutOffConfiguration(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/WeekView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/WeekView.swift:7:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: MonthlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/WeekView.swift:5:24: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct WeekView: View, MonthlyCalendarManagerDirectAccess {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
SwiftCompile normal arm64 Compiling\ Date+toString.swift,\ Enumeration+Matching.swift,\ EnvironmentKey+CalendarTheme.swift,\ Image+Custom.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Date+toString.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Enumeration+Matching.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Date+toString.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Enumeration+Matching.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:17:16: warning: static property 'allThemes' is not concurrency-safe because non-'Sendable' type '[CalendarTheme]' may have shared mutable state; this is an error in the Swift 6 language mode
    static let allThemes: [CalendarTheme] = [.brilliantViolet, .craftBrown, .fluorescentPink, .kiwiGreen, .mauvePurple, .orangeYellow, .red, .royalBlue]
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:17:16: note: add '@MainActor' to make static property 'allThemes' part of global actor 'MainActor'
    static let allThemes: [CalendarTheme] = [.brilliantViolet, .craftBrown, .fluorescentPink, .kiwiGreen, .mauvePurple, .orangeYellow, .red, .royalBlue]
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let allThemes: [CalendarTheme] = [.brilliantViolet, .craftBrown, .fluorescentPink, .kiwiGreen, .mauvePurple, .orangeYellow, .red, .royalBlue]
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:19:16: warning: static property 'brilliantViolet' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let brilliantViolet = CalendarTheme(primary: .brilliantViolet)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:19:16: note: add '@MainActor' to make static property 'brilliantViolet' part of global actor 'MainActor'
    static let brilliantViolet = CalendarTheme(primary: .brilliantViolet)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let brilliantViolet = CalendarTheme(primary: .brilliantViolet)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:20:16: warning: static property 'craftBrown' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let craftBrown = CalendarTheme(primary: .craftBrown)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:20:16: note: add '@MainActor' to make static property 'craftBrown' part of global actor 'MainActor'
    static let craftBrown = CalendarTheme(primary: .craftBrown)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let craftBrown = CalendarTheme(primary: .craftBrown)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:21:16: warning: static property 'fluorescentPink' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let fluorescentPink = CalendarTheme(primary: .fluorescentPink)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:21:16: note: add '@MainActor' to make static property 'fluorescentPink' part of global actor 'MainActor'
    static let fluorescentPink = CalendarTheme(primary: .fluorescentPink)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let fluorescentPink = CalendarTheme(primary: .fluorescentPink)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:22:16: warning: static property 'kiwiGreen' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let kiwiGreen = CalendarTheme(primary: .kiwiGreen)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:22:16: note: add '@MainActor' to make static property 'kiwiGreen' part of global actor 'MainActor'
    static let kiwiGreen = CalendarTheme(primary: .kiwiGreen)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:22:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let kiwiGreen = CalendarTheme(primary: .kiwiGreen)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:23:16: warning: static property 'mauvePurple' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mauvePurple = CalendarTheme(primary: .mauvePurple)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:23:16: note: add '@MainActor' to make static property 'mauvePurple' part of global actor 'MainActor'
    static let mauvePurple = CalendarTheme(primary: .mauvePurple)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:23:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mauvePurple = CalendarTheme(primary: .mauvePurple)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:24:16: warning: static property 'orangeYellow' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let orangeYellow = CalendarTheme(primary: .orangeYellow)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:24:16: note: add '@MainActor' to make static property 'orangeYellow' part of global actor 'MainActor'
    static let orangeYellow = CalendarTheme(primary: .orangeYellow)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:24:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let orangeYellow = CalendarTheme(primary: .orangeYellow)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:25:16: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let red = CalendarTheme(primary: .red)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:25:16: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
    static let red = CalendarTheme(primary: .red)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:25:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let red = CalendarTheme(primary: .red)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:26:16: warning: static property 'royalBlue' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let royalBlue = CalendarTheme(primary: .royalBlue)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:26:16: note: add '@MainActor' to make static property 'royalBlue' part of global actor 'MainActor'
    static let royalBlue = CalendarTheme(primary: .royalBlue)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:26:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let royalBlue = CalendarTheme(primary: .royalBlue)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:32:16: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let `default`: CalendarTheme = .royalBlue
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:32:16: note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    static let `default`: CalendarTheme = .royalBlue
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:32:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let `default`: CalendarTheme = .royalBlue
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:38:16: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'CalendarTheme' may have shared mutable state; this is an error in the Swift 6 language mode
    static let defaultValue: CalendarTheme = .default
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:5:15: note: consider making struct 'CalendarTheme' conform to the 'Sendable' protocol
public struct CalendarTheme: Equatable, Hashable {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:38:16: note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
    static let defaultValue: CalendarTheme = .default
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/EnvironmentKey+CalendarTheme.swift:38:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let defaultValue: CalendarTheme = .default
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift:7:16: warning: static property 'uTurnLeft' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static var uTurnLeft: Image = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift:7:16: note: convert 'uTurnLeft' to a 'let' constant to make 'Sendable' shared state immutable
    static var uTurnLeft: Image = {
           ~~~ ^
           let
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift:7:16: note: add '@MainActor' to make static property 'uTurnLeft' part of global actor 'MainActor'
    static var uTurnLeft: Image = {
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Image+Custom.swift:7:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static var uTurnLeft: Image = {
               ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ElegantVPages.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 Compiling\ UIImage+BundleInit.swift,\ UIImpactFeedbackGenerator+Haptic.swift,\ CalendarConfiguration.swift,\ CalenderConstants.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/UIImage+BundleInit.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/UIImpactFeedbackGenerator+Haptic.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/UIImage+BundleInit.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/UIImpactFeedbackGenerator+Haptic.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift:28:16: warning: static property 'mock' is not concurrency-safe because non-'Sendable' type 'CalendarConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mock = CalendarConfiguration(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift:6:15: note: consider making struct 'CalendarConfiguration' conform to the 'Sendable' protocol
public struct CalendarConfiguration: Equatable {
              ^
                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift:28:16: note: add '@MainActor' to make static property 'mock' part of global actor 'MainActor'
    static let mock = CalendarConfiguration(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalendarConfiguration.swift:28:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mock = CalendarConfiguration(
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:5:5: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
let screen = UIScreen.main.bounds
    ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:15:20: warning: static property 'cellWidth' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var cellWidth: CGFloat!
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:15:20: note: convert 'cellWidth' to a 'let' constant to make 'Sendable' shared state immutable
        static var cellWidth: CGFloat!
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:15:20: note: add '@MainActor' to make static property 'cellWidth' part of global actor 'MainActor'
        static var cellWidth: CGFloat!
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/CalenderConstants.swift:15:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var cellWidth: CGFloat!
                   ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ElegantPagesView.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 Compiling\ LightDarkThemePreview.swift,\ ElegantCalendarView.swift,\ DayView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Previews/LightDarkThemePreview.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/ElegantCalendarView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/DayView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Previews/LightDarkThemePreview.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/ElegantCalendarView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/DayView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/DayView.swift:9:25: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'MonthlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject var calendarManager: MonthlyCalendarManager
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Monthly/DayView.swift:5:23: note: add '@preconcurrency' to the 'MonthlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct DayView: View, MonthlyCalendarManagerDirectAccess {
                      ^
                      @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:130:9: note: requirement 'calendarManager' declared here
    var calendarManager: MonthlyCalendarManager { get }
        ^
SwiftDriverJobDiscovery normal arm64 Compiling ElegantPagesManager.swift, PageTurnType.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 Compiling\ ElegantCalendarManager.swift,\ MonthlyCalendarManager.swift,\ PagerState.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/PagerState.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:130:16: warning: static property 'calendarEarlySwipe' is not concurrency-safe because non-'Sendable' type 'PageTurnType' may have shared mutable state; this is an error in the Swift 6 language mode
    static let calendarEarlySwipe: PageTurnType = .earlyCutoff(
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantPages/Models/Public/PageTurnType.swift:5:13: note: enum 'PageTurnType' does not conform to the 'Sendable' protocol
public enum PageTurnType {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ElegantPages'
import ElegantPages
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:130:16: note: add '@MainActor' to make static property 'calendarEarlySwipe' part of global actor 'MainActor'
    static let calendarEarlySwipe: PageTurnType = .earlyCutoff(
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:130:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let calendarEarlySwipe: PageTurnType = .earlyCutoff(
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:87:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.yearlyManager.scrollToYear(self.currentMonth)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:87:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.yearlyManager.scrollToYear(self.currentMonth)
                ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:100:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            self.scrollToMonth(month)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/ElegantCalendarManager.swift:100:13: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            self.scrollToMonth(month)
            ^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:123:16: warning: static property 'mock' is not concurrency-safe because non-'Sendable' type 'MonthlyCalendarManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mock = MonthlyCalendarManager(configuration: .mock)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:7:14: note: class 'MonthlyCalendarManager' does not conform to the 'Sendable' protocol
public class MonthlyCalendarManager: ObservableObject, ConfigurationDirectAccess {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:123:16: note: add '@MainActor' to make static property 'mock' part of global actor 'MainActor'
    static let mock = MonthlyCalendarManager(configuration: .mock)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:123:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mock = MonthlyCalendarManager(configuration: .mock)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:124:16: warning: static property 'mockWithInitialMonth' is not concurrency-safe because non-'Sendable' type 'MonthlyCalendarManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mockWithInitialMonth = MonthlyCalendarManager(configuration: .mock, initialMonth: .daysFromToday(60))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:7:14: note: class 'MonthlyCalendarManager' does not conform to the 'Sendable' protocol
public class MonthlyCalendarManager: ObservableObject, ConfigurationDirectAccess {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:124:16: note: add '@MainActor' to make static property 'mockWithInitialMonth' part of global actor 'MainActor'
    static let mockWithInitialMonth = MonthlyCalendarManager(configuration: .mock, initialMonth: .daysFromToday(60))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:124:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mockWithInitialMonth = MonthlyCalendarManager(configuration: .mock, initialMonth: .daysFromToday(60))
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:64:43: warning: call to main actor-isolated static method 'generateSelectionHaptic()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                UIImpactFeedbackGenerator.generateSelectionHaptic()
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/UIImpactFeedbackGenerator+Haptic.swift:8:17: note: calls to static method 'generateSelectionHaptic()' from outside of its actor context are implicitly asynchronous
    static func generateSelectionHaptic() {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:56:10: note: add '@MainActor' to make instance method 'configureNewMonth(at:)' part of global actor 'MainActor'
    func configureNewMonth(at page: Int) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:96:39: warning: call to main actor-isolated static method 'generateSelectionHaptic()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            UIImpactFeedbackGenerator.generateSelectionHaptic()
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/UIImpactFeedbackGenerator+Haptic.swift:8:17: note: calls to static method 'generateSelectionHaptic()' from outside of its actor context are implicitly asynchronous
    static func generateSelectionHaptic() {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:94:10: note: add '@MainActor' to make instance method 'dayTapped(day:withHaptic:)' part of global actor 'MainActor'
    func dayTapped(day: Date, withHaptic: Bool) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:87:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.dayTapped(day: day, withHaptic: !didScrollToMonth)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift:87:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.dayTapped(day: day, withHaptic: !didScrollToMonth)
                ^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/PagerState.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ElegantCalendarCommunicator.swift, ElegantCalendarDataSource.swift, ElegantCalendarDelegate.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 Compiling\ SmallWeekView.swift,\ YearView.swift,\ YearlyCalendarView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallWeekView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearView.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearlyCalendarView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallWeekView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallWeekView.swift:7:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: YearlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/SmallWeekView.swift:5:29: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct SmallWeekView: View, YearlyCalendarManagerDirectAccess {
                            ^
                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearView.swift:10:9: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    let calendarManager: YearlyCalendarManager
        ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearView.swift:5:24: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
struct YearView: View, YearlyCalendarManagerDirectAccess {
                       ^
                       @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearlyCalendarView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearlyCalendarView.swift:10:32: warning: main actor-isolated property 'calendarManager' cannot be used to satisfy nonisolated requirement from protocol 'YearlyCalendarManagerDirectAccess'; this is an error in the Swift 6 language mode
    @ObservedObject public var calendarManager: YearlyCalendarManager
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Views/Yearly/YearlyCalendarView.swift:5:41: note: add '@preconcurrency' to the 'YearlyCalendarManagerDirectAccess' conformance to defer isolation checking to run time
public struct YearlyCalendarView: View, YearlyCalendarManagerDirectAccess {
                                        ^
                                        @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:87:9: note: requirement 'calendarManager' declared here
    var calendarManager: YearlyCalendarManager { get }
        ^
SwiftDriverJobDiscovery normal arm64 Compiling ElegantHPages.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 Compiling\ YearlyCalendarManager.swift,\ Calendar+Axis.swift,\ Calendar+Buildable.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/Calendar+Axis.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/Calendar+Buildable.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:80:16: warning: static property 'mock' is not concurrency-safe because non-'Sendable' type 'YearlyCalendarManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mock = YearlyCalendarManager(configuration: .mock)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:6:14: note: class 'YearlyCalendarManager' does not conform to the 'Sendable' protocol
public class YearlyCalendarManager: ObservableObject, ConfigurationDirectAccess {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:80:16: note: add '@MainActor' to make static property 'mock' part of global actor 'MainActor'
    static let mock = YearlyCalendarManager(configuration: .mock)
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:80:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mock = YearlyCalendarManager(configuration: .mock)
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:81:16: warning: static property 'mockWithInitialYear' is not concurrency-safe because non-'Sendable' type 'YearlyCalendarManager' may have shared mutable state; this is an error in the Swift 6 language mode
    static let mockWithInitialYear = YearlyCalendarManager(configuration: .mock, initialYear: .daysFromToday(365))
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:6:14: note: class 'YearlyCalendarManager' does not conform to the 'Sendable' protocol
public class YearlyCalendarManager: ObservableObject, ConfigurationDirectAccess {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:81:16: note: add '@MainActor' to make static property 'mockWithInitialYear' part of global actor 'MainActor'
    static let mockWithInitialYear = YearlyCalendarManager(configuration: .mock, initialYear: .daysFromToday(365))
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/ObservableObjects/YearlyCalendarManager.swift:81:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let mockWithInitialYear = YearlyCalendarManager(configuration: .mock, initialYear: .daysFromToday(365))
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/Calendar+Axis.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Models/Protocols/Calendar+Buildable.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling PageViewBuilder.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftCompile normal arm64 Compiling\ Axis+Invert.swift,\ Calender+Dates.swift,\ Color+CustomColors.swift,\ Date+DaysFromToday.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Axis+Invert.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Calender+Dates.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Color+CustomColors.swift /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Date+DaysFromToday.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Axis+Invert.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Calender+Dates.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Color+CustomColors.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ElegantCalendar/Helpers/Extensions/Date+DaysFromToday.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ScrollDirection.swift, ElegantListManager.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling Comparable+Clamped.swift, View+Erased.swift (in target 'ElegantPages' from project 'ElegantCalendar')
SwiftDriver\ Compilation ElegantPages normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ElegantPages -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.o normal (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.o
ExtractAppIntentsMetadata (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ElegantPages --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.ElegantPages --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/ElegantPages.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/ElegantPages.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantPages.build/Objects-normal/arm64/ElegantPages.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-16 11:43:41.622 appintentsmetadataprocessor[730:4159] Starting appintentsmetadataprocessor export
2025-09-16 11:43:41.677 appintentsmetadataprocessor[730:4159] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.o (in target 'ElegantPages' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantPages.o
SwiftDriverJobDiscovery normal arm64 Compiling ScrollBackToTodayButton.swift, SmallDayView.swift, SmallMonthView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling Date+toString.swift, Enumeration+Matching.swift, EnvironmentKey+CalendarTheme.swift, Image+Custom.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling Axis+Invert.swift, Calender+Dates.swift, Color+CustomColors.swift, Date+DaysFromToday.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling UIImage+BundleInit.swift, UIImpactFeedbackGenerator+Haptic.swift, CalendarConfiguration.swift, CalenderConstants.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling YearlyCalendarManager.swift, Calendar+Axis.swift, Calendar+Buildable.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling MonthView.swift, MonthlyCalendarView.swift, WeekView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling ElegantCalendarManager.swift, MonthlyCalendarManager.swift, PagerState.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling LightDarkThemePreview.swift, ElegantCalendarView.swift, DayView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriverJobDiscovery normal arm64 Compiling SmallWeekView.swift, YearView.swift, YearlyCalendarView.swift (in target 'ElegantCalendar' from project 'ElegantCalendar')
SwiftDriver\ Compilation ElegantCalendar normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ElegantCalendar -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.o normal (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.o
ExtractAppIntentsMetadata (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ElegantCalendar --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.ElegantCalendar --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/ElegantCalendar.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/ElegantCalendar.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ElegantCalendar.build/Debug-iphoneos/ElegantCalendar.build/Objects-normal/arm64/ElegantCalendar.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-16 11:43:42.384 appintentsmetadataprocessor[733:4209] Starting appintentsmetadataprocessor export
2025-09-16 11:43:42.419 appintentsmetadataprocessor[733:4209] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.o (in target 'ElegantCalendar' from project 'ElegantCalendar')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ElegantCalendar.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ElegantCalendar",
  "name" : "ElegantCalendar",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "ElegantCalendar",
      "targets" : [
        "ElegantCalendar"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ElegantPages",
      "targets" : [
        "ElegantPages"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ElegantPages",
      "module_type" : "SwiftTarget",
      "name" : "ElegantPages",
      "path" : "Sources/ElegantPages",
      "product_memberships" : [
        "ElegantCalendar",
        "ElegantPages"
      ],
      "sources" : [
        "Extensions/Comparable+Clamped.swift",
        "Extensions/View+Erased.swift",
        "Lists/Internal/ElegantListController.swift",
        "Lists/Internal/ElegantListView.swift",
        "Lists/Public/ElegantHList.swift",
        "Lists/Public/ElegantVList.swift",
        "Models/Internal/Constants.swift",
        "Models/Internal/PageState.swift",
        "Models/Internal/ScrollDirection.swift",
        "Models/Public/ElegantListManager.swift",
        "Models/Public/ElegantPagesManager.swift",
        "Models/Public/PageTurnType.swift",
        "Models/Public/PageViewBuilder.swift",
        "Pages/Internal/ElegantPagesView.swift",
        "Pages/Public/ElegantHPages.swift",
        "Pages/Public/ElegantVPages.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ElegantCalendar",
      "module_type" : "SwiftTarget",
      "name" : "ElegantCalendar",
      "path" : "Sources/ElegantCalendar",
      "product_memberships" : [
        "ElegantCalendar"
      ],
      "sources" : [
        "Helpers/Extensions/Axis+Invert.swift",
        "Helpers/Extensions/Calender+Dates.swift",
        "Helpers/Extensions/Color+CustomColors.swift",
        "Helpers/Extensions/Date+DaysFromToday.swift",
        "Helpers/Extensions/Date+toString.swift",
        "Helpers/Extensions/Enumeration+Matching.swift",
        "Helpers/Extensions/EnvironmentKey+CalendarTheme.swift",
        "Helpers/Extensions/Image+Custom.swift",
        "Helpers/Extensions/UIImage+BundleInit.swift",
        "Helpers/Extensions/UIImpactFeedbackGenerator+Haptic.swift",
        "Helpers/Models/CalendarConfiguration.swift",
        "Helpers/Models/CalenderConstants.swift",
        "Helpers/Models/ObservableObjects/ElegantCalendarManager.swift",
        "Helpers/Models/ObservableObjects/MonthlyCalendarManager.swift",
        "Helpers/Models/ObservableObjects/PagerState.swift",
        "Helpers/Models/ObservableObjects/YearlyCalendarManager.swift",
        "Helpers/Models/Protocols/Calendar+Axis.swift",
        "Helpers/Models/Protocols/Calendar+Buildable.swift",
        "Helpers/Models/Protocols/ElegantCalendarCommunicator.swift",
        "Helpers/Models/Protocols/ElegantCalendarDataSource.swift",
        "Helpers/Models/Protocols/ElegantCalendarDelegate.swift",
        "Helpers/Previews/LightDarkThemePreview.swift",
        "Views/ElegantCalendarView.swift",
        "Views/Monthly/DayView.swift",
        "Views/Monthly/MonthView.swift",
        "Views/Monthly/MonthlyCalendarView.swift",
        "Views/Monthly/WeekView.swift",
        "Views/Shared/ScrollBackToTodayButton.swift",
        "Views/Yearly/SmallDayView.swift",
        "Views/Yearly/SmallMonthView.swift",
        "Views/Yearly/SmallWeekView.swift",
        "Views/Yearly/YearView.swift",
        "Views/Yearly/YearlyCalendarView.swift"
      ],
      "target_dependencies" : [
        "ElegantPages"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.