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 VDTransition with Swift 6.0 (beta) for macOS (SPM).

Swift 6 data race errors: 6

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dankinsoid/VDTransition.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/dankinsoid/VDTransition
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at c75e2f9 1.24.0
Cloned https://github.com/dankinsoid/VDTransition.git
Revision (git rev-parse @):
c75e2f9d916817e1085a2715e0c212b24c141f32
SPI manifest file found: $workDir/.spi.yml
SUCCESS checkout https://github.com/dankinsoid/VDTransition.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/dankinsoid/VDTransition.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version-6F35C1178C84523A.txt
[5/16] Compiling VDTransition UITransition+UIView.swift
[6/16] Compiling VDTransition UITransition.swift
[7/17] Compiling VDTransition RelationValue.swift
AppKit.NSView:60:25: warning: main actor-isolated property 'frame' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 58 |     open func setFrameOrigin(_ newOrigin: NSPoint)
 59 |     open func setFrameSize(_ newSize: NSSize)
 60 |     @MainActor open var frame: NSRect { get set }
    |                         `- warning: main actor-isolated property 'frame' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 61 |     open var frameRotation: CGFloat { get set }
 62 |     @available(macOS 10.5, *)
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:46:19: note: add '@preconcurrency' to the 'Transformable' conformance to defer isolation checking to run time
 3 | public protocol Transformable {
 4 |
 5 |     var frame: CGRect { get nonmutating set }
   |         `- note: 'frame' declared here
 6 |     var bounds: CGRect { get nonmutating set }
 7 |     var anchorPoint: CGPoint { get nonmutating set }
   :
