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 SwiftUIBackports, reference main (2beebc), with Swift 6.1 for macOS (SPM) on 30 Nov 2025 01:38:11 UTC.

Swift 6 data race errors: 62

Build Command

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

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/VisualEffects/VisualEffect+macOS.swift:63:30: warning: main actor-isolated property 'blendingMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
60 |         }
61 |
62 |         func update(blendingMode: NSVisualEffectView.BlendingMode) {
   |              `- note: add '@MainActor' to make instance method 'update(blendingMode:)' part of global actor 'MainActor'
63 |             visualEffectView.blendingMode = blendingMode
   |                              `- warning: main actor-isolated property 'blendingMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
64 |         }
65 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSVisualEffectView.h:101:38: note: mutation of this property is only permitted within the actor
 99 |
100 | /// A value controlling how the NSVisualEffectView generates its material.  See the comments on NSVisualEffectBlendingMode.  Not all materials support both blending modes, so NSVisualEffectView may fall back to a more appropriate blending mode as needed.  Defaults to NSVisualEffectBlendingModeBehindWindow.
101 | @property NSVisualEffectBlendingMode blendingMode;
    |                                      `- note: mutation of this property is only permitted within the actor
102 |
103 | /// A value controlling when the NSVisualEffectView takes on the active look.  See the comments on NSVisualEffectState.  Defaults to NSVisualEffectStateFollowsWindowActiveState.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/VisualEffects/VisualEffect+macOS.swift:67:30: warning: main actor-isolated property 'state' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
64 |         }
65 |
66 |         func update(state: NSVisualEffectView.State) {
   |              `- note: add '@MainActor' to make instance method 'update(state:)' part of global actor 'MainActor'
67 |             visualEffectView.state = state
   |                              `- warning: main actor-isolated property 'state' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 |         }
69 |     }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSVisualEffectView.h:104:31: note: mutation of this property is only permitted within the actor
102 |
103 | /// A value controlling when the NSVisualEffectView takes on the active look.  See the comments on NSVisualEffectState.  Defaults to NSVisualEffectStateFollowsWindowActiveState.
104 | @property NSVisualEffectState state;
    |                               `- note: mutation of this property is only permitted within the actor
