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

Failed to build SwiftToasts, reference v0.9.2 (fa3840), with Swift 6.0 for macOS (SPM) on 27 Aug 2025 18:48:22 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/athankefalas/swift-toasts.git
Reference: v0.9.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/athankefalas/swift-toasts
 * tag               v0.9.2     -> FETCH_HEAD
HEAD is now at fa3840a Release v0.9.2
Cloned https://github.com/athankefalas/swift-toasts.git
Revision (git rev-parse @):
fa3840a4daa9811ba95dcaf19ea07e23193103c7
SUCCESS checkout https://github.com/athankefalas/swift-toasts.git at v0.9.2
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/athankefalas/swift-toasts.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-5BDAB9E9C0126B9D.txt
[3/87] Emitting module SwiftToasts
[4/96] Compiling SwiftToasts HostedToastContent.swift
[5/96] Compiling SwiftToasts ToastButton.swift
[6/96] Compiling SwiftToasts ToastPresenterReader.swift
[7/96] Compiling SwiftToasts SoundSettingsExample.swift
[8/96] Compiling SwiftToasts ToastPresentationLayoutExample.swift
[9/96] Compiling SwiftToasts UserInfoFormExample.swift
[10/96] Compiling SwiftToasts PresentedPreview.swift
[11/96] Compiling SwiftToasts PreviewContent.swift
[12/96] Compiling SwiftToasts SomeObservableOject.swift
[13/96] Compiling SwiftToasts SwiftToasts.swift
[14/96] Compiling SwiftToasts CancellablesBox.swift
[15/96] Compiling SwiftToasts EnvironmentReaderModifier.swift
[16/96] Compiling SwiftToasts PlatformIdiomEnvironmentKey.swift
[17/96] Compiling SwiftToasts ToastCancellationEnvironmentKey.swift
[18/96] Compiling SwiftToasts ToastDismissEnvironmentKey.swift
[19/96] Compiling SwiftToasts ToastEnvironmentValues.swift
[20/96] Compiling SwiftToasts ToastInteractiveDismissEnabledEnvironmentKey.swift
[21/96] Compiling SwiftToasts ToastOrnamentPresentationEnvironmentKey.swift
[22/96] Compiling SwiftToasts ToastOrnament.swift
[23/96] Compiling SwiftToasts ToastPresentation.swift
[24/96] Compiling SwiftToasts ToastPresentationInvalidationOptions.swift
[25/96] Compiling SwiftToasts ToastPresentationSpace.swift
[26/96] Compiling SwiftToasts ToastRole.swift
[27/96] Compiling SwiftToasts ToastTransition.swift
[28/96] Compiling SwiftToasts NSAssociatedProperty.swift
[29/96] Compiling SwiftToasts NSToastHostingController.swift
[30/96] Compiling SwiftToasts NSTransientFloatingWindow.swift
[31/96] Compiling SwiftToasts ToastPresentationInvalidationOptionsEnvironmentKey.swift
[32/96] Compiling SwiftToasts ToastPresentedAlignmentEnvironmentKey.swift
[33/96] Compiling SwiftToasts ToastPresenterEnvironmentKey.swift
[34/96] Compiling SwiftToasts ToastPresentingLayoutGeometryKey.swift
[35/96] Compiling SwiftToasts ToastTransitionEnvironmentKey.swift
[36/96] Compiling SwiftToasts AssignToastPresenterModifier.swift
[37/96] Compiling SwiftToasts ToastBuilder.swift
[38/96] Compiling SwiftToasts ToastIdentifiableTaskModifier.swift
[39/96] Compiling SwiftToasts ToastModifier.swift
[40/96] Compiling SwiftToasts Combine+Fallbacks.swift
[41/96] Compiling SwiftToasts FallbackStateObject.swift
[42/96] Compiling SwiftToasts PresentationBoundState.swift
[43/96] Compiling SwiftToasts RuntimeWarning.swift
[44/96] Compiling SwiftToasts SwiftUI+Fallbacks.swift
[45/96] Compiling SwiftToasts UIKit+Fallbacks.swift
[46/96] Compiling SwiftToasts SwiftToastsConfiguration.swift
[47/96] Compiling SwiftToasts PlatformLayoutConstraints.swift
[48/96] Compiling SwiftToasts PresenterPhaseObserver.swift
[49/96] Compiling SwiftToasts ScenePhaseObserver.swift
[50/96] Compiling SwiftToasts ToastButtonStyle.swift
[51/96] Compiling SwiftToasts ToastLabelStyle.swift
[52/96] Compiling SwiftToasts ToastLabeledContentStyle.swift
[53/96] Compiling SwiftToasts ToastConfiguration.swift
[54/96] Compiling SwiftToasts ToastStyle.swift
[55/96] Compiling SwiftToasts ToastStyleEnvironmentKey.swift
[56/96] Compiling SwiftToasts Toast.swift
[57/96] Compiling SwiftToasts ToastPresenterProxy.swift
[58/96] Compiling SwiftToasts AnyTransition+ToastTransition.swift
[59/96] Compiling SwiftToasts ToastPresentingLayoutModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/SwiftUI/Modifiers/ToastPresentingLayoutModifier.swift:178:21: error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
142 |
143 |     @State
144 |     private var toastPresentingLayoutGeometry: ToastPresentingLayoutGeometry?
    |                 `- note: mutation of this property is only permitted within the actor
145 |
146 |     @FallbackStateObject
    :
176 |                 )
177 |                 .onPreferenceChange(ToastPresentingLayoutGeometryPreferenceKey.self) { newValue in
178 |                     toastPresentingLayoutGeometry = newValue
    |                     `- error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