44 |
45 | #if canImport(Cocoa)
46 | extension NSView: Transformable {
   |                   `- note: add '@preconcurrency' to the 'Transformable' conformance to defer isolation checking to run time
47 |
48 |     public var anchorPoint: CGPoint {
AppKit.NSView:76:14: warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 74 |     @available(swift, obsoleted: 3, renamed: "rotate(byDegrees:)")
 75 |     open func rotateByAngle(_ angle: CGFloat)
 76 |     open var bounds: NSRect { get set }
    |              `- warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 77 |     open var isFlipped: Bool { get }
 78 |     @available(swift, obsoleted: 3, renamed: "isFlipped")
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:6:9: note: 'bounds' declared here
 4 |
 5 |     var frame: CGRect { get nonmutating set }
 6 |     var bounds: CGRect { get nonmutating set }
   |         `- note: 'bounds' declared here
 7 |     var anchorPoint: CGPoint { get nonmutating set }
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:48:16: warning: main actor-isolated property 'anchorPoint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 5 |     var frame: CGRect { get nonmutating set }
 6 |     var bounds: CGRect { get nonmutating set }
 7 |     var anchorPoint: CGPoint { get nonmutating set }
   |         `- note: 'anchorPoint' declared here
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
 9 |     var isLtrDirection: Bool { get }
   :
46 | extension NSView: Transformable {
47 |
48 |     public var anchorPoint: CGPoint {
   |                `- warning: main actor-isolated property 'anchorPoint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
49 |         get { layer?.anchorPoint ?? .zero }
50 |         set { layer?.anchorPoint = newValue }
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:53:16: warning: main actor-isolated property 'affineTransform' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 6 |     var bounds: CGRect { get nonmutating set }
 7 |     var anchorPoint: CGPoint { get nonmutating set }
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
   |         `- note: 'affineTransform' declared here
 9 |     var isLtrDirection: Bool { get }
10 |     func convert(_ frame: CGRect, to: Self?) -> CGRect
   :
51 |     }
52 |
53 |     public var affineTransform: CGAffineTransform {
   |                `- warning: main actor-isolated property 'affineTransform' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
54 |         get {
55 |             layer?.affineTransform() ?? .identity
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:62:16: warning: main actor-isolated property 'isLtrDirection' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 7 |     var anchorPoint: CGPoint { get nonmutating set }
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
 9 |     var isLtrDirection: Bool { get }
   |         `- note: 'isLtrDirection' declared here
10 |     func convert(_ frame: CGRect, to: Self?) -> CGRect
11 | }
   :
60 |     }
61 |
62 |     public var isLtrDirection: Bool {
   |                `- warning: main actor-isolated property 'isLtrDirection' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
63 |         userInterfaceLayoutDirection == .leftToRight
64 |     }
AppKit.NSView:104:15: warning: main actor-isolated instance method 'convert(_:to:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
102 |     @available(swift, obsoleted: 3, renamed: "convert(_:from:)")
103 |     open func convertRect(_ rect: NSRect, fromView view: NSView?) -> NSRect
104 |     open func convert(_ rect: NSRect, to view: NSView?) -> NSRect
    |               |- warning: main actor-isolated instance method 'convert(_:to:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'convert(_:to:)' to make this instance method not isolated to the actor
105 |     @available(swift, obsoleted: 3, renamed: "convert(_:to:)")
106 |     open func convertRect(_ rect: NSRect, toView view: NSView?) -> NSRect
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:10:10: note: mark the protocol requirement 'convert(_:to:)' 'async' to allow actor-isolated conformances
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
 9 |     var isLtrDirection: Bool { get }
10 |     func convert(_ frame: CGRect, to: Self?) -> CGRect
   |          `- note: mark the protocol requirement 'convert(_:to:)' 'async' to allow actor-isolated conformances
11 | }
12 |
[8/17] Compiling VDTransition Transformable.swift
AppKit.NSView:60:25: warning: main actor-isolated property 'frame' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 58 |     open func setFrameOrigin(_ newOrigin: NSPoint)
 59 |     open func setFrameSize(_ newSize: NSSize)
 60 |     @MainActor open var frame: NSRect { get set }
    |                         `- warning: main actor-isolated property 'frame' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 61 |     open var frameRotation: CGFloat { get set }
 62 |     @available(macOS 10.5, *)
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:46:19: note: add '@preconcurrency' to the 'Transformable' conformance to defer isolation checking to run time
 3 | public protocol Transformable {
 4 |
 5 |     var frame: CGRect { get nonmutating set }
   |         `- note: 'frame' declared here
 6 |     var bounds: CGRect { get nonmutating set }
 7 |     var anchorPoint: CGPoint { get nonmutating set }
   :
44 |
45 | #if canImport(Cocoa)
46 | extension NSView: Transformable {
   |                   `- note: add '@preconcurrency' to the 'Transformable' conformance to defer isolation checking to run time
47 |
48 |     public var anchorPoint: CGPoint {
AppKit.NSView:76:14: warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 74 |     @available(swift, obsoleted: 3, renamed: "rotate(byDegrees:)")
 75 |     open func rotateByAngle(_ angle: CGFloat)
 76 |     open var bounds: NSRect { get set }
    |              `- warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 77 |     open var isFlipped: Bool { get }
 78 |     @available(swift, obsoleted: 3, renamed: "isFlipped")
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:6:9: note: 'bounds' declared here
 4 |
 5 |     var frame: CGRect { get nonmutating set }
 6 |     var bounds: CGRect { get nonmutating set }
   |         `- note: 'bounds' declared here
 7 |     var anchorPoint: CGPoint { get nonmutating set }
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:48:16: warning: main actor-isolated property 'anchorPoint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 5 |     var frame: CGRect { get nonmutating set }
 6 |     var bounds: CGRect { get nonmutating set }
 7 |     var anchorPoint: CGPoint { get nonmutating set }
   |         `- note: 'anchorPoint' declared here
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
 9 |     var isLtrDirection: Bool { get }
   :
46 | extension NSView: Transformable {
47 |
48 |     public var anchorPoint: CGPoint {
   |                `- warning: main actor-isolated property 'anchorPoint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
49 |         get { layer?.anchorPoint ?? .zero }
50 |         set { layer?.anchorPoint = newValue }
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:53:16: warning: main actor-isolated property 'affineTransform' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 6 |     var bounds: CGRect { get nonmutating set }
 7 |     var anchorPoint: CGPoint { get nonmutating set }
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
   |         `- note: 'affineTransform' declared here
 9 |     var isLtrDirection: Bool { get }
10 |     func convert(_ frame: CGRect, to: Self?) -> CGRect
   :
51 |     }
52 |
53 |     public var affineTransform: CGAffineTransform {
   |                `- warning: main actor-isolated property 'affineTransform' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
54 |         get {
55 |             layer?.affineTransform() ?? .identity
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:62:16: warning: main actor-isolated property 'isLtrDirection' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 7 |     var anchorPoint: CGPoint { get nonmutating set }
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
 9 |     var isLtrDirection: Bool { get }
   |         `- note: 'isLtrDirection' declared here
10 |     func convert(_ frame: CGRect, to: Self?) -> CGRect
11 | }
   :
60 |     }
61 |
62 |     public var isLtrDirection: Bool {
   |                `- warning: main actor-isolated property 'isLtrDirection' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
63 |         userInterfaceLayoutDirection == .leftToRight
64 |     }
AppKit.NSView:104:15: warning: main actor-isolated instance method 'convert(_:to:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
102 |     @available(swift, obsoleted: 3, renamed: "convert(_:from:)")
103 |     open func convertRect(_ rect: NSRect, fromView view: NSView?) -> NSRect
104 |     open func convert(_ rect: NSRect, to view: NSView?) -> NSRect
    |               |- warning: main actor-isolated instance method 'convert(_:to:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'convert(_:to:)' to make this instance method not isolated to the actor
105 |     @available(swift, obsoleted: 3, renamed: "convert(_:to:)")
106 |     open func convertRect(_ rect: NSRect, toView view: NSView?) -> NSRect
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:10:10: note: mark the protocol requirement 'convert(_:to:)' 'async' to allow actor-isolated conformances
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
 9 |     var isLtrDirection: Bool { get }
10 |     func convert(_ frame: CGRect, to: Self?) -> CGRect
   |          `- note: mark the protocol requirement 'convert(_:to:)' 'async' to allow actor-isolated conformances
11 | }
12 |
[9/17] Compiling VDTransition UITransition+match.swift
[10/17] Compiling VDTransition TransitionModifier.swift
[11/17] Compiling VDTransition Transition+Color.swift
[12/17] Compiling VDTransition TransitionDirection.swift
[13/17] Compiling VDTransition UIKitAnimation.swift
[14/17] Compiling VDTransition UITransition+UIStackView.swift
[15/17] Compiling VDTransition UITransition+static.swift
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/UITransition+static.swift:96:24: warning: cannot form key path that captures non-sendable type 'ReferenceWritableKeyPath<Base, CGAffineTransform>'; this is an error in the Swift 6 language mode
 94 |
 95 |     public static func scale(_ scale: CGPoint, anchor: UnitPoint) -> UITransition {
 96 |         UITransition(\.[\.affineTransform, \.anchorPoint]) { progress, view, transform in
    |                        `- warning: cannot form key path that captures non-sendable type 'ReferenceWritableKeyPath<Base, CGAffineTransform>'; this is an error in the Swift 6 language mode
 97 |             let anchor = view.isLtrDirection ? anchor : UnitPoint(x: 1 - anchor.x, y: anchor.y)
 98 |             let scaleX = scale.x != 0 ? scale.x : 0.0001
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
  |              `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/UITransition+static.swift:96:24: warning: cannot form key path that captures non-sendable type 'ReferenceWritableKeyPath<Base, CGPoint>'; this is an error in the Swift 6 language mode
 94 |
 95 |     public static func scale(_ scale: CGPoint, anchor: UnitPoint) -> UITransition {
 96 |         UITransition(\.[\.affineTransform, \.anchorPoint]) { progress, view, transform in
    |                        `- warning: cannot form key path that captures non-sendable type 'ReferenceWritableKeyPath<Base, CGPoint>'; this is an error in the Swift 6 language mode
 97 |             let anchor = view.isLtrDirection ? anchor : UnitPoint(x: 1 - anchor.x, y: anchor.y)
 98 |             let scaleX = scale.x != 0 ? scale.x : 0.0001
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
  |              `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 |     deinit
3 | }
[16/17] Emitting module VDTransition
AppKit.NSView:60:25: warning: main actor-isolated property 'frame' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 58 |     open func setFrameOrigin(_ newOrigin: NSPoint)
 59 |     open func setFrameSize(_ newSize: NSSize)
 60 |     @MainActor open var frame: NSRect { get set }
    |                         `- warning: main actor-isolated property 'frame' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 61 |     open var frameRotation: CGFloat { get set }
 62 |     @available(macOS 10.5, *)
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:46:19: note: add '@preconcurrency' to the 'Transformable' conformance to defer isolation checking to run time
 3 | public protocol Transformable {
 4 |
 5 |     var frame: CGRect { get nonmutating set }
   |         `- note: 'frame' declared here
 6 |     var bounds: CGRect { get nonmutating set }
 7 |     var anchorPoint: CGPoint { get nonmutating set }
   :
44 |
45 | #if canImport(Cocoa)
46 | extension NSView: Transformable {
   |                   `- note: add '@preconcurrency' to the 'Transformable' conformance to defer isolation checking to run time
47 |
48 |     public var anchorPoint: CGPoint {
AppKit.NSView:76:14: warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 74 |     @available(swift, obsoleted: 3, renamed: "rotate(byDegrees:)")
 75 |     open func rotateByAngle(_ angle: CGFloat)
 76 |     open var bounds: NSRect { get set }
    |              `- warning: main actor-isolated property 'bounds' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 77 |     open var isFlipped: Bool { get }
 78 |     @available(swift, obsoleted: 3, renamed: "isFlipped")
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:6:9: note: 'bounds' declared here
 4 |
 5 |     var frame: CGRect { get nonmutating set }
 6 |     var bounds: CGRect { get nonmutating set }
   |         `- note: 'bounds' declared here
 7 |     var anchorPoint: CGPoint { get nonmutating set }
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:48:16: warning: main actor-isolated property 'anchorPoint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 5 |     var frame: CGRect { get nonmutating set }
 6 |     var bounds: CGRect { get nonmutating set }
 7 |     var anchorPoint: CGPoint { get nonmutating set }
   |         `- note: 'anchorPoint' declared here
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
 9 |     var isLtrDirection: Bool { get }
   :
46 | extension NSView: Transformable {
47 |
48 |     public var anchorPoint: CGPoint {
   |                `- warning: main actor-isolated property 'anchorPoint' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
49 |         get { layer?.anchorPoint ?? .zero }
50 |         set { layer?.anchorPoint = newValue }
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:53:16: warning: main actor-isolated property 'affineTransform' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 6 |     var bounds: CGRect { get nonmutating set }
 7 |     var anchorPoint: CGPoint { get nonmutating set }
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
   |         `- note: 'affineTransform' declared here
 9 |     var isLtrDirection: Bool { get }
10 |     func convert(_ frame: CGRect, to: Self?) -> CGRect
   :
51 |     }
52 |
53 |     public var affineTransform: CGAffineTransform {
   |                `- warning: main actor-isolated property 'affineTransform' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
54 |         get {
55 |             layer?.affineTransform() ?? .identity
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:62:16: warning: main actor-isolated property 'isLtrDirection' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 7 |     var anchorPoint: CGPoint { get nonmutating set }
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
 9 |     var isLtrDirection: Bool { get }
   |         `- note: 'isLtrDirection' declared here
10 |     func convert(_ frame: CGRect, to: Self?) -> CGRect
11 | }
   :
60 |     }
61 |
62 |     public var isLtrDirection: Bool {
   |                `- warning: main actor-isolated property 'isLtrDirection' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
63 |         userInterfaceLayoutDirection == .leftToRight
64 |     }
AppKit.NSView:104:15: warning: main actor-isolated instance method 'convert(_:to:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
102 |     @available(swift, obsoleted: 3, renamed: "convert(_:from:)")
103 |     open func convertRect(_ rect: NSRect, fromView view: NSView?) -> NSRect
104 |     open func convert(_ rect: NSRect, to view: NSView?) -> NSRect
    |               |- warning: main actor-isolated instance method 'convert(_:to:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |               `- note: add 'nonisolated' to 'convert(_:to:)' to make this instance method not isolated to the actor
105 |     @available(swift, obsoleted: 3, renamed: "convert(_:to:)")
106 |     open func convertRect(_ rect: NSRect, toView view: NSView?) -> NSRect
/Users/admin/builder/spi-builder-workspace/Sources/VDTransition/Transformable.swift:10:10: note: mark the protocol requirement 'convert(_:to:)' 'async' to allow actor-isolated conformances
 8 |     var affineTransform: CGAffineTransform { get nonmutating set }
 9 |     var isLtrDirection: Bool { get }
10 |     func convert(_ frame: CGRect, to: Self?) -> CGRect
   |          `- note: mark the protocol requirement 'convert(_:to:)' 'async' to allow actor-isolated conformances
11 | }
12 |
[17/17] Compiling VDTransition UITransitionProgress.swift
Build complete! (53.04s)
Fetching https://github.com/apple/swift-docc-plugin
[1/1458] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.38s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.3.0 (0.66s)
Fetching https://github.com/apple/swift-docc-symbolkit
[1/2857] Fetching swift-docc-symbolkit
Fetched https://github.com/apple/swift-docc-symbolkit from cache (1.24s)
Computing version for https://github.com/apple/swift-docc-symbolkit
Computed https://github.com/apple/swift-docc-symbolkit at 1.0.0 (0.74s)
Creating working copy for https://github.com/apple/swift-docc-symbolkit
Working copy of https://github.com/apple/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.3.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "VDTransition",
  "name" : "VDTransition",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "VDTransition",
      "targets" : [
        "VDTransition"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "VDTransitionTests",
      "module_type" : "SwiftTarget",
      "name" : "VDTransitionTests",
      "path" : "Tests/VDTransitionTests",
      "sources" : [
        "VDTransitionTests.swift"
      ],
      "target_dependencies" : [
        "VDTransition"
      ],
      "type" : "test"
    },
    {
      "c99name" : "VDTransition",
      "module_type" : "SwiftTarget",
      "name" : "VDTransition",
      "path" : "Sources/VDTransition",
      "product_memberships" : [
        "VDTransition"
      ],
      "sources" : [
        "RelationValue.swift",
        "Transformable.swift",
        "Transition+Color.swift",
        "TransitionDirection.swift",
        "TransitionModifier.swift",
        "UIKitAnimation.swift",
        "UITransition+UIStackView.swift",
        "UITransition+UIView.swift",
        "UITransition+match.swift",
        "UITransition+static.swift",
        "UITransition.swift",
        "UITransitionProgress.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.