105 |
106 | /// An image whose alpha channel is used to mask the material generated by the NSVisualEffectView.  (It does not also mask subviews.)  Defaults to nil.  It is best to set this to the smallest mask image possible and properly set the image's capInsets property to stretch it.  Setting the maskImage on an NSVisualEffectView that is the contentView of a window will correctly influence the window's shadow.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:15:10: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 13 |     public struct AppStorage<Value>: DynamicProperty {
 14 |
 15 |         @ObservedObject
    |          `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 16 |         private var _value: RefStorage<Value>
 17 |         private let commitHandler: (Value) -> Void
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:20:19: warning: main actor-isolated property '_value' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 14 |
 15 |         @ObservedObject
 16 |         private var _value: RefStorage<Value>
    |                     `- note: property declared here
 17 |         private let commitHandler: (Value) -> Void
 18 |
 19 |         public var wrappedValue: Value {
 20 |             get { _value.value }
    |                   `- warning: main actor-isolated property '_value' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 21 |             nonmutating set {
 22 |                 commitHandler(newValue)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:23:17: warning: main actor-isolated property '_value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 14 |
 15 |         @ObservedObject
 16 |         private var _value: RefStorage<Value>
    |                     `- note: mutation of this property is only permitted within the actor
 17 |         private let commitHandler: (Value) -> Void
 18 |
    :
 21 |             nonmutating set {
 22 |                 commitHandler(newValue)
 23 |                 _value.value = newValue
    |                 `- warning: main actor-isolated property '_value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 24 |             }
 25 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:29:24: warning: capture of 'self' with non-sendable type 'Backport<Any>.AppStorage<Value>' in a '@Sendable' closure
 11 |     /// invalidates a view on a change in value in that store.
 12 |     @propertyWrapper
 13 |     public struct AppStorage<Value>: DynamicProperty {
    |                   `- note: consider making generic struct 'AppStorage' conform to the 'Sendable' protocol
 14 |
 15 |         @ObservedObject
    :
 27 |         public var projectedValue: Binding<Value> {
 28 |             Binding(
 29 |                 get: { wrappedValue },
    |                        `- warning: capture of 'self' with non-sendable type 'Backport<Any>.AppStorage<Value>' in a '@Sendable' closure
 30 |                 set: { wrappedValue = $0 }
 31 |             )
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:30:24: warning: capture of 'self' with non-sendable type 'Backport<Any>.AppStorage<Value>' in a '@Sendable' closure
 11 |     /// invalidates a view on a change in value in that store.
 12 |     @propertyWrapper
 13 |     public struct AppStorage<Value>: DynamicProperty {
    |                   `- note: consider making generic struct 'AppStorage' conform to the 'Sendable' protocol
 14 |
 15 |         @ObservedObject
    :
 28 |             Binding(
 29 |                 get: { wrappedValue },
 30 |                 set: { wrappedValue = $0 }
    |                        `- warning: capture of 'self' with non-sendable type 'Backport<Any>.AppStorage<Value>' in a '@Sendable' closure
 31 |             )
 32 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:35:18: warning: main actor-isolated property '_value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 14 |
 15 |         @ObservedObject
 16 |         private var _value: RefStorage<Value>
    |                     `- note: mutation of this property is only permitted within the actor
 17 |         private let commitHandler: (Value) -> Void
 18 |
    :
 33 |
 34 |         private init(value: Value, store: UserDefaults, key: String, get: @escaping (Any?) -> Value?, set: @escaping (Value) -> Void) {
 35 |             self._value = RefStorage(value: value, store: store, key: key, transform: get)
    |                  `- warning: main actor-isolated property '_value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 36 |             self.commitHandler = set
 37 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:30:9: warning: call to main actor-isolated initializer 'init(url:scale:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 27 |     ///     would name with the `@2x` suffix if stored in a file on disk.
 28 |     @ViewBuilder
 29 |     static func AsyncImage(url: URL?, scale: CGFloat = 1) -> some View {
    |                 `- note: add '@MainActor' to make static method 'AsyncImage(url:scale:)' part of global actor 'MainActor'
 30 |         _AsyncImage(url: url, scale: scale)
    |         `- warning: call to main actor-isolated initializer 'init(url:scale:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 31 |     }
 32 |
    :
183 |         }
184 |
185 |         init(url: URL?, scale: CGFloat = 1) where Content == AnyView {
    |         |- note: calls to initializer 'init(url:scale:)' from outside of its actor context are implicitly asynchronous
    |         `- note: main actor isolation inferred from conformance to protocol 'View'
186 |             self.url = url
187 |             self.scale = scale
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:65:9: warning: call to main actor-isolated initializer 'init(url:scale:content:placeholder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 62 |     ///     load operation completes successfully.
 63 |     @ViewBuilder
 64 |     static func AsyncImage<I: View, P: View>(url: URL?, scale: CGFloat = 1, @ViewBuilder content: @escaping (Image) -> I, @ViewBuilder placeholder: @escaping () -> P) -> some View {
    |                 `- note: add '@MainActor' to make static method 'AsyncImage(url:scale:content:placeholder:)' part of global actor 'MainActor'
 65 |         _AsyncImage(url: url, scale: scale, content: content, placeholder: placeholder)
    |         `- warning: call to main actor-isolated initializer 'init(url:scale:content:placeholder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 66 |     }
 67 |
    :
189 |         }
190 |
191 |         init<I, P>(url: URL?, scale: CGFloat = 1, @ViewBuilder content: @escaping (Image) -> I, @ViewBuilder placeholder: @escaping () -> P) where Content == _ConditionalContent<I, P> {
    |         |- note: calls to initializer 'init(url:scale:content:placeholder:)' from outside of its actor context are implicitly asynchronous
    |         `- note: main actor isolation inferred from conformance to protocol 'View'
192 |             self.url = url
193 |             self.scale = scale
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:104:9: warning: call to main actor-isolated initializer 'init(url:scale:transaction:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
101 |     ///     returns the view to display for the specified phase.
102 |     @ViewBuilder
103 |     static func AsyncImage<Content: View>(url: URL?, scale: CGFloat = 1, transaction: Transaction = Transaction(), @ViewBuilder content: @escaping (AsyncImagePhase) -> Content) -> some View {
    |                 `- note: add '@MainActor' to make static method 'AsyncImage(url:scale:transaction:content:)' part of global actor 'MainActor'
104 |         _AsyncImage(url: url, scale: scale, transaction: transaction, content: content)
    |         `- warning: call to main actor-isolated initializer 'init(url:scale:transaction:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
105 |     }
106 |
    :
202 |         }
203 |
204 |         init(url: URL?, scale: CGFloat = 1, transaction: Transaction = Transaction(), @ViewBuilder content: @escaping (Backport<Any>.AsyncImagePhase) -> Content) {
    |         |- note: calls to initializer 'init(url:scale:transaction:content:)' from outside of its actor context are implicitly asynchronous
    |         `- note: main actor isolation inferred from conformance to protocol 'View'
205 |             self.url = url
206 |             self.scale = scale
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:38:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
18 |
19 | extension Backport<Any> {
20 |     public struct ForEachSubviewCollection<Content>: View, RandomAccessCollection, Sendable where Content: View {
   |                                                            `- note: add '@preconcurrency' to the 'RandomAccessCollection' conformance to defer isolation checking to run time
21 |         public typealias SubSequence = Slice<ForEachSubviewCollection<Content>>
22 |         public typealias Iterator = IndexingIterator<ForEachSubviewCollection<Content>>
   :
36 |         }
37 |
38 |         public subscript(index: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
39 |             .init(children[index])
40 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:27:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
25 |         public typealias Element = Subview
26 |
27 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:28:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
26 |
27 |         public var startIndex: Int { children.startIndex }
28 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
29 |
30 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:30:21: warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
30 |         public func index(before i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(before:)' to make this instance method not isolated to the actor
31 |             children.index(before: i)
32 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:34:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
32 |         }
33 |
34 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
35 |             children.index(after: i)
36 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:30:21: warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
30 |         public func index(before i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(before:)' to make this instance method not isolated to the actor
31 |             children.index(before: i)
32 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:34:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
32 |         }
33 |
34 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
35 |             children.index(after: i)
36 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:38:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
36 |         }
37 |
38 |         public subscript(index: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
39 |             .init(children[index])
40 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:27:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
25 |         public typealias Element = Subview
26 |
27 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:28:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
26 |
27 |         public var startIndex: Int { children.startIndex }
28 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
29 |
30 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:27:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
25 |         public typealias Element = Subview
26 |
27 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:28:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
26 |
27 |         public var startIndex: Int { children.startIndex }
28 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
29 |
30 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:38:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
36 |         }
37 |
38 |         public subscript(index: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
39 |             .init(children[index])
40 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:34:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
32 |         }
33 |
34 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
35 |             children.index(after: i)
36 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:57:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
33 |
34 | extension Backport<Any> {
35 |     public struct SubviewsCollection: RandomAccessCollection, View, Sendable {
   |                                       `- note: add '@preconcurrency' to the 'RandomAccessCollection' conformance to defer isolation checking to run time
36 |         public typealias SubSequence = SubviewsCollectionSlice
37 |         public typealias Iterator = IndexingIterator<SubviewsCollection>
   :
55 |         }
56 |
57 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
58 |             .init(children: children[bounds])
59 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:53:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
51 |         }
52 |
53 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
54 |             .init(children[position])
55 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:42:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
40 |         public typealias Element = Subview
41 |
42 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:43:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
41 |
42 |         public var startIndex: Int { children.startIndex }
43 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
44 |
45 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:45:21: warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
45 |         public func index(before i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(before:)' to make this instance method not isolated to the actor
46 |             children.index(before: i)
47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:49:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
47 |         }
48 |
49 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
50 |             children.index(after: i)
51 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:45:21: warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
45 |         public func index(before i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(before:)' to make this instance method not isolated to the actor
46 |             children.index(before: i)
47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:49:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
47 |         }
48 |
49 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
50 |             children.index(after: i)
51 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:57:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
55 |         }
56 |
57 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
58 |             .init(children: children[bounds])
59 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:53:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
51 |         }
52 |
53 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
54 |             .init(children[position])
55 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:42:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
40 |         public typealias Element = Subview
41 |
42 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:43:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
41 |
42 |         public var startIndex: Int { children.startIndex }
43 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
44 |
45 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:42:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
40 |         public typealias Element = Subview
41 |
42 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:43:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
41 |
42 |         public var startIndex: Int { children.startIndex }
43 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
44 |
45 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:53:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
51 |         }
52 |
53 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
54 |             .init(children[position])
55 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:57:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
55 |         }
56 |
57 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
58 |             .init(children: children[bounds])
59 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:49:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
47 |         }
48 |
49 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
50 |             children.index(after: i)
51 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:82:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
66 |     }
67 |
68 |     public struct SubviewsCollectionSlice: RandomAccessCollection, View, Sendable {
   |                                            `- note: add '@preconcurrency' to the 'RandomAccessCollection' conformance to defer isolation checking to run time
69 |         public typealias SubSequence = SubviewsCollectionSlice
70 |         public typealias Element = Subview
   :
80 |         }
81 |
82 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
83 |             .init(children: children[bounds])
84 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:78:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
78 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
79 |             .init(children[position])
80 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:75:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
73 |         public typealias Index = Int
74 |
75 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:76:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
74 |
75 |         public var startIndex: Int { children.startIndex }
76 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
77 |
78 |         public subscript(position: Int) -> Subview {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:82:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
80 |         }
81 |
82 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
83 |             .init(children: children[bounds])
84 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:78:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
78 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
79 |             .init(children[position])
80 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:75:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
73 |         public typealias Index = Int
74 |
75 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:76:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
74 |
75 |         public var startIndex: Int { children.startIndex }
76 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
77 |
78 |         public subscript(position: Int) -> Subview {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:75:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
73 |         public typealias Index = Int
74 |
75 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:76:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
74 |
75 |         public var startIndex: Int { children.startIndex }
76 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
77 |
78 |         public subscript(position: Int) -> Subview {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:78:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
78 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
79 |             .init(children[position])
80 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:82:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
80 |         }
81 |
82 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
83 |             .init(children: children[bounds])
84 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContainerRelative/ContainerRelative.swift:92:13: warning: call to main actor-isolated initializer 'init(axes:alignment:length:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 90 |     ) -> some View {
 91 |         wrapped.modifier(
 92 |             ContainerRelativeFrameModifier(
    |             `- warning: call to main actor-isolated initializer 'init(axes:alignment:length:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 93 |                 axes: axes,
 94 |                 alignment: alignment
    :
289 | }
290 |
291 | private struct ContainerRelativeFrameModifier: ViewModifier {
    |                |- note: calls to initializer 'init(axes:alignment:length:)' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
292 |     @State private var size: CGSize = .zero
293 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContainerRelative/ContainerRelative.swift:282:13: warning: call to main actor-isolated initializer 'init(axes:alignment:length:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
280 |     ) -> some View {
281 |         wrapped.modifier(
282 |             ContainerRelativeFrameModifier(
    |             `- warning: call to main actor-isolated initializer 'init(axes:alignment:length:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
283 |                 axes: axes,
284 |                 alignment: alignment,
    :
289 | }
290 |
291 | private struct ContainerRelativeFrameModifier: ViewModifier {
    |                |- note: calls to initializer 'init(axes:alignment:length:)' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
292 |     @State private var size: CGSize = .zero
293 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContentUnavailableView/ContainerUnavailableView.swift:143:18: warning: call to main actor-isolated instance method 'largeImage()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
141 |                 .foregroundColor(.secondary.opacity(0.5))
142 |                 .font(.largeTitle.weight(.medium))
143 |                 .largeImage()
    |                  `- warning: call to main actor-isolated instance method 'largeImage()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
144 |
145 |             configuration.title
    :
153 | private extension View {
154 |     @ViewBuilder
155 |     func largeImage() -> some View {
    |          `- note: calls to instance method 'largeImage()' from outside of its actor context are implicitly asynchronous
156 | #if os(iOS)
157 |         imageScale(.large)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Environment.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 |
 4 | private struct BackportDynamicTypeKey: EnvironmentKey {
 5 |     static var defaultValue: Backport.DynamicTypeSize = .large
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:69:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
 69 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 70 |                 .environment(\.dynamicTypeRange, range)
 71 |         } else if let range = range as? ClosedRange<T.Bound> {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:73:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 71 |         } else if let range = range as? ClosedRange<T.Bound> {
 72 |             wrapped
 73 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 74 |                 .environment(\.dynamicTypeRange, .init(uncheckedBounds: (lower: range.lowerBound, upper: range.upperBound)))
 75 |         } else if let range = range as? PartialRangeFrom<T.Bound> {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:77:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 75 |         } else if let range = range as? PartialRangeFrom<T.Bound> {
 76 |             wrapped
 77 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 |                 .environment(\.dynamicTypeRange, .init(uncheckedBounds: (range.lowerBound, .accessibility5)))
 79 |         } else if let range = range as? PartialRangeUpTo<T.Bound> {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:81:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 79 |         } else if let range = range as? PartialRangeUpTo<T.Bound> {
 80 |             wrapped
 81 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 82 |                 .environment(\.dynamicTypeRange, .init(uncheckedBounds: (.xSmall, range.upperBound)))
 83 |         } else if let range = range as? PartialRangeThrough<T.Bound> {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:85:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 83 |         } else if let range = range as? PartialRangeThrough<T.Bound> {
 84 |             wrapped
 85 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 86 |                 .environment(\.dynamicTypeRange, .init(uncheckedBounds: (.xSmall, range.upperBound)))
 87 |         } else {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:89:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 87 |         } else {
 88 |             wrapped
 89 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 90 |         }
 91 |     }
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:15:10: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
 13 |     public struct AppStorage<Value>: DynamicProperty {
 14 |
 15 |         @ObservedObject
    |          |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
    |          `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
 16 |         private var _value: RefStorage<Value>
 17 |         private let commitHandler: (Value) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:65:9: warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
 63 |     @ViewBuilder
 64 |     static func AsyncImage<I: View, P: View>(url: URL?, scale: CGFloat = 1, @ViewBuilder content: @escaping (Image) -> I, @ViewBuilder placeholder: @escaping () -> P) -> some View {
 65 |         _AsyncImage(url: url, scale: scale, content: content, placeholder: placeholder)
    |         |- warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'content' to main actor-isolated initializer 'init(url:scale:content:placeholder:)' risks causing data races between main actor-isolated and task-isolated uses
 66 |     }
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:65:9: warning: sending 'placeholder' risks causing data races; this is an error in the Swift 6 language mode
 63 |     @ViewBuilder
 64 |     static func AsyncImage<I: View, P: View>(url: URL?, scale: CGFloat = 1, @ViewBuilder content: @escaping (Image) -> I, @ViewBuilder placeholder: @escaping () -> P) -> some View {
 65 |         _AsyncImage(url: url, scale: scale, content: content, placeholder: placeholder)
    |         |- warning: sending 'placeholder' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'placeholder' to main actor-isolated initializer 'init(url:scale:content:placeholder:)' risks causing data races between main actor-isolated and task-isolated uses
 66 |     }
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:104:9: warning: sending 'transaction' risks causing data races; this is an error in the Swift 6 language mode
102 |     @ViewBuilder
103 |     static func AsyncImage<Content: View>(url: URL?, scale: CGFloat = 1, transaction: Transaction = Transaction(), @ViewBuilder content: @escaping (AsyncImagePhase) -> Content) -> some View {
104 |         _AsyncImage(url: url, scale: scale, transaction: transaction, content: content)
    |         |- warning: sending 'transaction' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'transaction' to main actor-isolated initializer 'init(url:scale:transaction:content:)' risks causing data races between main actor-isolated and task-isolated uses
105 |     }
106 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:104:9: warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
102 |     @ViewBuilder
103 |     static func AsyncImage<Content: View>(url: URL?, scale: CGFloat = 1, transaction: Transaction = Transaction(), @ViewBuilder content: @escaping (AsyncImagePhase) -> Content) -> some View {
104 |         _AsyncImage(url: url, scale: scale, transaction: transaction, content: content)
    |         |- warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'content' to main actor-isolated initializer 'init(url:scale:transaction:content:)' risks causing data races between main actor-isolated and task-isolated uses
105 |     }
106 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContainerRelative/ContainerRelative.swift:282:13: warning: sending 'length' risks causing data races; this is an error in the Swift 6 language mode
280 |     ) -> some View {
281 |         wrapped.modifier(
282 |             ContainerRelativeFrameModifier(
    |             |- warning: sending 'length' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'length' to main actor-isolated initializer 'init(axes:alignment:length:)' risks causing data races between main actor-isolated and task-isolated uses
283 |                 axes: axes,
284 |                 alignment: alignment,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContentUnavailableView/ContainerUnavailableView.swift:143:18: warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
141 |                 .foregroundColor(.secondary.opacity(0.5))
142 |                 .font(.largeTitle.weight(.medium))
143 |                 .largeImage()
    |                  |- warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending task-isolated value of non-Sendable type 'some View' to main actor-isolated instance method 'largeImage()' risks causing races in between task-isolated and main actor-isolated uses
144 |
145 |             configuration.title
[150/163] Compiling SwiftUIBackports DynamicType.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/VisualEffects/VisualEffect+macOS.swift:52:13: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
50 |
51 |     class Coordinator {
52 |         let visualEffectView = NSVisualEffectView()
   |             `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
53 |
54 |         init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/VisualEffects/VisualEffect+macOS.swift:55:30: warning: main actor-isolated property 'blendingMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
53 |
54 |         init() {
55 |             visualEffectView.blendingMode = .withinWindow
   |                              `- warning: main actor-isolated property 'blendingMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 |         }
57 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSVisualEffectView.h:101:38: note: mutation of this property is only permitted within the actor
 99 |
100 | /// A value controlling how the NSVisualEffectView generates its material.  See the comments on NSVisualEffectBlendingMode.  Not all materials support both blending modes, so NSVisualEffectView may fall back to a more appropriate blending mode as needed.  Defaults to NSVisualEffectBlendingModeBehindWindow.
101 | @property NSVisualEffectBlendingMode blendingMode;
    |                                      `- note: mutation of this property is only permitted within the actor
102 |
103 | /// A value controlling when the NSVisualEffectView takes on the active look.  See the comments on NSVisualEffectState.  Defaults to NSVisualEffectStateFollowsWindowActiveState.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/VisualEffects/VisualEffect+macOS.swift:59:30: warning: main actor-isolated property 'material' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
56 |         }
57 |
58 |         func update(material: NSVisualEffectView.Material) {
   |              `- note: add '@MainActor' to make instance method 'update(material:)' part of global actor 'MainActor'
59 |             visualEffectView.material = material
   |                              `- warning: main actor-isolated property 'material' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
60 |         }
61 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSVisualEffectView.h:95:34: note: mutation of this property is only permitted within the actor
 93 |
 94 | /// A value indicating which material is shown by the NSVisualEffectView.  See the comments on NSVisualEffectMaterial.  Defaults to NSVisualEffectMaterialAppearanceBased.  You should instead specify an appropriate semantic material value.  See the comments on NSVisualEffectMaterial.
 95 | @property NSVisualEffectMaterial material;
    |                                  `- note: mutation of this property is only permitted within the actor
 96 |
 97 | /// An NSBackgroundStyle value that most closely matches the look of the material shown by the NSVisualEffectView.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/VisualEffects/VisualEffect+macOS.swift:63:30: warning: main actor-isolated property 'blendingMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
60 |         }
61 |
62 |         func update(blendingMode: NSVisualEffectView.BlendingMode) {
   |              `- note: add '@MainActor' to make instance method 'update(blendingMode:)' part of global actor 'MainActor'
63 |             visualEffectView.blendingMode = blendingMode
   |                              `- warning: main actor-isolated property 'blendingMode' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
64 |         }
65 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSVisualEffectView.h:101:38: note: mutation of this property is only permitted within the actor
 99 |
100 | /// A value controlling how the NSVisualEffectView generates its material.  See the comments on NSVisualEffectBlendingMode.  Not all materials support both blending modes, so NSVisualEffectView may fall back to a more appropriate blending mode as needed.  Defaults to NSVisualEffectBlendingModeBehindWindow.
101 | @property NSVisualEffectBlendingMode blendingMode;
    |                                      `- note: mutation of this property is only permitted within the actor
102 |
103 | /// A value controlling when the NSVisualEffectView takes on the active look.  See the comments on NSVisualEffectState.  Defaults to NSVisualEffectStateFollowsWindowActiveState.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Internal/VisualEffects/VisualEffect+macOS.swift:67:30: warning: main actor-isolated property 'state' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
64 |         }
65 |
66 |         func update(state: NSVisualEffectView.State) {
   |              `- note: add '@MainActor' to make instance method 'update(state:)' part of global actor 'MainActor'
67 |             visualEffectView.state = state
   |                              `- warning: main actor-isolated property 'state' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
68 |         }
69 |     }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/AppKit.framework/Headers/NSVisualEffectView.h:104:31: note: mutation of this property is only permitted within the actor
102 |
103 | /// A value controlling when the NSVisualEffectView takes on the active look.  See the comments on NSVisualEffectState.  Defaults to NSVisualEffectStateFollowsWindowActiveState.
104 | @property NSVisualEffectState state;
    |                               `- note: mutation of this property is only permitted within the actor
105 |
106 | /// An image whose alpha channel is used to mask the material generated by the NSVisualEffectView.  (It does not also mask subviews.)  Defaults to nil.  It is best to set this to the smallest mask image possible and properly set the image's capInsets property to stretch it.  Setting the maskImage on an NSVisualEffectView that is the contentView of a window will correctly influence the window's shadow.
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:15:10: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 13 |     public struct AppStorage<Value>: DynamicProperty {
 14 |
 15 |         @ObservedObject
    |          `- warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 16 |         private var _value: RefStorage<Value>
 17 |         private let commitHandler: (Value) -> Void
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
1 | generic struct ObservedObject {
2 | @MainActor @preconcurrency public init(wrappedValue: ObjectType)}
  |                                   `- note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:20:19: warning: main actor-isolated property '_value' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 14 |
 15 |         @ObservedObject
 16 |         private var _value: RefStorage<Value>
    |                     `- note: property declared here
 17 |         private let commitHandler: (Value) -> Void
 18 |
 19 |         public var wrappedValue: Value {
 20 |             get { _value.value }
    |                   `- warning: main actor-isolated property '_value' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
 21 |             nonmutating set {
 22 |                 commitHandler(newValue)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:23:17: warning: main actor-isolated property '_value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 14 |
 15 |         @ObservedObject
 16 |         private var _value: RefStorage<Value>
    |                     `- note: mutation of this property is only permitted within the actor
 17 |         private let commitHandler: (Value) -> Void
 18 |
    :
 21 |             nonmutating set {
 22 |                 commitHandler(newValue)
 23 |                 _value.value = newValue
    |                 `- warning: main actor-isolated property '_value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 24 |             }
 25 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:29:24: warning: capture of 'self' with non-sendable type 'Backport<Any>.AppStorage<Value>' in a '@Sendable' closure
 11 |     /// invalidates a view on a change in value in that store.
 12 |     @propertyWrapper
 13 |     public struct AppStorage<Value>: DynamicProperty {
    |                   `- note: consider making generic struct 'AppStorage' conform to the 'Sendable' protocol
 14 |
 15 |         @ObservedObject
    :
 27 |         public var projectedValue: Binding<Value> {
 28 |             Binding(
 29 |                 get: { wrappedValue },
    |                        `- warning: capture of 'self' with non-sendable type 'Backport<Any>.AppStorage<Value>' in a '@Sendable' closure
 30 |                 set: { wrappedValue = $0 }
 31 |             )
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:30:24: warning: capture of 'self' with non-sendable type 'Backport<Any>.AppStorage<Value>' in a '@Sendable' closure
 11 |     /// invalidates a view on a change in value in that store.
 12 |     @propertyWrapper
 13 |     public struct AppStorage<Value>: DynamicProperty {
    |                   `- note: consider making generic struct 'AppStorage' conform to the 'Sendable' protocol
 14 |
 15 |         @ObservedObject
    :
 28 |             Binding(
 29 |                 get: { wrappedValue },
 30 |                 set: { wrappedValue = $0 }
    |                        `- warning: capture of 'self' with non-sendable type 'Backport<Any>.AppStorage<Value>' in a '@Sendable' closure
 31 |             )
 32 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:35:18: warning: main actor-isolated property '_value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 14 |
 15 |         @ObservedObject
 16 |         private var _value: RefStorage<Value>
    |                     `- note: mutation of this property is only permitted within the actor
 17 |         private let commitHandler: (Value) -> Void
 18 |
    :
 33 |
 34 |         private init(value: Value, store: UserDefaults, key: String, get: @escaping (Any?) -> Value?, set: @escaping (Value) -> Void) {
 35 |             self._value = RefStorage(value: value, store: store, key: key, transform: get)
    |                  `- warning: main actor-isolated property '_value' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
 36 |             self.commitHandler = set
 37 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:30:9: warning: call to main actor-isolated initializer 'init(url:scale:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 27 |     ///     would name with the `@2x` suffix if stored in a file on disk.
 28 |     @ViewBuilder
 29 |     static func AsyncImage(url: URL?, scale: CGFloat = 1) -> some View {
    |                 `- note: add '@MainActor' to make static method 'AsyncImage(url:scale:)' part of global actor 'MainActor'
 30 |         _AsyncImage(url: url, scale: scale)
    |         `- warning: call to main actor-isolated initializer 'init(url:scale:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 31 |     }
 32 |
    :
183 |         }
184 |
185 |         init(url: URL?, scale: CGFloat = 1) where Content == AnyView {
    |         |- note: calls to initializer 'init(url:scale:)' from outside of its actor context are implicitly asynchronous
    |         `- note: main actor isolation inferred from conformance to protocol 'View'
186 |             self.url = url
187 |             self.scale = scale
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:65:9: warning: call to main actor-isolated initializer 'init(url:scale:content:placeholder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 62 |     ///     load operation completes successfully.
 63 |     @ViewBuilder
 64 |     static func AsyncImage<I: View, P: View>(url: URL?, scale: CGFloat = 1, @ViewBuilder content: @escaping (Image) -> I, @ViewBuilder placeholder: @escaping () -> P) -> some View {
    |                 `- note: add '@MainActor' to make static method 'AsyncImage(url:scale:content:placeholder:)' part of global actor 'MainActor'
 65 |         _AsyncImage(url: url, scale: scale, content: content, placeholder: placeholder)
    |         `- warning: call to main actor-isolated initializer 'init(url:scale:content:placeholder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 66 |     }
 67 |
    :
189 |         }
190 |
191 |         init<I, P>(url: URL?, scale: CGFloat = 1, @ViewBuilder content: @escaping (Image) -> I, @ViewBuilder placeholder: @escaping () -> P) where Content == _ConditionalContent<I, P> {
    |         |- note: calls to initializer 'init(url:scale:content:placeholder:)' from outside of its actor context are implicitly asynchronous
    |         `- note: main actor isolation inferred from conformance to protocol 'View'
192 |             self.url = url
193 |             self.scale = scale
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:104:9: warning: call to main actor-isolated initializer 'init(url:scale:transaction:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
101 |     ///     returns the view to display for the specified phase.
102 |     @ViewBuilder
103 |     static func AsyncImage<Content: View>(url: URL?, scale: CGFloat = 1, transaction: Transaction = Transaction(), @ViewBuilder content: @escaping (AsyncImagePhase) -> Content) -> some View {
    |                 `- note: add '@MainActor' to make static method 'AsyncImage(url:scale:transaction:content:)' part of global actor 'MainActor'
104 |         _AsyncImage(url: url, scale: scale, transaction: transaction, content: content)
    |         `- warning: call to main actor-isolated initializer 'init(url:scale:transaction:content:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
105 |     }
106 |
    :
202 |         }
203 |
204 |         init(url: URL?, scale: CGFloat = 1, transaction: Transaction = Transaction(), @ViewBuilder content: @escaping (Backport<Any>.AsyncImagePhase) -> Content) {
    |         |- note: calls to initializer 'init(url:scale:transaction:content:)' from outside of its actor context are implicitly asynchronous
    |         `- note: main actor isolation inferred from conformance to protocol 'View'
205 |             self.url = url
206 |             self.scale = scale
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:38:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
18 |
19 | extension Backport<Any> {
20 |     public struct ForEachSubviewCollection<Content>: View, RandomAccessCollection, Sendable where Content: View {
   |                                                            `- note: add '@preconcurrency' to the 'RandomAccessCollection' conformance to defer isolation checking to run time
21 |         public typealias SubSequence = Slice<ForEachSubviewCollection<Content>>
22 |         public typealias Iterator = IndexingIterator<ForEachSubviewCollection<Content>>
   :
36 |         }
37 |
38 |         public subscript(index: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
39 |             .init(children[index])
40 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:27:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
25 |         public typealias Element = Subview
26 |
27 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:28:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
26 |
27 |         public var startIndex: Int { children.startIndex }
28 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
29 |
30 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:30:21: warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
30 |         public func index(before i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(before:)' to make this instance method not isolated to the actor
31 |             children.index(before: i)
32 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:34:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
32 |         }
33 |
34 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
35 |             children.index(after: i)
36 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:30:21: warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
30 |         public func index(before i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(before:)' to make this instance method not isolated to the actor
31 |             children.index(before: i)
32 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:34:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
32 |         }
33 |
34 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
35 |             children.index(after: i)
36 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:38:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
36 |         }
37 |
38 |         public subscript(index: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
39 |             .init(children[index])
40 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:27:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
25 |         public typealias Element = Subview
26 |
27 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:28:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
26 |
27 |         public var startIndex: Int { children.startIndex }
28 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
29 |
30 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:27:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
25 |         public typealias Element = Subview
26 |
27 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
28 |         public var endIndex: Int { children.endIndex }
29 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:28:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
26 |
27 |         public var startIndex: Int { children.startIndex }
28 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
29 |
30 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:38:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
36 |         }
37 |
38 |         public subscript(index: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
39 |             .init(children[index])
40 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/ForEach+Subviews.swift:34:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
32 |         }
33 |
34 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
35 |             children.index(after: i)
36 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:57:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
33 |
34 | extension Backport<Any> {
35 |     public struct SubviewsCollection: RandomAccessCollection, View, Sendable {
   |                                       `- note: add '@preconcurrency' to the 'RandomAccessCollection' conformance to defer isolation checking to run time
36 |         public typealias SubSequence = SubviewsCollectionSlice
37 |         public typealias Iterator = IndexingIterator<SubviewsCollection>
   :
55 |         }
56 |
57 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
58 |             .init(children: children[bounds])
59 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:53:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
51 |         }
52 |
53 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
54 |             .init(children[position])
55 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:42:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
40 |         public typealias Element = Subview
41 |
42 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:43:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
41 |
42 |         public var startIndex: Int { children.startIndex }
43 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
44 |
45 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:45:21: warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
45 |         public func index(before i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(before:)' to make this instance method not isolated to the actor
46 |             children.index(before: i)
47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:49:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
47 |         }
48 |
49 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
50 |             children.index(after: i)
51 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:45:21: warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
45 |         public func index(before i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(before:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(before:)' to make this instance method not isolated to the actor
46 |             children.index(before: i)
47 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:49:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
47 |         }
48 |
49 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
50 |             children.index(after: i)
51 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:57:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
55 |         }
56 |
57 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
58 |             .init(children: children[bounds])
59 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:53:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
51 |         }
52 |
53 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
54 |             .init(children[position])
55 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:42:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
40 |         public typealias Element = Subview
41 |
42 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:43:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
41 |
42 |         public var startIndex: Int { children.startIndex }
43 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
44 |
45 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:42:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
40 |         public typealias Element = Subview
41 |
42 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
43 |         public var endIndex: Int { children.endIndex }
44 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:43:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
41 |
42 |         public var startIndex: Int { children.startIndex }
43 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
44 |
45 |         public func index(before i: Int) -> Int {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:53:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
51 |         }
52 |
53 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
54 |             .init(children[position])
55 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:57:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
55 |         }
56 |
57 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
58 |             .init(children: children[bounds])
59 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:49:21: warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
47 |         }
48 |
49 |         public func index(after i: Int) -> Int {
   |                     |- warning: main actor-isolated instance method 'index(after:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                     `- note: add 'nonisolated' to 'index(after:)' to make this instance method not isolated to the actor
50 |             children.index(after: i)
51 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:82:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
66 |     }
67 |
68 |     public struct SubviewsCollectionSlice: RandomAccessCollection, View, Sendable {
   |                                            `- note: add '@preconcurrency' to the 'RandomAccessCollection' conformance to defer isolation checking to run time
69 |         public typealias SubSequence = SubviewsCollectionSlice
70 |         public typealias Element = Subview
   :
80 |         }
81 |
82 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
83 |             .init(children: children[bounds])
84 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:78:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
78 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
79 |             .init(children[position])
80 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:75:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
73 |         public typealias Index = Int
74 |
75 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:76:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
74 |
75 |         public var startIndex: Int { children.startIndex }
76 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'RandomAccessCollection'; this is an error in the Swift 6 language mode
77 |
78 |         public subscript(position: Int) -> Subview {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:82:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
80 |         }
81 |
82 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
83 |             .init(children: children[bounds])
84 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:78:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
78 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
79 |             .init(children[position])
80 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:75:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
73 |         public typealias Index = Int
74 |
75 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:76:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
74 |
75 |         public var startIndex: Int { children.startIndex }
76 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'BidirectionalCollection'; this is an error in the Swift 6 language mode
77 |
78 |         public subscript(position: Int) -> Subview {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:75:20: warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
73 |         public typealias Index = Int
74 |
75 |         public var startIndex: Int { children.startIndex }
   |                    `- warning: main actor-isolated property 'startIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:76:20: warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
74 |
75 |         public var startIndex: Int { children.startIndex }
76 |         public var endIndex: Int { children.endIndex }
   |                    `- warning: main actor-isolated property 'endIndex' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
77 |
78 |         public subscript(position: Int) -> Subview {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:78:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
76 |         public var endIndex: Int { children.endIndex }
77 |
78 |         public subscript(position: Int) -> Subview {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
79 |             .init(children[position])
80 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/Container/Group+Subviews.swift:82:16: warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
80 |         }
81 |
82 |         public subscript(bounds: Range<Int>) -> SubviewsCollectionSlice {
   |                |- warning: main actor-isolated subscript 'subscript(_:)' cannot be used to satisfy nonisolated requirement from protocol 'Collection'; this is an error in the Swift 6 language mode
   |                `- note: add 'nonisolated' to 'subscript(_:)' to make this subscript not isolated to the actor
83 |             .init(children: children[bounds])
84 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContainerRelative/ContainerRelative.swift:92:13: warning: call to main actor-isolated initializer 'init(axes:alignment:length:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 90 |     ) -> some View {
 91 |         wrapped.modifier(
 92 |             ContainerRelativeFrameModifier(
    |             `- warning: call to main actor-isolated initializer 'init(axes:alignment:length:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 93 |                 axes: axes,
 94 |                 alignment: alignment
    :
289 | }
290 |
291 | private struct ContainerRelativeFrameModifier: ViewModifier {
    |                |- note: calls to initializer 'init(axes:alignment:length:)' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
292 |     @State private var size: CGSize = .zero
293 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContainerRelative/ContainerRelative.swift:282:13: warning: call to main actor-isolated initializer 'init(axes:alignment:length:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
280 |     ) -> some View {
281 |         wrapped.modifier(
282 |             ContainerRelativeFrameModifier(
    |             `- warning: call to main actor-isolated initializer 'init(axes:alignment:length:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
283 |                 axes: axes,
284 |                 alignment: alignment,
    :
289 | }
290 |
291 | private struct ContainerRelativeFrameModifier: ViewModifier {
    |                |- note: calls to initializer 'init(axes:alignment:length:)' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
292 |     @State private var size: CGSize = .zero
293 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContentUnavailableView/ContainerUnavailableView.swift:143:18: warning: call to main actor-isolated instance method 'largeImage()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
141 |                 .foregroundColor(.secondary.opacity(0.5))
142 |                 .font(.largeTitle.weight(.medium))
143 |                 .largeImage()
    |                  `- warning: call to main actor-isolated instance method 'largeImage()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
144 |
145 |             configuration.title
    :
153 | private extension View {
154 |     @ViewBuilder
155 |     func largeImage() -> some View {
    |          `- note: calls to instance method 'largeImage()' from outside of its actor context are implicitly asynchronous
156 | #if os(iOS)
157 |         imageScale(.large)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Environment.swift:5:16: warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 3 |
 4 | private struct BackportDynamicTypeKey: EnvironmentKey {
 5 |     static var defaultValue: Backport.DynamicTypeSize = .large
   |                |- warning: static property 'defaultValue' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'defaultValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 6 | }
 7 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:69:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
 69 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 70 |                 .environment(\.dynamicTypeRange, range)
 71 |         } else if let range = range as? ClosedRange<T.Bound> {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:73:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 71 |         } else if let range = range as? ClosedRange<T.Bound> {
 72 |             wrapped
 73 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 74 |                 .environment(\.dynamicTypeRange, .init(uncheckedBounds: (lower: range.lowerBound, upper: range.upperBound)))
 75 |         } else if let range = range as? PartialRangeFrom<T.Bound> {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:77:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 75 |         } else if let range = range as? PartialRangeFrom<T.Bound> {
 76 |             wrapped
 77 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 78 |                 .environment(\.dynamicTypeRange, .init(uncheckedBounds: (range.lowerBound, .accessibility5)))
 79 |         } else if let range = range as? PartialRangeUpTo<T.Bound> {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:81:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 79 |         } else if let range = range as? PartialRangeUpTo<T.Bound> {
 80 |             wrapped
 81 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 82 |                 .environment(\.dynamicTypeRange, .init(uncheckedBounds: (.xSmall, range.upperBound)))
 83 |         } else if let range = range as? PartialRangeThrough<T.Bound> {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:85:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 83 |         } else if let range = range as? PartialRangeThrough<T.Bound> {
 84 |             wrapped
 85 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 86 |                 .environment(\.dynamicTypeRange, .init(uncheckedBounds: (.xSmall, range.upperBound)))
 87 |         } else {
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/DynamicType/DynamicType+Modifiers.swift:89:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 64 |     ///   within the specified `range`.
 65 |     @ViewBuilder
 66 |     public func dynamicTypeSize<T>(_ range: T) -> some View where T: RangeExpression, T.Bound == Backport<Any>.DynamicTypeSize {
    |                 `- note: add '@MainActor' to make instance method 'dynamicTypeSize' part of global actor 'MainActor'
 67 |         if let range = range as? Range<T.Bound> {
 68 |             wrapped
    :
 87 |         } else {
 88 |             wrapped
 89 |                 .modifier(DynamicTypeRangeModifier())
    |                           `- warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
 90 |         }
 91 |     }
    :
 93 | }
 94 |
 95 | private struct DynamicTypeRangeModifier: ViewModifier {
    |                |- note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    |                `- note: main actor isolation inferred from conformance to protocol 'ViewModifier'
 96 |     @Environment(\.dynamicTypeRange) private var range
 97 |     @Environment(\.backportDynamicTypeSize) private var size
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AppStorage/AppStorage.swift:15:10: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
 13 |     public struct AppStorage<Value>: DynamicProperty {
 14 |
 15 |         @ObservedObject
    |          |- warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
    |          `- note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
 16 |         private var _value: RefStorage<Value>
 17 |         private let commitHandler: (Value) -> Void
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:65:9: warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
 63 |     @ViewBuilder
 64 |     static func AsyncImage<I: View, P: View>(url: URL?, scale: CGFloat = 1, @ViewBuilder content: @escaping (Image) -> I, @ViewBuilder placeholder: @escaping () -> P) -> some View {
 65 |         _AsyncImage(url: url, scale: scale, content: content, placeholder: placeholder)
    |         |- warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'content' to main actor-isolated initializer 'init(url:scale:content:placeholder:)' risks causing data races between main actor-isolated and task-isolated uses
 66 |     }
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:65:9: warning: sending 'placeholder' risks causing data races; this is an error in the Swift 6 language mode
 63 |     @ViewBuilder
 64 |     static func AsyncImage<I: View, P: View>(url: URL?, scale: CGFloat = 1, @ViewBuilder content: @escaping (Image) -> I, @ViewBuilder placeholder: @escaping () -> P) -> some View {
 65 |         _AsyncImage(url: url, scale: scale, content: content, placeholder: placeholder)
    |         |- warning: sending 'placeholder' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'placeholder' to main actor-isolated initializer 'init(url:scale:content:placeholder:)' risks causing data races between main actor-isolated and task-isolated uses
 66 |     }
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:104:9: warning: sending 'transaction' risks causing data races; this is an error in the Swift 6 language mode
102 |     @ViewBuilder
103 |     static func AsyncImage<Content: View>(url: URL?, scale: CGFloat = 1, transaction: Transaction = Transaction(), @ViewBuilder content: @escaping (AsyncImagePhase) -> Content) -> some View {
104 |         _AsyncImage(url: url, scale: scale, transaction: transaction, content: content)
    |         |- warning: sending 'transaction' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'transaction' to main actor-isolated initializer 'init(url:scale:transaction:content:)' risks causing data races between main actor-isolated and task-isolated uses
105 |     }
106 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/AsyncImage/AsyncImage.swift:104:9: warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
102 |     @ViewBuilder
103 |     static func AsyncImage<Content: View>(url: URL?, scale: CGFloat = 1, transaction: Transaction = Transaction(), @ViewBuilder content: @escaping (AsyncImagePhase) -> Content) -> some View {
104 |         _AsyncImage(url: url, scale: scale, transaction: transaction, content: content)
    |         |- warning: sending 'content' risks causing data races; this is an error in the Swift 6 language mode
    |         `- note: sending task-isolated 'content' to main actor-isolated initializer 'init(url:scale:transaction:content:)' risks causing data races between main actor-isolated and task-isolated uses
105 |     }
106 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContainerRelative/ContainerRelative.swift:282:13: warning: sending 'length' risks causing data races; this is an error in the Swift 6 language mode
280 |     ) -> some View {
281 |         wrapped.modifier(
282 |             ContainerRelativeFrameModifier(
    |             |- warning: sending 'length' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: sending task-isolated 'length' to main actor-isolated initializer 'init(axes:alignment:length:)' risks causing data races between main actor-isolated and task-isolated uses
283 |                 axes: axes,
284 |                 alignment: alignment,
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ContentUnavailableView/ContainerUnavailableView.swift:143:18: warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
141 |                 .foregroundColor(.secondary.opacity(0.5))
142 |                 .font(.largeTitle.weight(.medium))
143 |                 .largeImage()
    |                  |- warning: sending value of non-Sendable type 'some View' risks causing data races; this is an error in the Swift 6 language mode
    |                  `- note: sending task-isolated value of non-Sendable type 'some View' to main actor-isolated instance method 'largeImage()' risks causing races in between task-isolated and main actor-isolated uses
144 |
145 |             configuration.title
[151/163] Compiling SwiftUIBackports SensoryFeedback.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[152/163] Compiling SwiftUIBackports DefaultShareLinkLabel.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[153/163] Compiling SwiftUIBackports Items+Label+Preview.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[154/163] Compiling SwiftUIBackports Items+Label.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[155/163] Compiling SwiftUIBackports Items+Preview.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[156/163] Compiling SwiftUIBackports Items.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[157/163] Compiling SwiftUIBackports ShareLink.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[158/163] Compiling SwiftUIBackports SharePreview.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[159/163] Compiling SwiftUIBackports ShareSheet.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[160/163] Compiling SwiftUIBackports Item+Label+Preview.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[161/163] Compiling SwiftUIBackports Item+Label.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[162/163] Compiling SwiftUIBackports Item+Preview.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
[163/163] Compiling SwiftUIBackports Item.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:84:14: warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 28 |     }
 29 |
 30 |     final class SourceView: NSView, NSSharingServicePickerDelegate, NSSharingServiceDelegate {
    |                                     `- note: add '@preconcurrency' to the 'NSSharingServicePickerDelegate' conformance to defer isolation checking to run time
 31 |         var picker: NSSharingServicePicker?
 32 |
    :
 82 |         }
 83 |
 84 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, sharingServicesForItems items: [Any], proposedSharingServices proposedServices: [NSSharingService]) -> [NSSharingService] {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:sharingServicesForItems:proposedSharingServices:)' to make this instance method not isolated to the actor
 85 |             proposedServices
 86 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:75:14: warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 73 |         }
 74 |
 75 |         func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, delegateFor sharingService: NSSharingService) -> NSSharingServiceDelegate? {
    |              |- warning: main actor-isolated instance method 'sharingServicePicker(_:delegateFor:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |              `- note: add 'nonisolated' to 'sharingServicePicker(_:delegateFor:)' to make this instance method not isolated to the actor
 76 |             return self
 77 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Shared/ShareLink/ShareSheet.swift:79:21: warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
 77 |         }
 78 |
 79 |         public func sharingServicePicker(_ sharingServicePicker: NSSharingServicePicker, didChoose service: NSSharingService?) {
    |                     |- warning: main actor-isolated instance method 'sharingServicePicker(_:didChoose:)' cannot be used to satisfy nonisolated requirement from protocol 'NSSharingServicePickerDelegate'; this is an error in the Swift 6 language mode
    |                     `- note: add 'nonisolated' to 'sharingServicePicker(_:didChoose:)' to make this instance method not isolated to the actor
 80 |             sharingServicePicker.delegate = nil
 81 |             dismissController()
Fetching https://github.com/shaps80/SwiftBackports
Fetching https://github.com/apple/swift-docc-plugin
[11/510] Fetching swiftbackports
[180/2668] Fetching swiftbackports, swift-docc-plugin
Fetched https://github.com/shaps80/SwiftBackports from cache (0.94s)
[259/2158] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.24s)
Computing version for https://github.com/shaps80/SwiftBackports
Computed https://github.com/shaps80/SwiftBackports at 26.0.1 (1.82s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.5 (0.57s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit from cache
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.85s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.51s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/shaps80/SwiftBackports
Working copy of https://github.com/shaps80/SwiftBackports resolved at 26.0.1
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/3] Write swift-version-2F0A5646E1D333AE.txt
[4/25] Emitting module SwiftBackports
[5/27] Compiling SwiftBackports TransferRepresentationBuilder.swift
[6/27] Compiling SwiftBackports Transferable.swift
[7/27] Compiling SwiftBackports Backport.swift
[8/27] Compiling SwiftBackports Codable+Representation.swift
[9/27] Compiling SwiftBackports Data+Representation.swift
[10/27] Compiling SwiftBackports SentTransferredFile.swift
[11/27] Compiling SwiftBackports Visibility.swift
[12/27] Compiling SwiftBackports Data+Transferable.swift
[13/27] Compiling SwiftBackports Never+Transferable.swift
[14/27] Compiling SwiftBackports File+Representations.swift
[15/27] Compiling SwiftBackports Never+Representation.swift
[16/27] Compiling SwiftBackports Tuple+Representation.swift
[17/27] Compiling SwiftBackports _ConditionalRepresentation.swift
[18/27] Compiling SwiftBackports NSItemProvider+Transferable.swift
[19/27] Compiling SwiftBackports ReceivedTransferredFile.swift
[20/27] Compiling SwiftBackports URLSession+Async.swift
[21/27] Compiling SwiftBackports CoreTypes.swift
[22/27] Compiling SwiftBackports String+Transferable.swift
[23/27] Compiling SwiftBackports URL+Transferable.swift
[24/27] Compiling SwiftBackports TransferableRepresentation.swift
[25/27] Compiling SwiftBackports AttributedString+Transferable.swift
[26/27] Compiling SwiftBackports UTTagClass.swift
[27/27] Compiling SwiftBackports UTType.swift
[28/147] Compiling SwiftUIBackports FetchAsset.swift
[29/147] Compiling SwiftUIBackports FetchAssetCollection.swift
[30/147] Compiling SwiftUIBackports FetchAssetList.swift
[31/147] Compiling SwiftUIBackports FetchCollectionList.swift
[32/147] Compiling SwiftUIBackports PhotosPicker+View.swift
[33/147] Compiling SwiftUIBackports PhotosPicker.swift
[34/147] Compiling SwiftUIBackports PhotosPickerItem.swift
[35/147] Compiling SwiftUIBackports PhotosPickerSelectionBehavior.swift
[36/147] Compiling SwiftUIBackports PickerFilter.swift
[37/147] Compiling SwiftUIBackports PickerResult.swift
[38/147] Compiling SwiftUIBackports Hosts.swift
[39/147] Compiling SwiftUIBackports PhotosPickerView.swift
[40/147] Compiling SwiftUIBackports ProgressView.swift
[41/160] Compiling SwiftUIBackports Transferable.swift
[42/160] Compiling SwiftUIBackports StateObject.swift
[43/160] Compiling SwiftUIBackports SystemOverlays.swift
[44/160] Compiling SwiftUIBackports Task.swift
[45/160] Compiling SwiftUIBackports Toolbar.swift
[46/160] Compiling SwiftUIBackports ToolbarBackground+Environment.swift
[47/160] Compiling SwiftUIBackports ToolbarBackground.swift
[48/160] Compiling SwiftUIBackports ToolbarBackgroundModifier.swift
[49/160] Compiling SwiftUIBackports PushTransition.swift
[50/160] Compiling SwiftUIBackports Visibility.swift
[51/160] Compiling SwiftUIBackports AutoCapitalization.swift
[52/160] Compiling SwiftUIBackports FocusState.swift
[53/160] Compiling SwiftUIBackports ViewFocused.swift
[54/160] Compiling SwiftUIBackports AutomaticLabeledContentStyle.swift
[55/160] Compiling SwiftUIBackports Link.swift
[56/160] Compiling SwiftUIBackports NavigationDestination.swift
[57/160] Compiling SwiftUIBackports NavigationTitle.swift
[58/160] Compiling SwiftUIBackports OnChange.swift
[59/160] Compiling SwiftUIBackports OpenURL.swift
[60/160] Compiling SwiftUIBackports Safari.swift
[61/160] Compiling SwiftUIBackports Overlay.swift
[62/160] Compiling SwiftUIBackports PasteButton.swift
[63/160] Compiling SwiftUIBackports PhaseAnimator.swift
[64/160] Compiling SwiftUIBackports MediaResults.swift
[65/160] Compiling SwiftUIBackports PHFetchOptions.swift
[66/160] Compiling SwiftUIBackports PHObject+Identifiable.swift
[67/160] Compiling SwiftUIBackports ProgressViewConfiguration.swift
[68/160] Compiling SwiftUIBackports ProgressViewStyle.swift
[69/160] Compiling SwiftUIBackports CircularProgressViewStyle.swift
[70/160] Compiling SwiftUIBackports DefaultProgressViewStyle.swift
[71/160] Compiling SwiftUIBackports LinearProgressViewStyle.swift
[72/160] Compiling SwiftUIBackports Quicklook+iOS.swift
[73/160] Compiling SwiftUIBackports Quicklook+macOS.swift
[74/160] Compiling SwiftUIBackports Quicklook.swift
[75/160] Compiling SwiftUIBackports Refreshable.swift
[76/160] Compiling SwiftUIBackports RequestReview.swift
[77/160] Compiling SwiftUIBackports Section.swift
[78/160] Compiling SwiftUIBackports SensoryFeedback+View.swift
[79/160] Compiling SwiftUIBackports SensoryFeedback+ViewModifier.swift
[80/160] Compiling SwiftUIBackports GeometryChange.swift
[81/160] Compiling SwiftUIBackports ProposedViewSize.swift
[82/160] Compiling SwiftUIBackports Renderer.swift
[83/160] Compiling SwiftUIBackports Label.swift
[84/160] Compiling SwiftUIBackports LabelConfiguration.swift
[85/160] Compiling SwiftUIBackports LabelStyle.swift
[86/160] Compiling SwiftUIBackports DefaultLabelStyle.swift
[87/160] Compiling SwiftUIBackports IconOnlyLabelStyle.swift
[88/160] Compiling SwiftUIBackports TitleAndIconLabelStyle.swift
[89/160] Compiling SwiftUIBackports TitleOnlyLabelStyle.swift
[90/160] Compiling SwiftUIBackports LabeledContent.swift
[91/160] Compiling SwiftUIBackports LabeledContentStyle.swift
[92/160] Compiling SwiftUIBackports LabeledContentStyleConfiguration.swift
[93/160] Compiling SwiftUIBackports BackgroundInteraction.swift
[94/160] Compiling SwiftUIBackports ContentInteraction.swift
[95/160] Compiling SwiftUIBackports CornerRadius.swift
[96/160] Compiling SwiftUIBackports Detents.swift
[97/160] Compiling SwiftUIBackports DragIndicator.swift
[98/160] Compiling SwiftUIBackports InteractiveDetent.swift
[99/160] Compiling SwiftUIBackports InteractiveDismiss.swift
[100/160] Compiling SwiftUIBackports ScaledMetric.swift
[101/160] Compiling SwiftUIBackports Scroll+Environment.swift
[102/160] Compiling SwiftUIBackports ScrollDismissesKeyboardMode.swift
[103/160] Compiling SwiftUIBackports ScrollEnabled.swift
[104/160] Compiling SwiftUIBackports ScrollIndicatorVisibility.swift
[105/160] Compiling SwiftUIBackports ScrollIndicators.swift
[106/160] Compiling SwiftUIBackports SensoryFeedback.swift
[107/160] Compiling SwiftUIBackports DefaultShareLinkLabel.swift
[108/160] Compiling SwiftUIBackports Items+Label+Preview.swift
[109/160] Compiling SwiftUIBackports Items+Label.swift
[110/160] Compiling SwiftUIBackports Items+Preview.swift
[111/160] Compiling SwiftUIBackports Items.swift
[112/160] Compiling SwiftUIBackports ShareLink.swift
[113/160] Compiling SwiftUIBackports SharePreview.swift
[114/160] Compiling SwiftUIBackports ShareSheet.swift
[115/160] Compiling SwiftUIBackports Item+Label+Preview.swift
[116/160] Compiling SwiftUIBackports Item+Label.swift
[117/160] Compiling SwiftUIBackports Item+Preview.swift
[118/160] Compiling SwiftUIBackports Item.swift
[119/160] Compiling SwiftUIBackports Backport.swift
[120/160] Compiling SwiftUIBackports FittingGeometryReader+Deprecations.swift
[121/160] Compiling SwiftUIBackports FittingScrollView+Deprecations.swift
[122/160] Compiling SwiftUIBackports Presenatation+Deprecations.swift
[123/160] Compiling SwiftUIBackports Environment+String.swift
[124/160] Compiling SwiftUIBackports Environment.swift
[125/160] Compiling SwiftUIBackports Inspect.swift
[126/160] Compiling SwiftUIBackports NSItemProvider+Async.swift
[127/160] Compiling SwiftUIBackports OwningController.swift
[128/160] Compiling SwiftUIBackports Platforms.swift
[129/160] Compiling SwiftUIBackports SafeArea.swift
[130/160] Compiling SwiftUIBackports String+LocalizationKey.swift
[131/160] Compiling SwiftUIBackports UIScene.swift
[132/160] Compiling SwiftUIBackports VisualEffect+iOS.swift
[133/160] Compiling SwiftUIBackports ScrollKeyboardDismiss.swift
[134/160] Compiling SwiftUIBackports Submit.swift
[135/160] Compiling SwiftUIBackports ColorProviders.swift
[136/160] Compiling SwiftUIBackports FontProviders.swift
[137/160] Compiling SwiftUIBackports TextEditor+Support.swift
[138/160] Compiling SwiftUIBackports TextEditor.swift
[139/160] Compiling SwiftUIBackports UICollectionViewCell.swift
[140/160] Compiling SwiftUIBackports UITableViewCell.swift
[141/160] Compiling SwiftUIBackports ProposedInsets.swift
[142/160] Compiling SwiftUIBackports ProposedSize.swift
[143/160] Compiling SwiftUIBackports UIContentConfiguration.swift
[144/160] Compiling SwiftUIBackports UIHostingConfiguration.swift
[145/160] Compiling SwiftUIBackports resource_bundle_accessor.swift
[146/160] Compiling SwiftUIBackports VisualEffect+macOS.swift
[147/160] Compiling SwiftUIBackports AppStorage.swift
[148/160] Compiling SwiftUIBackports AsyncImage.swift
[149/160] Compiling SwiftUIBackports Background.swift
[150/160] Compiling SwiftUIBackports ForEach+Subviews.swift
[151/160] Compiling SwiftUIBackports Group+Subviews.swift
[152/160] Compiling SwiftUIBackports Subview.swift
[153/160] Compiling SwiftUIBackports VariadicView.swift
[154/160] Compiling SwiftUIBackports ContainerRelative.swift
[155/160] Compiling SwiftUIBackports ContainerUnavailableView.swift
[156/160] Compiling SwiftUIBackports Dismiss.swift
[157/160] Compiling SwiftUIBackports DynamicType+Environment.swift
[158/160] Compiling SwiftUIBackports DynamicType+Modifiers.swift
[159/160] Compiling SwiftUIBackports DynamicType.swift
[160/160] Emitting module SwiftUIBackports
Build complete! (2.90s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swiftbackports",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "26.0.1",
            "upper_bound" : "27.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/shaps80/SwiftBackports"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "SwiftUIBackports",
  "name" : "SwiftUIBackports",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "SwiftUIBackports",
      "targets" : [
        "SwiftUIBackports"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "SwiftUIBackports",
      "module_type" : "SwiftTarget",
      "name" : "SwiftUIBackports",
      "path" : "Sources/SwiftUIBackports",
      "product_dependencies" : [
        "SwiftBackports"
      ],
      "product_memberships" : [
        "SwiftUIBackports"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIBackports/Resources/PrivacyInfo.xcprivacy",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Backport.swift",
        "Deprecations/FittingGeometryReader+Deprecations.swift",
        "Deprecations/FittingScrollView+Deprecations.swift",
        "Deprecations/Presenatation+Deprecations.swift",
        "Internal/Environment+String.swift",
        "Internal/Environment.swift",
        "Internal/Inspect.swift",
        "Internal/NSItemProvider+Async.swift",
        "Internal/OwningController.swift",
        "Internal/Platforms.swift",
        "Internal/SafeArea.swift",
        "Internal/String+LocalizationKey.swift",
        "Internal/UIScene.swift",
        "Internal/VisualEffects/VisualEffect+iOS.swift",
        "Internal/VisualEffects/VisualEffect+macOS.swift",
        "Shared/AppStorage/AppStorage.swift",
        "Shared/AsyncImage/AsyncImage.swift",
        "Shared/Background/Background.swift",
        "Shared/Container/ForEach+Subviews.swift",
        "Shared/Container/Group+Subviews.swift",
        "Shared/Container/Subview.swift",
        "Shared/Container/VariadicView.swift",
        "Shared/ContainerRelative/ContainerRelative.swift",
        "Shared/ContentUnavailableView/ContainerUnavailableView.swift",
        "Shared/Dismiss/Dismiss.swift",
        "Shared/DynamicType/DynamicType+Environment.swift",
        "Shared/DynamicType/DynamicType+Modifiers.swift",
        "Shared/DynamicType/DynamicType.swift",
        "Shared/GeometryChange/GeometryChange.swift",
        "Shared/ImageRenderer/ProposedViewSize.swift",
        "Shared/ImageRenderer/Renderer.swift",
        "Shared/Label/Label.swift",
        "Shared/Label/LabelConfiguration.swift",
        "Shared/Label/LabelStyle.swift",
        "Shared/Label/Styles/DefaultLabelStyle.swift",
        "Shared/Label/Styles/IconOnlyLabelStyle.swift",
        "Shared/Label/Styles/TitleAndIconLabelStyle.swift",
        "Shared/Label/Styles/TitleOnlyLabelStyle.swift",
        "Shared/LabeledContent/LabeledContent.swift",
        "Shared/LabeledContent/LabeledContentStyle.swift",
        "Shared/LabeledContent/LabeledContentStyleConfiguration.swift",
        "Shared/LabeledContent/Styles/AutomaticLabeledContentStyle.swift",
        "Shared/Link/Link.swift",
        "Shared/Navigation/NavigationDestination.swift",
        "Shared/Navigation/NavigationTitle.swift",
        "Shared/OnChange/OnChange.swift",
        "Shared/OpenURL/OpenURL.swift",
        "Shared/OpenURL/Safari.swift",
        "Shared/Overlay/Overlay.swift",
        "Shared/PasteButton/PasteButton.swift",
        "Shared/PhaseAnimator/PhaseAnimator.swift",
        "Shared/PhotosPicker/Core/MediaResults.swift",
        "Shared/PhotosPicker/Core/PHFetchOptions.swift",
        "Shared/PhotosPicker/Core/PHObject+Identifiable.swift",
        "Shared/PhotosPicker/Fetch/FetchAsset.swift",
        "Shared/PhotosPicker/Fetch/FetchAssetCollection.swift",
        "Shared/PhotosPicker/Fetch/FetchAssetList.swift",
        "Shared/PhotosPicker/Fetch/FetchCollectionList.swift",
        "Shared/PhotosPicker/PhotosPicker+View.swift",
        "Shared/PhotosPicker/PhotosPicker.swift",
        "Shared/PhotosPicker/PhotosPickerItem.swift",
        "Shared/PhotosPicker/PhotosPickerSelectionBehavior.swift",
        "Shared/PhotosPicker/PickerFilter.swift",
        "Shared/PhotosPicker/PickerResult.swift",
        "Shared/PhotosPicker/UI/Hosts.swift",
        "Shared/PhotosPicker/UI/PhotosPickerView.swift",
        "Shared/ProgressView/ProgressView.swift",
        "Shared/ProgressView/ProgressViewConfiguration.swift",
        "Shared/ProgressView/ProgressViewStyle.swift",
        "Shared/ProgressView/Styles/CircularProgressViewStyle.swift",
        "Shared/ProgressView/Styles/DefaultProgressViewStyle.swift",
        "Shared/ProgressView/Styles/LinearProgressViewStyle.swift",
        "Shared/Quicklook/Quicklook+iOS.swift",
        "Shared/Quicklook/Quicklook+macOS.swift",
        "Shared/Quicklook/Quicklook.swift",
        "Shared/Refreshable/Refreshable.swift",
        "Shared/RequestReview/RequestReview.swift",
        "Shared/Section/Section.swift",
        "Shared/SensoryFeedback/SensoryFeedback+View.swift",
        "Shared/SensoryFeedback/SensoryFeedback+ViewModifier.swift",
        "Shared/SensoryFeedback/SensoryFeedback.swift",
        "Shared/ShareLink/DefaultShareLinkLabel.swift",
        "Shared/ShareLink/Multiple Items/Items+Label+Preview.swift",
        "Shared/ShareLink/Multiple Items/Items+Label.swift",
        "Shared/ShareLink/Multiple Items/Items+Preview.swift",
        "Shared/ShareLink/Multiple Items/Items.swift",
        "Shared/ShareLink/ShareLink.swift",
        "Shared/ShareLink/SharePreview.swift",
        "Shared/ShareLink/ShareSheet.swift",
        "Shared/ShareLink/Single Item/Item+Label+Preview.swift",
        "Shared/ShareLink/Single Item/Item+Label.swift",
        "Shared/ShareLink/Single Item/Item+Preview.swift",
        "Shared/ShareLink/Single Item/Item.swift",
        "Shared/ShareLink/Transferable.swift",
        "Shared/StateObject/StateObject.swift",
        "Shared/System Overlays/SystemOverlays.swift",
        "Shared/Task/Task.swift",
        "Shared/Toolbar/Toolbar.swift",
        "Shared/Toolbar/ToolbarBackground+Environment.swift",
        "Shared/Toolbar/ToolbarBackground.swift",
        "Shared/Toolbar/ToolbarBackgroundModifier.swift",
        "Shared/Transition/PushTransition.swift",
        "Shared/Visibility/Visibility.swift",
        "iOS/AutoCapitalization/AutoCapitalization.swift",
        "iOS/FocusState/FocusState.swift",
        "iOS/FocusState/ViewFocused.swift",
        "iOS/Presentation/BackgroundInteraction.swift",
        "iOS/Presentation/ContentInteraction.swift",
        "iOS/Presentation/CornerRadius.swift",
        "iOS/Presentation/Detents.swift",
        "iOS/Presentation/DragIndicator.swift",
        "iOS/Presentation/InteractiveDetent.swift",
        "iOS/Presentation/InteractiveDismiss.swift",
        "iOS/ScaledMetric/ScaledMetric.swift",
        "iOS/ScrollView/Scroll+Environment.swift",
        "iOS/ScrollView/ScrollDismissesKeyboardMode.swift",
        "iOS/ScrollView/ScrollEnabled.swift",
        "iOS/ScrollView/ScrollIndicatorVisibility.swift",
        "iOS/ScrollView/ScrollIndicators.swift",
        "iOS/ScrollView/ScrollKeyboardDismiss.swift",
        "iOS/Submit/Submit.swift",
        "iOS/TextEditor/ColorProviders.swift",
        "iOS/TextEditor/FontProviders.swift",
        "iOS/TextEditor/TextEditor+Support.swift",
        "iOS/TextEditor/TextEditor.swift",
        "iOS/UIHostingConfiguration/Cells/UICollectionViewCell.swift",
        "iOS/UIHostingConfiguration/Cells/UITableViewCell.swift",
        "iOS/UIHostingConfiguration/ProposedInsets.swift",
        "iOS/UIHostingConfiguration/ProposedSize.swift",
        "iOS/UIHostingConfiguration/UIContentConfiguration.swift",
        "iOS/UIHostingConfiguration/UIHostingConfiguration.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.