179 |                 }
180 |
[60/96] Compiling SwiftToasts ToastReceivePublisherModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/SwiftUI/Modifiers/ToastPresentingLayoutModifier.swift:178:21: error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
142 |
143 |     @State
144 |     private var toastPresentingLayoutGeometry: ToastPresentingLayoutGeometry?
    |                 `- note: mutation of this property is only permitted within the actor
145 |
146 |     @FallbackStateObject
    :
176 |                 )
177 |                 .onPreferenceChange(ToastPresentingLayoutGeometryPreferenceKey.self) { newValue in
178 |                     toastPresentingLayoutGeometry = newValue
    |                     `- error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
179 |                 }
180 |
[61/96] Compiling SwiftToasts ToastTargetSceneModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/SwiftUI/Modifiers/ToastPresentingLayoutModifier.swift:178:21: error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
142 |
143 |     @State
144 |     private var toastPresentingLayoutGeometry: ToastPresentingLayoutGeometry?
    |                 `- note: mutation of this property is only permitted within the actor
145 |
146 |     @FallbackStateObject
    :
176 |                 )
177 |                 .onPreferenceChange(ToastPresentingLayoutGeometryPreferenceKey.self) { newValue in
178 |                     toastPresentingLayoutGeometry = newValue
    |                     `- error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
179 |                 }
180 |
[62/96] Compiling SwiftToasts ToastTaskModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/SwiftUI/Modifiers/ToastPresentingLayoutModifier.swift:178:21: error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
142 |
143 |     @State
144 |     private var toastPresentingLayoutGeometry: ToastPresentingLayoutGeometry?
    |                 `- note: mutation of this property is only permitted within the actor
145 |
146 |     @FallbackStateObject
    :
176 |                 )
177 |                 .onPreferenceChange(ToastPresentingLayoutGeometryPreferenceKey.self) { newValue in
178 |                     toastPresentingLayoutGeometry = newValue
    |                     `- error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
179 |                 }
180 |
[63/96] Compiling SwiftToasts ToastTriggerModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/SwiftUI/Modifiers/ToastPresentingLayoutModifier.swift:178:21: error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
142 |
143 |     @State
144 |     private var toastPresentingLayoutGeometry: ToastPresentingLayoutGeometry?
    |                 `- note: mutation of this property is only permitted within the actor
145 |
146 |     @FallbackStateObject
    :
176 |                 )
177 |                 .onPreferenceChange(ToastPresentingLayoutGeometryPreferenceKey.self) { newValue in
178 |                     toastPresentingLayoutGeometry = newValue
    |                     `- error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
179 |                 }
180 |
[64/96] Compiling SwiftToasts ScheduleToastAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/SwiftUI/Modifiers/ToastPresentingLayoutModifier.swift:178:21: error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
142 |
143 |     @State
144 |     private var toastPresentingLayoutGeometry: ToastPresentingLayoutGeometry?
    |                 `- note: mutation of this property is only permitted within the actor
145 |
146 |     @FallbackStateObject
    :
176 |                 )
177 |                 .onPreferenceChange(ToastPresentingLayoutGeometryPreferenceKey.self) { newValue in
178 |                     toastPresentingLayoutGeometry = newValue
    |                     `- error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
