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

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Subviews with Swift 6.0 for iOS using Xcode 16.0.

Swift 6 data race errors: 42

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Subviews -destination generic/platform=ios OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

329 |         newVc.view.alpha = 0.0
330 |         UIView.animate(withDuration: 0.33, delay: 0.4, options: .curveEaseInOut) {
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: warning: static property '_crossFade' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
292 | }
293 |
294 | public struct ChildReplaceBehavior {
    |               `- note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
295 |     let new: (UIViewController) -> Void
296 |     let old: (UIViewController) -> Void
    :
339 |     }
340 |
341 |     public static let _crossFade = ChildReplaceBehavior { newVc in
    |                       |- warning: static property '_crossFade' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_crossFade' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
342 |         newVc.view.alpha = 0.0
343 |         UIView.animate(withDuration: 0.33, delay: 0, options: .curveEaseInOut) {
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
339 |     }
340 |
341 |     public static let _crossFade = ChildReplaceBehavior { newVc in
    |                       `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
342 |         newVc.view.alpha = 0.0
343 |         UIView.animate(withDuration: 0.33, delay: 0, options: .curveEaseInOut) {
UIKit.UIView:2:25: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 1 | extension UIView {
 2 |     @MainActor open var superview: UIView? { get }
   |                         `- warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 3 |     open var subviews: [UIView] { get }
 4 |     open var window: UIWindow? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:16:19: note: add '@preconcurrency' to the 'LayoutItem' conformance to defer isolation checking to run time
 11 |
 12 | internal protocol LayoutItem { // `UIView`, `UILayoutGuide`
 13 |     var superview: UIView? { get }
    |         `- note: 'superview' declared here
 14 | }
 15 |
 16 | extension UIView: LayoutItem {}
    |                   `- note: add '@preconcurrency' to the 'LayoutItem' conformance to defer isolation checking to run time
 17 | extension UILayoutGuide: LayoutItem {
 18 |     internal var superview: UIView? { owningView }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:18:18: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 11 |
 12 | internal protocol LayoutItem { // `UIView`, `UILayoutGuide`
 13 |     var superview: UIView? { get }
    |         `- note: 'superview' declared here
 14 | }
 15 |
 16 | extension UIView: LayoutItem {}
 17 | extension UILayoutGuide: LayoutItem {
    |                          `- note: add '@preconcurrency' to the 'LayoutItem' conformance to defer isolation checking to run time
 18 |     internal var superview: UIView? { owningView }
    |                  `- warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 19 | }
 20 | #elseif os(macOS)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:139:35: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                        `- note: 'Type' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
137 |
138 | internal extension Anchor where Type: AnchorType.Alignment {
139 |     @discardableResult func equal<Type: AnchorType.Alignment>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
    |                                   `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
140 |         Constraints.constrain(self, anchor, constant: constant, relation: .equal)
141 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:143:48: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                        `- note: 'Type' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
141 |     }
142 |
143 |     @discardableResult func greaterThanOrEqual<Type: AnchorType.Alignment>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
    |                                                `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
144 |         Constraints.constrain(self, anchor, constant: constant, relation: .greaterThanOrEqual)
145 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:147:45: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                        `- note: 'Type' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
145 |     }
146 |
147 |     @discardableResult func lessThanOrEqual<Type: AnchorType.Alignment>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
    |                                             `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
148 |         Constraints.constrain(self, anchor, constant: constant, relation: .lessThanOrEqual)
149 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:155:35: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                        `- note: 'Type' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
153 |
154 | internal extension Anchor where Type: AnchorType.Dimension {
155 |     @discardableResult func equal<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
    |                                   `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
156 |         Constraints.constrain(self, anchor, constant: constant, relation: .equal)
157 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:155:63: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                              `- note: 'Axis' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
153 |
154 | internal extension Anchor where Type: AnchorType.Dimension {
155 |     @discardableResult func equal<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
    |                                                               `- warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
156 |         Constraints.constrain(self, anchor, constant: constant, relation: .equal)
157 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:159:48: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                        `- note: 'Type' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
157 |     }
158 |
159 |     @discardableResult func greaterThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
    |                                                `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
160 |         Constraints.constrain(self, anchor, constant: constant, relation: .greaterThanOrEqual)
161 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:159:76: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                              `- note: 'Axis' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
157 |     }
158 |
159 |     @discardableResult func greaterThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                            `- warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
160 |         Constraints.constrain(self, anchor, constant: constant, relation: .greaterThanOrEqual)
161 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:163:45: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                        `- note: 'Type' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
161 |     }
162 |
163 |     @discardableResult func lessThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
    |                                             `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
164 |         Constraints.constrain(self, anchor, constant: constant, relation: .lessThanOrEqual)
165 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:163:73: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                              `- note: 'Axis' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
161 |     }
162 |
163 |     @discardableResult func lessThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
    |                                                                         `- warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
164 |         Constraints.constrain(self, anchor, constant: constant, relation: .lessThanOrEqual)
165 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:198:46: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 97 | /// An anchor represents one of the view's layout attributes (e.g. `left`,
 98 | /// `centerX`, `width`, etc). Use the anchor’s methods to construct constraints.
 99 | internal struct Anchor<Type, Axis> { // type and axis are phantom types
    |                        `- note: 'Type' previously declared here
