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 FixFlex, reference main (ba956c), with Swift 6.0 for macOS (SPM) on 1 Dec 2024 08:59:49 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.58.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/psharanda/FixFlex.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/psharanda/FixFlex
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at ba956c3 Update README.md
Cloned https://github.com/psharanda/FixFlex.git
Revision (git rev-parse @):
ba956c38415927c216a95eacbda2970e304e5f0a
SUCCESS checkout https://github.com/psharanda/FixFlex.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "fixflex",
      "name": "FixFlex",
      "url": "https://github.com/psharanda/FixFlex.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/FixFlex",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/psharanda/FixFlex.git
[1/491] Fetching fixflex
Fetched https://github.com/psharanda/FixFlex.git from cache (1.28s)
Creating working copy for https://github.com/psharanda/FixFlex.git
Working copy of https://github.com/psharanda/FixFlex.git resolved at main (ba956c3)
warning: '.resolve-product-dependencies': dependency 'fixflex' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/psharanda/FixFlex.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FixFlex",
  "name" : "FixFlex",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "FixFlex",
      "targets" : [
        "FixFlex"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FixFlexTests",
      "module_type" : "SwiftTarget",
      "name" : "FixFlexTests",
      "path" : "Tests/FixFlexTests",
      "sources" : [
        "FixFlexTests.swift"
      ],
      "target_dependencies" : [
        "FixFlex"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FixFlex",
      "module_type" : "SwiftTarget",
      "name" : "FixFlex",
      "path" : "Sources",
      "product_memberships" : [
        "FixFlex"
      ],
      "sources" : [
        "FixFlex.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/4] Emitting module FixFlex
[4/4] Compiling FixFlex FixFlex.swift
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:130:92: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
127 |     }
128 |
129 |     func anchorsForView(_ view: _View) -> AxisAnchors<NSLayoutXAxisAnchor> {
    |          `- note: add '@MainActor' to make instance method 'anchorsForView' part of global actor 'MainActor'
130 |         return AxisAnchors<NSLayoutXAxisAnchor>(startAnchor: useAbsolutePositioning ? view.leftAnchor : view.leadingAnchor,
    |                                                                                            `- warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
131 |                                                 dimensionAnchor: view.widthAnchor,
132 |                                                 endAnchor: useAbsolutePositioning ? view.rightAnchor : view.trailingAnchor)
AppKit.NSView:7:25: note: property declared here
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
 6 |     @available(macOS 10.11, *)
 7 |     @MainActor open var leftAnchor: NSLayoutXAxisAnchor { get }
   |                         `- note: property declared here
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:130:110: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
127 |     }
128 |
129 |     func anchorsForView(_ view: _View) -> AxisAnchors<NSLayoutXAxisAnchor> {
    |          `- note: add '@MainActor' to make instance method 'anchorsForView' part of global actor 'MainActor'
130 |         return AxisAnchors<NSLayoutXAxisAnchor>(startAnchor: useAbsolutePositioning ? view.leftAnchor : view.leadingAnchor,
    |                                                                                                              `- warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
131 |                                                 dimensionAnchor: view.widthAnchor,
132 |                                                 endAnchor: useAbsolutePositioning ? view.rightAnchor : view.trailingAnchor)
AppKit.NSView:3:14: note: property declared here
 1 | extension NSView {
 2 |     @available(macOS 10.11, *)
 3 |     open var leadingAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
 4 |     @available(macOS 10.11, *)
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:131:71: warning: main actor-isolated property 'widthAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
127 |     }
128 |
129 |     func anchorsForView(_ view: _View) -> AxisAnchors<NSLayoutXAxisAnchor> {
    |          `- note: add '@MainActor' to make instance method 'anchorsForView' part of global actor 'MainActor'
130 |         return AxisAnchors<NSLayoutXAxisAnchor>(startAnchor: useAbsolutePositioning ? view.leftAnchor : view.leadingAnchor,
131 |                                                 dimensionAnchor: view.widthAnchor,
    |                                                                       `- warning: main actor-isolated property 'widthAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
132 |                                                 endAnchor: useAbsolutePositioning ? view.rightAnchor : view.trailingAnchor)
133 |     }
AppKit.NSView:15:14: note: property declared here
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
14 |     @available(macOS 10.11, *)
15 |     open var widthAnchor: NSLayoutDimension { get }
   |              `- note: property declared here
16 |     @available(macOS 10.11, *)
17 |     open var heightAnchor: NSLayoutDimension { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:132:90: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
127 |     }
128 |
129 |     func anchorsForView(_ view: _View) -> AxisAnchors<NSLayoutXAxisAnchor> {
    |          `- note: add '@MainActor' to make instance method 'anchorsForView' part of global actor 'MainActor'
130 |         return AxisAnchors<NSLayoutXAxisAnchor>(startAnchor: useAbsolutePositioning ? view.leftAnchor : view.leadingAnchor,
131 |                                                 dimensionAnchor: view.widthAnchor,
132 |                                                 endAnchor: useAbsolutePositioning ? view.rightAnchor : view.trailingAnchor)
    |                                                                                          `- warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
133 |     }
134 |
AppKit.NSView:9:14: note: property declared here
 7 |     @MainActor open var leftAnchor: NSLayoutXAxisAnchor { get }
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
10 |     @available(macOS 10.11, *)
11 |     open var topAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:132:109: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
127 |     }
128 |
129 |     func anchorsForView(_ view: _View) -> AxisAnchors<NSLayoutXAxisAnchor> {
    |          `- note: add '@MainActor' to make instance method 'anchorsForView' part of global actor 'MainActor'
130 |         return AxisAnchors<NSLayoutXAxisAnchor>(startAnchor: useAbsolutePositioning ? view.leftAnchor : view.leadingAnchor,
131 |                                                 dimensionAnchor: view.widthAnchor,
132 |                                                 endAnchor: useAbsolutePositioning ? view.rightAnchor : view.trailingAnchor)
    |                                                                                                             `- warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
133 |     }
134 |
AppKit.NSView:5:14: note: property declared here
 3 |     open var leadingAnchor: NSLayoutXAxisAnchor { get }
 4 |     @available(macOS 10.11, *)
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
 6 |     @available(macOS 10.11, *)
 7 |     @MainActor open var leftAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:142:14: warning: call to main actor-isolated instance method 'setContentHuggingPriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
139 |     }
140 |
141 |     func setContentHuggingPriority(for view: _View, layoutPriority: _LayoutPriority) {
    |          `- note: add '@MainActor' to make instance method 'setContentHuggingPriority(for:layoutPriority:)' part of global actor 'MainActor'
142 |         view.setContentHuggingPriority(layoutPriority, for: .horizontal)
    |              `- warning: call to main actor-isolated instance method 'setContentHuggingPriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
143 |     }
144 |
AppKit.NSView:30:26: note: calls to instance method 'setContentHuggingPriority(_:for:)' from outside of its actor context are implicitly asynchronous
28 |     open func contentHuggingPriorityForOrientation(_ orientation: NSLayoutConstraint.Orientation) -> NSLayoutConstraint.Priority
29 |     @available(macOS 10.7, *)
30 |     @MainActor open func setContentHuggingPriority(_ priority: NSLayoutConstraint.Priority, for orientation: NSLayoutConstraint.Orientation)
   |                          `- note: calls to instance method 'setContentHuggingPriority(_:for:)' from outside of its actor context are implicitly asynchronous
31 |     @available(macOS 10.7, *)
32 |     @available(swift, obsoleted: 3, renamed: "setContentHuggingPriority(_:for:)")
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:146:14: warning: call to main actor-isolated instance method 'setContentCompressionResistancePriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
143 |     }
144 |
145 |     func setContentCompressionResistancePriority(for view: _View, layoutPriority: _LayoutPriority) {
    |          `- note: add '@MainActor' to make instance method 'setContentCompressionResistancePriority(for:layoutPriority:)' part of global actor 'MainActor'
146 |         view.setContentCompressionResistancePriority(layoutPriority, for: .horizontal)
    |              `- warning: call to main actor-isolated instance method 'setContentCompressionResistancePriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
147 |     }
148 | }
AppKit.NSView:40:15: note: calls to instance method 'setContentCompressionResistancePriority(_:for:)' from outside of its actor context are implicitly asynchronous
38 |     open func contentCompressionResistancePriorityForOrientation(_ orientation: NSLayoutConstraint.Orientation) -> NSLayoutConstraint.Priority
39 |     @available(macOS 10.7, *)
40 |     open func setContentCompressionResistancePriority(_ priority: NSLayoutConstraint.Priority, for orientation: NSLayoutConstraint.Orientation)
   |               `- note: calls to instance method 'setContentCompressionResistancePriority(_:for:)' from outside of its actor context are implicitly asynchronous
41 |     @available(macOS 10.7, *)
42 |     @available(swift, obsoleted: 3, renamed: "setContentCompressionResistancePriority(_:for:)")
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:154:67: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
151 |     typealias AnchorType = NSLayoutYAxisAnchor
152 |
153 |     func anchorsForView(_ view: _View) -> AxisAnchors<NSLayoutYAxisAnchor> {
    |          `- note: add '@MainActor' to make instance method 'anchorsForView' part of global actor 'MainActor'
154 |         return AxisAnchors<NSLayoutYAxisAnchor>(startAnchor: view.topAnchor,
    |                                                                   `- warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
155 |                                                 dimensionAnchor: view.heightAnchor,
156 |                                                 endAnchor: view.bottomAnchor)
AppKit.NSView:11:14: note: property declared here
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
10 |     @available(macOS 10.11, *)
11 |     open var topAnchor: NSLayoutYAxisAnchor { get }
   |              `- note: property declared here
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:155:71: warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
151 |     typealias AnchorType = NSLayoutYAxisAnchor
152 |
153 |     func anchorsForView(_ view: _View) -> AxisAnchors<NSLayoutYAxisAnchor> {
    |          `- note: add '@MainActor' to make instance method 'anchorsForView' part of global actor 'MainActor'
154 |         return AxisAnchors<NSLayoutYAxisAnchor>(startAnchor: view.topAnchor,
155 |                                                 dimensionAnchor: view.heightAnchor,
    |                                                                       `- warning: main actor-isolated property 'heightAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
156 |                                                 endAnchor: view.bottomAnchor)
157 |     }
AppKit.NSView:17:14: note: property declared here
15 |     open var widthAnchor: NSLayoutDimension { get }
16 |     @available(macOS 10.11, *)
17 |     open var heightAnchor: NSLayoutDimension { get }
   |              `- note: property declared here
18 |     @available(macOS 10.11, *)
19 |     open var centerXAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:156:65: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
151 |     typealias AnchorType = NSLayoutYAxisAnchor
152 |
153 |     func anchorsForView(_ view: _View) -> AxisAnchors<NSLayoutYAxisAnchor> {
    |          `- note: add '@MainActor' to make instance method 'anchorsForView' part of global actor 'MainActor'
154 |         return AxisAnchors<NSLayoutYAxisAnchor>(startAnchor: view.topAnchor,
155 |                                                 dimensionAnchor: view.heightAnchor,
156 |                                                 endAnchor: view.bottomAnchor)
    |                                                                 `- warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
157 |     }
158 |
AppKit.NSView:13:14: note: property declared here
11 |     open var topAnchor: NSLayoutYAxisAnchor { get }
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
   |              `- note: property declared here
14 |     @available(macOS 10.11, *)
15 |     open var widthAnchor: NSLayoutDimension { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:166:14: warning: call to main actor-isolated instance method 'setContentHuggingPriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
163 |     }
164 |
165 |     func setContentHuggingPriority(for view: _View, layoutPriority: _LayoutPriority) {
    |          `- note: add '@MainActor' to make instance method 'setContentHuggingPriority(for:layoutPriority:)' part of global actor 'MainActor'
166 |         view.setContentHuggingPriority(layoutPriority, for: .vertical)
    |              `- warning: call to main actor-isolated instance method 'setContentHuggingPriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
167 |     }
168 |
AppKit.NSView:30:26: note: calls to instance method 'setContentHuggingPriority(_:for:)' from outside of its actor context are implicitly asynchronous
28 |     open func contentHuggingPriorityForOrientation(_ orientation: NSLayoutConstraint.Orientation) -> NSLayoutConstraint.Priority
29 |     @available(macOS 10.7, *)
30 |     @MainActor open func setContentHuggingPriority(_ priority: NSLayoutConstraint.Priority, for orientation: NSLayoutConstraint.Orientation)
   |                          `- note: calls to instance method 'setContentHuggingPriority(_:for:)' from outside of its actor context are implicitly asynchronous
31 |     @available(macOS 10.7, *)
32 |     @available(swift, obsoleted: 3, renamed: "setContentHuggingPriority(_:for:)")
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:170:14: warning: call to main actor-isolated instance method 'setContentCompressionResistancePriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
167 |     }
168 |
169 |     func setContentCompressionResistancePriority(for view: _View, layoutPriority: _LayoutPriority) {
    |          `- note: add '@MainActor' to make instance method 'setContentCompressionResistancePriority(for:layoutPriority:)' part of global actor 'MainActor'
170 |         view.setContentCompressionResistancePriority(layoutPriority, for: .vertical)
    |              `- warning: call to main actor-isolated instance method 'setContentCompressionResistancePriority(_:for:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
171 |     }
172 | }
AppKit.NSView:40:15: note: calls to instance method 'setContentCompressionResistancePriority(_:for:)' from outside of its actor context are implicitly asynchronous
38 |     open func contentCompressionResistancePriorityForOrientation(_ orientation: NSLayoutConstraint.Orientation) -> NSLayoutConstraint.Priority
39 |     @available(macOS 10.7, *)
40 |     open func setContentCompressionResistancePriority(_ priority: NSLayoutConstraint.Priority, for orientation: NSLayoutConstraint.Orientation)
   |               `- note: calls to instance method 'setContentCompressionResistancePriority(_:for:)' from outside of its actor context are implicitly asynchronous
41 |     @available(macOS 10.7, *)
42 |     @available(swift, obsoleted: 3, renamed: "setContentCompressionResistancePriority(_:for:)")
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:203:26: warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
178 |
179 | public extension FixFlexing {
180 |     private func _stack<AnchorType: AnyObject, AxisAnchorsBuilderType: AxisAnchorsBuilder>(
    |                  `- note: add '@MainActor' to make instance method '_stack(startAnchor:startOffset:endAnchor:endOffset:builder:intents:)' part of global actor 'MainActor'
181 |         startAnchor: NSLayoutAnchor<AnchorType>,
182 |         startOffset: CGFloat,
    :
201 |             if let views = intent.views, views.count > 0 {
202 |                 for view in views {
203 |                     view.translatesAutoresizingMaskIntoConstraints = false
    |                          `- warning: main actor-isolated property 'translatesAutoresizingMaskIntoConstraints' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
204 |                 }
205 |
AppKit.NSView:3:25: note: mutation of this property is only permitted within the actor
1 | extension NSView {
2 |     @available(macOS 10.7, *)
3 |     @MainActor open var translatesAutoresizingMaskIntoConstraints: Bool { get set }
  |                         `- note: mutation of this property is only permitted within the actor
4 |     @available(macOS 10.7, *)
5 |     open class var requiresConstraintBasedLayout: Bool { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:212:22: warning: call to main actor-isolated instance method 'addLayoutGuide' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
178 |
179 | public extension FixFlexing {
180 |     private func _stack<AnchorType: AnyObject, AxisAnchorsBuilderType: AxisAnchorsBuilder>(
    |                  `- note: add '@MainActor' to make instance method '_stack(startAnchor:startOffset:endAnchor:endOffset:builder:intents:)' part of global actor 'MainActor'
181 |         startAnchor: NSLayoutAnchor<AnchorType>,
182 |         startOffset: CGFloat,
    :
210 |                 let layoutGuide = _LayoutGuide()
211 |                 layoutGuides.append(layoutGuide)
212 |                 base.addLayoutGuide(layoutGuide)
    |                      `- warning: call to main actor-isolated instance method 'addLayoutGuide' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
213 |                 aas = [builder.anchorsForLayoutGuide(layoutGuide)]
214 |             }
AppKit.NSView:3:26: note: calls to instance method 'addLayoutGuide' from outside of its actor context are implicitly asynchronous
1 | extension NSView {
2 |     @available(macOS 10.11, *)
3 |     @MainActor open func addLayoutGuide(_ guide: NSLayoutGuide)
  |                          `- note: calls to instance method 'addLayoutGuide' from outside of its actor context are implicitly asynchronous
4 |     @available(macOS 10.11, *)
5 |     open func removeLayoutGuide(_ guide: NSLayoutGuide)
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:289:82: warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
287 |         _ intents: [SizingIntent]
288 |     ) -> StackingResult {
289 |         return _stack(startAnchor: startAnchor ?? (useAbsolutePositioning ? base.leftAnchor : base.leadingAnchor),
    |                                                                                  `- warning: main actor-isolated property 'leftAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
290 |                       startOffset: startOffset,
291 |                       endAnchor: endAnchor ?? (useAbsolutePositioning ? base.rightAnchor : base.trailingAnchor),
AppKit.NSView:7:25: note: property declared here
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
 6 |     @available(macOS 10.11, *)
 7 |     @MainActor open var leftAnchor: NSLayoutXAxisAnchor { get }
   |                         `- note: property declared here
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:289:100: warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
287 |         _ intents: [SizingIntent]
288 |     ) -> StackingResult {
289 |         return _stack(startAnchor: startAnchor ?? (useAbsolutePositioning ? base.leftAnchor : base.leadingAnchor),
    |                                                                                                    `- warning: main actor-isolated property 'leadingAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
290 |                       startOffset: startOffset,
291 |                       endAnchor: endAnchor ?? (useAbsolutePositioning ? base.rightAnchor : base.trailingAnchor),
AppKit.NSView:3:14: note: property declared here
 1 | extension NSView {
 2 |     @available(macOS 10.11, *)
 3 |     open var leadingAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
 4 |     @available(macOS 10.11, *)
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:291:78: warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
289 |         return _stack(startAnchor: startAnchor ?? (useAbsolutePositioning ? base.leftAnchor : base.leadingAnchor),
290 |                       startOffset: startOffset,
291 |                       endAnchor: endAnchor ?? (useAbsolutePositioning ? base.rightAnchor : base.trailingAnchor),
    |                                                                              `- warning: main actor-isolated property 'rightAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
292 |                       endOffset: endOffset,
293 |                       builder: XAxisAnchorsBuilder(useAbsolutePositioning: useAbsolutePositioning),
AppKit.NSView:9:14: note: property declared here
 7 |     @MainActor open var leftAnchor: NSLayoutXAxisAnchor { get }
 8 |     @available(macOS 10.11, *)
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
10 |     @available(macOS 10.11, *)
11 |     open var topAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:291:97: warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
289 |         return _stack(startAnchor: startAnchor ?? (useAbsolutePositioning ? base.leftAnchor : base.leadingAnchor),
290 |                       startOffset: startOffset,
291 |                       endAnchor: endAnchor ?? (useAbsolutePositioning ? base.rightAnchor : base.trailingAnchor),
    |                                                                                                 `- warning: main actor-isolated property 'trailingAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
292 |                       endOffset: endOffset,
293 |                       builder: XAxisAnchorsBuilder(useAbsolutePositioning: useAbsolutePositioning),
AppKit.NSView:5:14: note: property declared here
 3 |     open var leadingAnchor: NSLayoutXAxisAnchor { get }
 4 |     @available(macOS 10.11, *)
 5 |     open var trailingAnchor: NSLayoutXAxisAnchor { get }
   |              `- note: property declared here
 6 |     @available(macOS 10.11, *)
 7 |     @MainActor open var leftAnchor: NSLayoutXAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:322:56: warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
320 |         _ intents: [SizingIntent]
321 |     ) -> StackingResult {
322 |         return _stack(startAnchor: startAnchor ?? base.topAnchor,
    |                                                        `- warning: main actor-isolated property 'topAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
323 |                       startOffset: startOffset,
324 |                       endAnchor: endAnchor ?? base.bottomAnchor,
AppKit.NSView:11:14: note: property declared here
 9 |     open var rightAnchor: NSLayoutXAxisAnchor { get }
10 |     @available(macOS 10.11, *)
11 |     open var topAnchor: NSLayoutYAxisAnchor { get }
   |              `- note: property declared here
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:324:52: warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
322 |         return _stack(startAnchor: startAnchor ?? base.topAnchor,
323 |                       startOffset: startOffset,
324 |                       endAnchor: endAnchor ?? base.bottomAnchor,
    |                                                    `- warning: main actor-isolated property 'bottomAnchor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
325 |                       endOffset: endOffset,
326 |                       builder: YAxisAnchorsBuilder(),
AppKit.NSView:13:14: note: property declared here
11 |     open var topAnchor: NSLayoutYAxisAnchor { get }
12 |     @available(macOS 10.11, *)
13 |     open var bottomAnchor: NSLayoutYAxisAnchor { get }
   |              `- note: property declared here
14 |     @available(macOS 10.11, *)
15 |     open var widthAnchor: NSLayoutDimension { get }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:212:22: warning: sending 'layoutGuide' risks causing data races; this is an error in the Swift 6 language mode
210 |                 let layoutGuide = _LayoutGuide()
211 |                 layoutGuides.append(layoutGuide)
212 |                 base.addLayoutGuide(layoutGuide)
    |                      |- warning: sending 'layoutGuide' risks causing data races; this is an error in the Swift 6 language mode
    |                      `- note: sending task-isolated 'layoutGuide' to main actor-isolated instance method 'addLayoutGuide' risks causing data races between main actor-isolated and task-isolated uses
213 |                 aas = [builder.anchorsForLayoutGuide(layoutGuide)]
214 |             }
/Users/admin/builder/spi-builder-workspace/Sources/FixFlex.swift:212:22: warning: sending 'layoutGuide' risks causing data races; this is an error in the Swift 6 language mode
210 |                 let layoutGuide = _LayoutGuide()
211 |                 layoutGuides.append(layoutGuide)
212 |                 base.addLayoutGuide(layoutGuide)
    |                      |- warning: sending 'layoutGuide' risks causing data races; this is an error in the Swift 6 language mode
    |                      |- note: sending 'layoutGuide' to main actor-isolated instance method 'addLayoutGuide' risks causing data races between main actor-isolated and local nonisolated uses
    |                      `- note: access can happen concurrently
213 |                 aas = [builder.anchorsForLayoutGuide(layoutGuide)]
214 |             }
Build complete! (8.08s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FixFlex",
  "name" : "FixFlex",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "FixFlex",
      "targets" : [
        "FixFlex"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FixFlexTests",
      "module_type" : "SwiftTarget",
      "name" : "FixFlexTests",
      "path" : "Tests/FixFlexTests",
      "sources" : [
        "FixFlexTests.swift"
      ],
      "target_dependencies" : [
        "FixFlex"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FixFlex",
      "module_type" : "SwiftTarget",
      "name" : "FixFlex",
      "path" : "Sources",
      "product_memberships" : [
        "FixFlex"
      ],
      "sources" : [
        "FixFlex.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.