179 |                 }
180 |
[65/96] Compiling SwiftToasts AnyToastStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/SwiftUI/Modifiers/ToastPresentingLayoutModifier.swift:178:21: error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
142 |
143 |     @State
144 |     private var toastPresentingLayoutGeometry: ToastPresentingLayoutGeometry?
    |                 `- note: mutation of this property is only permitted within the actor
145 |
146 |     @FallbackStateObject
    :
176 |                 )
177 |                 .onPreferenceChange(ToastPresentingLayoutGeometryPreferenceKey.self) { newValue in
178 |                     toastPresentingLayoutGeometry = newValue
    |                     `- error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
179 |                 }
180 |
[66/96] Compiling SwiftToasts PlainToastBackground.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/SwiftUI/Modifiers/ToastPresentingLayoutModifier.swift:178:21: error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
142 |
143 |     @State
144 |     private var toastPresentingLayoutGeometry: ToastPresentingLayoutGeometry?
    |                 `- note: mutation of this property is only permitted within the actor
145 |
146 |     @FallbackStateObject
    :
176 |                 )
177 |                 .onPreferenceChange(ToastPresentingLayoutGeometryPreferenceKey.self) { newValue in
178 |                     toastPresentingLayoutGeometry = newValue
    |                     `- error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
179 |                 }
180 |
[67/96] Compiling SwiftToasts PlainToastStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/SwiftUI/Modifiers/ToastPresentingLayoutModifier.swift:178:21: error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
142 |
143 |     @State
144 |     private var toastPresentingLayoutGeometry: ToastPresentingLayoutGeometry?
    |                 `- note: mutation of this property is only permitted within the actor
145 |
146 |     @FallbackStateObject
    :
176 |                 )
177 |                 .onPreferenceChange(ToastPresentingLayoutGeometryPreferenceKey.self) { newValue in
178 |                     toastPresentingLayoutGeometry = newValue
    |                     `- error: main actor-isolated property 'toastPresentingLayoutGeometry' can not be mutated from a Sendable closure
179 |                 }
180 |
[68/96] Compiling SwiftToasts ToastPresentationCanceller.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[69/96] Compiling SwiftToasts ToastPresentationContextSelector.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[70/96] Compiling SwiftToasts ToastPresenting.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[71/96] Compiling SwiftToasts ToastScheduler.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[72/96] Compiling SwiftToasts PlatformIdiom.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[73/96] Compiling SwiftToasts PresentationContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[74/96] Compiling SwiftToasts ToastAlignment.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[75/96] Compiling SwiftToasts ToastCancellation.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[76/96] Compiling SwiftToasts ToastDismissAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[77/96] Compiling SwiftToasts ToastDuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftToasts/Models/PresentationContext.swift:290:15: warning: 'dock' was deprecated in macOS 10.13
288 |         case .screenSaver:
289 |             attributes.insert(.discardable)
290 |         case .dock:
    |               `- warning: 'dock' was deprecated in macOS 10.13
291 |             attributes.insert(.discardable)
292 |         default:
[78/96] Compiling SwiftToasts Animatable.swift
[79/96] Compiling SwiftToasts CAAnimatable.swift
[80/96] Compiling SwiftToasts AnimatablePropertiesBuilder.swift
[81/96] Compiling SwiftToasts AnimatableProperty.swift
[82/96] Compiling SwiftToasts AnyAnimationProperty.swift
[83/96] Compiling SwiftToasts Array+AnyAnimationPropertyMerging.swift
[84/96] Compiling SwiftToasts OpacityProperty.swift
[85/96] Compiling SwiftToasts TransformProperty+CATransform3D.swift
[86/96] Compiling SwiftToasts TransformProperty.swift
[87/96] Compiling SwiftToasts Cocoa+Fallbacks.swift
[88/96] Compiling SwiftToasts NSView+Animatable.swift
[89/96] Compiling SwiftToasts NSWindow+ToastPresenting.swift
[90/96] Compiling SwiftToasts NSWindowToastPresenterReaderModifier.swift
[91/96] Compiling SwiftToasts UIToastHostingController.swift
[92/96] Compiling SwiftToasts UIView+Animatable.swift
[93/96] Compiling SwiftToasts UIWindow+ToastPresenting .swift
[94/96] Compiling SwiftToasts UIWindowToastPresenterReaderModifier.swift
[95/96] Compiling SwiftToasts UIToastHostingOrnament.swift
[96/96] Compiling SwiftToasts UIWindow+ToastOrnament.swift
BUILD FAILURE 6.0 macosSpm