100 |     let item: LayoutItem
101 |     fileprivate let attribute: NSLayoutConstraint.Attribute
    :
196 |
197 |     /// Adds spacing between the current anchors.
198 |     @discardableResult internal func spacing<Type: AnchorType.Edge>(_ spacing: CGFloat, to anchor: Anchor<Type, Axis>, relation: NSLayoutConstraint.Relation = .equal) -> NSLayoutConstraint {
    |                                              `- warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
199 |         let isInverted = (attribute == .bottom && anchor.attribute == .top) ||
200 |             (attribute == .right && anchor.attribute == .left) ||
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: warning: static property '_stack' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
397 |     }
398 |
399 |     private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
    |                        |- warning: static property '_stack' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert '_stack' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate '_stack' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
400 |
401 |     private static func _install(_ constraint: NSLayoutConstraint) {
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:19:23: warning: main actor-isolated static property 'defaultSuperview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
  2 |
  3 | public protocol SuperviewContainer {
  4 |     static var defaultSuperview: (Self) -> UIView { get }
    |                `- note: 'defaultSuperview' declared here
  5 | }
  6 |
    :
 16 | }
 17 |
 18 | extension UIView: SuperviewContainer {
    |                   `- note: add '@preconcurrency' to the 'SuperviewContainer' conformance to defer isolation checking to run time
 19 |     public static var defaultSuperview: (UIView) -> UIView {
    |                       `- warning: main actor-isolated static property 'defaultSuperview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 20 |         return \.self
 21 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: warning: static property 'remove' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
388 | }
389 |
390 | public struct SubviewReplaceBehavior {
    |               `- note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
391 |     let new: (UIView) -> Void
392 |     let old: (UIView) -> Void
    :
399 |     public static let overlay = SubviewReplaceBehavior { (_) in } old: { _ in }
400 |
401 |     public static let remove = SubviewReplaceBehavior { (_) in
    |                       |- warning: static property 'remove' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'remove' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
402 |
403 |     } old: { oldView in
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:399:23: warning: static property 'overlay' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
388 | }
389 |
390 | public struct SubviewReplaceBehavior {
    |               `- note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
391 |     let new: (UIView) -> Void
392 |     let old: (UIView) -> Void
    :
397 |     }
398 |
399 |     public static let overlay = SubviewReplaceBehavior { (_) in } old: { _ in }
    |                       |- warning: static property 'overlay' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'overlay' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
400 |
401 |     public static let remove = SubviewReplaceBehavior { (_) in
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:401:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
399 |     public static let overlay = SubviewReplaceBehavior { (_) in } old: { _ in }
400 |
401 |     public static let remove = SubviewReplaceBehavior { (_) in
    |                       `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
402 |
403 |     } old: { oldView in
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: warning: static property 'hide' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
388 | }
389 |
390 | public struct SubviewReplaceBehavior {
    |               `- note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
391 |     let new: (UIView) -> Void
392 |     let old: (UIView) -> Void
    :
405 |     }
406 |
407 |     public static let hide = SubviewReplaceBehavior { newView in
    |                       |- warning: static property 'hide' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'hide' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
408 |         newView.isHidden = false
409 |     } old: { oldView in
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:407:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
405 |     }
406 |
407 |     public static let hide = SubviewReplaceBehavior { newView in
    |                       `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
408 |         newView.isHidden = false
409 |     } old: { oldView in
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: warning: static property '_removeAndFadeIn' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
388 | }
389 |
390 | public struct SubviewReplaceBehavior {
    |               `- note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
391 |     let new: (UIView) -> Void
392 |     let old: (UIView) -> Void
    :
411 |     }
412 |
413 |     public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
    |                       |- warning: static property '_removeAndFadeIn' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_removeAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
414 |         newVc.alpha = 0.0
415 |         UIView.animate(withDuration: 0.3, delay: 0, options: .curveEaseInOut) {
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:413:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
411 |     }
412 |
413 |     public static let _removeAndFadeIn = SubviewReplaceBehavior { newVc in
    |                       `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
414 |         newVc.alpha = 0.0
415 |         UIView.animate(withDuration: 0.3, delay: 0, options: .curveEaseInOut) {
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: warning: static property '_fadeOutAndFadeIn' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
388 | }
389 |
390 | public struct SubviewReplaceBehavior {
    |               `- note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
391 |     let new: (UIView) -> Void
392 |     let old: (UIView) -> Void
    :
420 |     }
421 |
422 |     public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
    |                       |- warning: static property '_fadeOutAndFadeIn' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_fadeOutAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
423 |         newVc.alpha = 0.0
424 |         UIView.animate(withDuration: 0.33, delay: 0.4, options: .curveEaseInOut) {
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:422:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
420 |     }
421 |
422 |     public static let _fadeOutAndFadeIn = SubviewReplaceBehavior { newVc in
    |                       `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
423 |         newVc.alpha = 0.0
424 |         UIView.animate(withDuration: 0.33, delay: 0.4, options: .curveEaseInOut) {
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: warning: static property '_crossFade' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
388 | }
389 |
390 | public struct SubviewReplaceBehavior {
    |               `- note: consider making struct 'SubviewReplaceBehavior' conform to the 'Sendable' protocol
391 |     let new: (UIView) -> Void
392 |     let old: (UIView) -> Void
    :
433 |     }
434 |
435 |     public static let _crossFade = SubviewReplaceBehavior { newVc in
    |                       |- warning: static property '_crossFade' is not concurrency-safe because non-'Sendable' type 'SubviewReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate '_crossFade' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
436 |         newVc.alpha = 0.0
437 |         UIView.animate(withDuration: 0.33, delay: 0, options: .curveEaseInOut) {
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:435:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
433 |     }
434 |
435 |     public static let _crossFade = SubviewReplaceBehavior { newVc in
    |                       `- warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
436 |         newVc.alpha = 0.0
437 |         UIView.animate(withDuration: 0.33, delay: 0, options: .curveEaseInOut) {
UIKit.UIView:12:15: warning: main actor-isolated instance method 'addSubview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
10 |     @available(swift, obsoleted: 3, renamed: "exchangeSubview(at:withSubviewAt:)")
11 |     open func exchangeSubviewAtIndex(_ index1: Int, withSubviewAtIndex index2: Int)
12 |     open func addSubview(_ view: UIView)
   |               |- warning: main actor-isolated instance method 'addSubview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
   |               `- note: add 'nonisolated' to 'addSubview' to make this instance method not isolated to the actor
13 |     open func insertSubview(_ view: UIView, belowSubview siblingSubview: UIView)
14 |     open func insertSubview(_ view: UIView, aboveSubview siblingSubview: UIView)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:7:19: note: add '@preconcurrency' to the 'ViewLayoutParent' conformance to defer isolation checking to run time
  2 |
  3 | public protocol ViewLayoutParent {
  4 |     func addSubview(_ view: UIView)
    |          `- note: mark the protocol requirement 'addSubview' 'async' to allow actor-isolated conformances
  5 | }
  6 |
  7 | extension UIView: ViewLayoutParent { }
    |                   `- note: add '@preconcurrency' to the 'ViewLayoutParent' conformance to defer isolation checking to run time
  8 |
  9 | extension ViewLayoutParent {
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:22:16: warning: main actor-isolated property '_viewForLayout' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |
 17 | public protocol ViewLayoutSupporting: AnyObject {
 18 |     var _viewForLayout: UIView { get }
    |         `- note: '_viewForLayout' declared here
 19 | }
 20 |
 21 | extension UIView: ViewLayoutSupporting {
    |                   `- note: add '@preconcurrency' to the 'ViewLayoutSupporting' conformance to defer isolation checking to run time
 22 |     public var _viewForLayout: UIView { self }
    |                `- warning: main actor-isolated property '_viewForLayout' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 23 | }
 24 |
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:26:16: warning: main actor-isolated property '_viewForLayout' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 16 |
 17 | public protocol ViewLayoutSupporting: AnyObject {
 18 |     var _viewForLayout: UIView { get }
    |         `- note: '_viewForLayout' declared here
 19 | }
 20 |
    :
 23 | }
 24 |
 25 | extension UIViewController: ViewLayoutSupporting {
    |                             `- note: add '@preconcurrency' to the 'ViewLayoutSupporting' conformance to defer isolation checking to run time
 26 |     public var _viewForLayout: UIView { self.view }
    |                `- warning: main actor-isolated property '_viewForLayout' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 27 | }
 28 |
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:324:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'VerticalInsets' may have shared mutable state; this is an error in the Swift 6 language mode
309 | }
310 |
311 | public struct VerticalInsets: Hashable {
    |               `- note: consider making struct 'VerticalInsets' conform to the 'Sendable' protocol
312 |     public var top: CGFloat
313 |     public var bottom: CGFloat
    :
322 |     }
323 |
324 |     public static let zero = VerticalInsets(top: 0, bottom: 0)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'VerticalInsets' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
325 | }
326 |
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:340:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'HorizontalInsets' may have shared mutable state; this is an error in the Swift 6 language mode
325 | }
326 |
327 | public struct HorizontalInsets: Hashable {
    |               `- note: consider making struct 'HorizontalInsets' conform to the 'Sendable' protocol
328 |     public var left: CGFloat
329 |     public var right: CGFloat
    :
338 |     }
339 |
340 |     public static let zero = HorizontalInsets(left: 0, right: 0)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'HorizontalInsets' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
341 | }
342 |
SwiftCompile normal arm64 Compiling\ ViewLayoutOption.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/ViewLayoutOption.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
UIKit.UIView:12:26: warning: main actor-isolated instance method 'addSubview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    @MainActor open func addSubview(_ view: UIView)
                         ^
UIKit.UIView:12:26: note: add 'nonisolated' to 'addSubview' to make this instance method not isolated to the actor
    @MainActor open func addSubview(_ view: UIView)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:7:19: note: add '@preconcurrency' to the 'ViewLayoutParent' conformance to defer isolation checking to run time
extension UIView: ViewLayoutParent { }
                  ^
                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:4:10: note: mark the protocol requirement 'addSubview' 'async' to allow actor-isolated conformances
    func addSubview(_ view: UIView)
         ^
                                    async
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:22:16: warning: main actor-isolated property '_viewForLayout' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    public var _viewForLayout: UIView { self }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:21:19: note: add '@preconcurrency' to the 'ViewLayoutSupporting' conformance to defer isolation checking to run time
extension UIView: ViewLayoutSupporting {
                  ^
                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:18:9: note: '_viewForLayout' declared here
    var _viewForLayout: UIView { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:26:16: warning: main actor-isolated property '_viewForLayout' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    public var _viewForLayout: UIView { self.view }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:25:29: note: add '@preconcurrency' to the 'ViewLayoutSupporting' conformance to defer isolation checking to run time
extension UIViewController: ViewLayoutSupporting {
                            ^
                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:18:9: note: '_viewForLayout' declared here
    var _viewForLayout: UIView { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:324:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'VerticalInsets' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = VerticalInsets(top: 0, bottom: 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:311:15: note: consider making struct 'VerticalInsets' conform to the 'Sendable' protocol
public struct VerticalInsets: Hashable {
              ^
                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:324:23: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    public static let zero = VerticalInsets(top: 0, bottom: 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:324:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = VerticalInsets(top: 0, bottom: 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:340:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'HorizontalInsets' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let zero = HorizontalInsets(left: 0, right: 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:327:15: note: consider making struct 'HorizontalInsets' conform to the 'Sendable' protocol
public struct HorizontalInsets: Hashable {
              ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:340:23: note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    public static let zero = HorizontalInsets(left: 0, right: 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:340:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let zero = HorizontalInsets(left: 0, right: 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:45:38: warning: main actor-isolated property 'superview' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            guard let superview = $0.superview else {
                                     ^
UIKit.UIView:2:14: note: property declared here
    open var superview: UIView? { get }
             ^
SwiftCompile normal arm64 Compiling\ Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Extensions.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Child.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: warning: main actor-isolated static property 'defaultSuperview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    public static var defaultSuperview: (UIViewController) -> UIView {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:6:29: note: add '@preconcurrency' to the 'SuperviewContainer' conformance to defer isolation checking to run time
extension UIViewController: SuperviewContainer {
                            ^
                            @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift:4:16: note: 'defaultSuperview' declared here
    static var defaultSuperview: (Self) -> UIView { get }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:305:23: warning: static property 'remove' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let remove = ChildReplaceBehavior { (_) in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
              ^
                                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:305:23: note: annotate 'remove' with '@MainActor' if property should only be accessed from the main actor
    public static let remove = ChildReplaceBehavior { (_) in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:305:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let remove = ChildReplaceBehavior { (_) in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:303:23: warning: static property 'overlay' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let overlay = ChildReplaceBehavior { (_) in } old: { _ in }
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
              ^
                                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:303:23: note: annotate 'overlay' with '@MainActor' if property should only be accessed from the main actor
    public static let overlay = ChildReplaceBehavior { (_) in } old: { _ in }
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:303:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let overlay = ChildReplaceBehavior { (_) in } old: { _ in }
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:305:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    public static let remove = ChildReplaceBehavior { (_) in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:313:23: warning: static property 'hide' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let hide = ChildReplaceBehavior { newVc in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
              ^
                                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:313:23: note: annotate 'hide' with '@MainActor' if property should only be accessed from the main actor
    public static let hide = ChildReplaceBehavior { newVc in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:313:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let hide = ChildReplaceBehavior { newVc in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:313:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    public static let hide = ChildReplaceBehavior { newVc in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:319:23: warning: static property '_removeAndFadeIn' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let _removeAndFadeIn = ChildReplaceBehavior { newVc in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
              ^
                                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:319:23: note: annotate '_removeAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
    public static let _removeAndFadeIn = ChildReplaceBehavior { newVc in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:319:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let _removeAndFadeIn = ChildReplaceBehavior { newVc in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:319:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    public static let _removeAndFadeIn = ChildReplaceBehavior { newVc in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:328:23: warning: static property '_fadeOutAndFadeIn' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let _fadeOutAndFadeIn = ChildReplaceBehavior { newVc in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
              ^
                                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:328:23: note: annotate '_fadeOutAndFadeIn' with '@MainActor' if property should only be accessed from the main actor
    public static let _fadeOutAndFadeIn = ChildReplaceBehavior { newVc in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:328:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let _fadeOutAndFadeIn = ChildReplaceBehavior { newVc in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:328:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    public static let _fadeOutAndFadeIn = ChildReplaceBehavior { newVc in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: warning: static property '_crossFade' is not concurrency-safe because non-'Sendable' type 'ChildReplaceBehavior' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let _crossFade = ChildReplaceBehavior { newVc in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:294:15: note: consider making struct 'ChildReplaceBehavior' conform to the 'Sendable' protocol
public struct ChildReplaceBehavior {
              ^
                                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: note: annotate '_crossFade' with '@MainActor' if property should only be accessed from the main actor
    public static let _crossFade = ChildReplaceBehavior { newVc in
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let _crossFade = ChildReplaceBehavior { newVc in
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:341:23: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    public static let _crossFade = ChildReplaceBehavior { newVc in
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:61:19: warning: call to main actor-isolated instance method 'addChild' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        enclosing.addChild(created)
                  ^
UIKit.UIViewController:8:26: note: calls to instance method 'addChild' from outside of its actor context are implicitly asynchronous
    @MainActor open func addChild(_ childController: UIViewController)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:51:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
    public func resolveEnclosing(_ enclosing: Any) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:62:19: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        superview.addSubview(created.view)
                  ^
UIKit.UIView:12:26: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
    @MainActor open func addSubview(_ view: UIView)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:51:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
    public func resolveEnclosing(_ enclosing: Any) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:62:38: warning: main actor-isolated property 'view' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        superview.addSubview(created.view)
                                     ^
UIKit.UIViewController:5:25: note: property declared here
    @MainActor open var view: UIView! { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:51:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
    public func resolveEnclosing(_ enclosing: Any) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:64:17: warning: call to main actor-isolated instance method 'didMove(toParent:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        created.didMove(toParent: enclosing)
                ^
UIKit.UIViewController:17:26: note: calls to instance method 'didMove(toParent:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func didMove(toParent parent: UIViewController?)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:51:17: note: add '@MainActor' to make instance method 'resolveEnclosing' part of global actor 'MainActor'
    public func resolveEnclosing(_ enclosing: Any) {
                ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:99:42: warning: main actor-isolated property '_viewForLayout' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            viewLayoutOptions.layout(val._viewForLayout)
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:26:16: note: property declared here
    public var _viewForLayout: UIView { self.view }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:156:42: warning: main actor-isolated property '_viewForLayout' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            viewLayoutOptions.layout(val._viewForLayout)
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift:26:16: note: property declared here
    public var _viewForLayout: UIView { self.view }
               ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:210:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, viewLayoutOptions, configure)
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
    public static var defaultSuperview: (UIViewController) -> UIView {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:219:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, configure)
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
    public static var defaultSuperview: (UIViewController) -> UIView {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:236:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, viewLayoutOptions, { val,_ in configure(val) })
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
    public static var defaultSuperview: (UIViewController) -> UIView {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:244:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, configure)
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
    public static var defaultSuperview: (UIViewController) -> UIView {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:256:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, viewLayoutOptions, configure)
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
    public static var defaultSuperview: (UIViewController) -> UIView {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:265:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, configure)
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
    public static var defaultSuperview: (UIViewController) -> UIView {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:282:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, viewLayoutOptions, { val,_ in configure(val) })
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
    public static var defaultSuperview: (UIViewController) -> UIView {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:290:72: warning: main actor-isolated static property 'defaultSuperview' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        self.init(wrappedValue: wrappedValue, superview: EnclosingSelf.defaultSuperview, onReplace: onReplace, configure)
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift:7:23: note: static property declared here
    public static var defaultSuperview: (UIViewController) -> UIView {
                      ^
SwiftCompile normal arm64 Compiling\ Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Align.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
UIKit.UIView:2:25: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    @MainActor open var superview: UIView? { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:16:19: note: add '@preconcurrency' to the 'LayoutItem' conformance to defer isolation checking to run time
extension UIView: LayoutItem {}
                  ^
                  @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:13:9: note: 'superview' declared here
    var superview: UIView? { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:18:18: warning: main actor-isolated property 'superview' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    internal var superview: UIView? { owningView }
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:17:26: note: add '@preconcurrency' to the 'LayoutItem' conformance to defer isolation checking to run time
extension UILayoutGuide: LayoutItem {
                         ^
                         @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:13:9: note: 'superview' declared here
    var superview: UIView? { get }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:139:35: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult func equal<Type: AnchorType.Alignment>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:143:48: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult func greaterThanOrEqual<Type: AnchorType.Alignment>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:147:45: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult func lessThanOrEqual<Type: AnchorType.Alignment>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:155:35: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult func equal<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:155:63: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult func equal<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:30: note: 'Axis' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:159:48: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult func greaterThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:159:76: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult func greaterThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:30: note: 'Axis' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:163:45: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult func lessThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:163:73: warning: generic parameter 'Axis' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult func lessThanOrEqual<Type: AnchorType.Dimension, Axis>(_ anchor: Anchor<Type, Axis>, constant: CGFloat = 0) -> NSLayoutConstraint {
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:30: note: 'Axis' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:198:46: warning: generic parameter 'Type' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
    @discardableResult internal func spacing<Type: AnchorType.Edge>(_ spacing: CGFloat, to anchor: Anchor<Type, Axis>, relation: NSLayoutConstraint.Relation = .equal) -> NSLayoutConstraint {
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:99:24: note: 'Type' previously declared here
internal struct Anchor<Type, Axis> { // type and axis are phantom types
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: warning: static property '_stack' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: note: convert '_stack' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: note: annotate '_stack' with '@MainActor' if property should only be accessed from the main actor
    private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:399:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _stack = [Constraints]() // this is what enabled constraint auto-installing
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:76:54: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    var margins: LayoutAnchors<UILayoutGuide> { base.layoutMarginsGuide.anchors }
                                                     ^
UIKit.UIView:53:14: note: property declared here
    open var layoutMarginsGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:77:55: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    var safeArea: LayoutAnchors<UILayoutGuide> { base.safeAreaLayoutGuide.anchors }
                                                      ^
UIKit.UIView:57:14: note: property declared here
    open var safeAreaLayoutGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:372:42: warning: call to main actor-isolated class method 'activate' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        if activate { NSLayoutConstraint.activate(constraints) }
                                         ^
UIKit.NSLayoutConstraint:32:32: note: calls to class method 'activate' from outside of its actor context are implicitly asynchronous
    @MainActor open class func activate(_ constraints: [NSLayoutConstraint])
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:379:29: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
        (item1 as? UIView)?.translatesAutoresizingMaskIntoConstraints = false
                            ^
UIKit.UIView:3:25: note: mutation of this property is only permitted within the actor
    @MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:376:29: note: add '@MainActor' to make static method 'constrain(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' part of global actor 'MainActor'
    fileprivate static func constrain(item item1: Any, attribute attr1: NSLayoutConstraint.Attribute, relatedBy relation: NSLayoutConstraint.Relation = .equal, toItem item2: Any? = nil, attribute attr2: NSLayoutConstraint.Attribute? = nil, multiplier: CGFloat = 1, constant: CGFloat = 0) -> NSLayoutConstraint {
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: warning: call to main actor-isolated initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
                         ^
UIKit.NSLayoutConstraint:9:24: note: calls to initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' from outside of its actor context are implicitly asynchronous
    public convenience init(item view1: Any, attribute attr1: NSLayoutConstraint.Attribute, relatedBy relation: NSLayoutConstraint.Relation, toItem view2: Any?, attribute attr2: NSLayoutConstraint.Attribute, multiplier: CGFloat, constant c: CGFloat)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:376:29: note: add '@MainActor' to make static method 'constrain(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' part of global actor 'MainActor'
    fileprivate static func constrain(item item1: Any, attribute attr1: NSLayoutConstraint.Attribute, relatedBy relation: NSLayoutConstraint.Relation = .equal, toItem item2: Any? = nil, attribute attr2: NSLayoutConstraint.Attribute? = nil, multiplier: CGFloat = 1, constant: CGFloat = 0) -> NSLayoutConstraint {
                            ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:405:24: warning: main actor-isolated property 'isActive' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
            constraint.isActive = true
                       ^
UIKit.NSLayoutConstraint:27:14: note: mutation of this property is only permitted within the actor
    open var isActive: Bool { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:401:25: note: add '@MainActor' to make static method '_install' part of global actor 'MainActor'
    private static func _install(_ constraint: NSLayoutConstraint) {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:466:33: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        pin(to: item.superview!.safeAreaLayoutGuide, inset: inset)
                                ^
UIKit.UIView:57:14: note: property declared here
    open var safeAreaLayoutGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:465:38: note: add '@MainActor' to make instance method 'safeAreaPin(inset:)' part of global actor 'MainActor'
    @discardableResult internal func safeAreaPin(inset: CGFloat = 0) -> NSLayoutConstraint {
                                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:470:33: warning: main actor-isolated property 'readableContentGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        pin(to: item.superview!.readableContentGuide, inset: inset)
                                ^
UIKit.UIView:55:14: note: property declared here
    open var readableContentGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:469:38: note: add '@MainActor' to make instance method 'readableContentPin(inset:)' part of global actor 'MainActor'
    @discardableResult internal func readableContentPin(inset: CGFloat = 0) -> NSLayoutConstraint {
                                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:474:33: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        pin(to: item.superview!.layoutMarginsGuide, inset: inset)
                                ^
UIKit.UIView:53:14: note: property declared here
    open var layoutMarginsGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:473:38: note: add '@MainActor' to make instance method 'marginsPin(inset:)' part of global actor 'MainActor'
    @discardableResult internal func marginsPin(inset: CGFloat = 0) -> NSLayoutConstraint {
                                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:480:33: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        pin(to: item.superview!.safeAreaLayoutGuide, insets: insets, alignment: alignment)
                                ^
UIKit.UIView:57:14: note: property declared here
    open var safeAreaLayoutGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:479:38: note: add '@MainActor' to make instance method 'safeAreaPin(insets:alignment:)' part of global actor 'MainActor'
    @discardableResult internal func safeAreaPin(insets: EdgeInsets = .zero, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
                                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:484:33: warning: main actor-isolated property 'readableContentGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        pin(to: item.superview!.readableContentGuide, insets: insets, alignment: alignment)
                                ^
UIKit.UIView:55:14: note: property declared here
    open var readableContentGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:483:38: note: add '@MainActor' to make instance method 'readableContentPin(insets:alignment:)' part of global actor 'MainActor'
    @discardableResult internal func readableContentPin(insets: EdgeInsets = .zero, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
                                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:488:33: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        pin(to: item.superview!.layoutMarginsGuide, insets: insets, alignment: alignment)
                                ^
UIKit.UIView:53:14: note: property declared here
    open var layoutMarginsGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:487:38: note: add '@MainActor' to make instance method 'marginsPin(insets:alignment:)' part of global actor 'MainActor'
    @discardableResult internal func marginsPin(insets: EdgeInsets = .zero, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
                                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:495:33: warning: main actor-isolated property 'safeAreaLayoutGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        pin(to: item.superview!.safeAreaLayoutGuide, insets: insets, axis: axis, alignment: alignment)
                                ^
UIKit.UIView:57:14: note: property declared here
    open var safeAreaLayoutGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:494:38: note: add '@MainActor' to make instance method 'safeAreaPin(insets:axis:alignment:)' part of global actor 'MainActor'
    @discardableResult internal func safeAreaPin(insets: EdgeInsets = .zero, axis: Axis?, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:500:33: warning: main actor-isolated property 'readableContentGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        pin(to: item.superview!.readableContentGuide, insets: insets, axis: axis, alignment: alignment)
                                ^
UIKit.UIView:55:14: note: property declared here
    open var readableContentGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:499:38: note: add '@MainActor' to make instance method 'readableContentPin(insets:axis:alignment:)' part of global actor 'MainActor'
    @discardableResult internal func readableContentPin(insets: EdgeInsets = .zero, axis: Axis?, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:505:33: warning: main actor-isolated property 'layoutMarginsGuide' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        pin(to: item.superview!.layoutMarginsGuide, insets: insets, axis: axis, alignment: alignment)
                                ^
UIKit.UIView:53:14: note: property declared here
    open var layoutMarginsGuide: UILayoutGuide { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:504:38: note: add '@MainActor' to make instance method 'marginsPin(insets:axis:alignment:)' part of global actor 'MainActor'
    @discardableResult internal func marginsPin(insets: EdgeInsets = .zero, axis: Axis?, alignment: Alignmment = .fill) -> [NSLayoutConstraint] {
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: warning: sending 'item1' risks causing data races; this is an error in the Swift 6 language mode
        let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: note: sending task-isolated 'item1' to main actor-isolated initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' risks causing data races between main actor-isolated and task-isolated uses
        let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: warning: sending 'item2' risks causing data races; this is an error in the Swift 6 language mode
        let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift:383:26: note: sending task-isolated 'item2' to main actor-isolated initializer 'init(item:attribute:relatedBy:toItem:attribute:multiplier:constant:)' risks causing data races between main actor-isolated and task-isolated uses
        let constraint = NSLayoutConstraint(item: item1, attribute: attr1, relatedBy: relation, toItem: item2, attribute: attr2 ?? .notAnAttribute, multiplier: multiplier, constant: constant)
                         ^
SwiftCompile normal arm64 Compiling\ Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Enclosed.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Creatable.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoSuperview.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for Subviews (in target 'Subviews' from project 'Subviews')
SwiftCompile normal arm64 Compiling\ AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoParent.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/AutoSuperview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Child.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Enclosed.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Align.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Internal/Creatable.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Stacks.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/Subview.swift /Users/admin/builder/spi-builder-workspace/Sources/Subviews/ViewLayoutOption.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.dia -target arm64-apple-ios12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Subviews -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.o -index-unit-output-path /Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/AutoParent.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriver\ Compilation\ Requirements Subviews normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Subviews -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Enclosed.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Creatable.swift (in target 'Subviews' from project 'Subviews')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Subviews-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews-Swift.h (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Subviews-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.swiftmodule (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.swiftdoc (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.abi.json (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.swiftsourceinfo (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling AutoParent.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Extensions.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Stacks.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling AutoSuperview.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Child.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling ViewLayoutOption.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Subview.swift (in target 'Subviews' from project 'Subviews')
SwiftDriverJobDiscovery normal arm64 Compiling Align.swift (in target 'Subviews' from project 'Subviews')
SwiftDriver\ Compilation Subviews normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Subviews -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.o normal (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Subviews.build/Debug-iphoneos/Subviews.build/Objects-normal/arm64/Subviews_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.o (in target 'Subviews' from project 'Subviews')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Subviews.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Subviews' from project 'Subviews')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Subviews",
  "name" : "Subviews",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Subviews",
      "targets" : [
        "Subviews"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SubviewsTests",
      "module_type" : "SwiftTarget",
      "name" : "SubviewsTests",
      "path" : "Tests/SubviewsTests",
      "sources" : [
        "SubviewsTests.swift"
      ],
      "target_dependencies" : [
        "Subviews"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Subviews",
      "module_type" : "SwiftTarget",
      "name" : "Subviews",
      "path" : "Sources/Subviews",
      "product_memberships" : [
        "Subviews"
      ],
      "sources" : [
        "AutoParent.swift",
        "AutoSuperview.swift",
        "Child.swift",
        "Enclosed.swift",
        "Extensions.swift",
        "Internal/Align.swift",
        "Internal/Creatable.swift",
        "Stacks.swift",
        "Subview.swift",
        "ViewLayoutOption.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.