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

Swift 6 data race errors: 0

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/richardpiazza/LCARSDisplayKit.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/richardpiazza/LCARSDisplayKit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at d4fbee1 Restructuring (#2)
Cloned https://github.com/richardpiazza/LCARSDisplayKit.git
Revision (git rev-parse @):
d4fbee1a478890d0a42042afee561463df51cc55
SUCCESS checkout https://github.com/richardpiazza/LCARSDisplayKit.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/richardpiazza/LCARSDisplayKit.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
Building for debugging...
[0/9] Write sources
[4/9] Copying beep3.m4a
[4/9] Copying Swiss 911 Ultra Compressed BT.ttf
[4/9] Copying beep1.m4a
[5/9] Copying beep2.m4a
[8/9] Write swift-version-6F35C1178C84523A.txt
[10/19] Compiling Swift2D Size+CoreGraphics.swift
[11/19] Compiling Swift2D Rect.swift
[12/19] Compiling Swift2D Size.swift
[13/19] Compiling Swift2D Size+Computed.swift
[14/19] Emitting module Swift2D
[15/19] Compiling Swift2D Rect+CoreGraphics.swift
[16/19] Compiling Swift2D Point.swift
[17/19] Compiling Swift2D Point+Computed.swift
[18/19] Compiling Swift2D Rect+Computed.swift
[19/19] Compiling Swift2D Point+CoreGraphics.swift
[20/33] Compiling GraphPoint Radian.swift
[21/34] Compiling GraphPoint Quadrant.swift
[22/34] Compiling GraphPoint GraphPoint.swift
[23/34] Compiling GraphPoint GraphFrame.swift
[24/34] Compiling GraphPoint Degree.swift
[25/34] Compiling GraphPoint CGFloat+GraphPoint.swift
[26/34] Compiling GraphPoint CartesianPlane.swift
[27/34] Compiling GraphPoint CartesianPoint.swift
[28/34] Compiling GraphPoint Arc.swift
[29/34] Compiling GraphPoint CartesianFrame.swift
[30/34] Compiling GraphPoint GraphPointError.swift
[31/34] Compiling GraphPoint CGPoint+GraphPoint.swift
[32/34] Compiling GraphPoint CGRect+GraphPoint.swift
[33/34] Emitting module GraphPoint
[34/34] Compiling GraphPoint Radius.swift
[35/40] Compiling GraphPointUI CircularProgress.swift
[36/40] Compiling GraphPointUI UIImage+GraphPoint.swift
[37/40] Compiling GraphPointUI CGMutablePath+GraphPoint.swift
[38/40] Compiling GraphPointUI CircularSlider.swift
[39/40] Compiling GraphPointUI Arc+CoreGraphics.swift
[40/40] Emitting module GraphPointUI
[41/66] Compiling LCARSDisplayKit TNG.swift
[42/66] Compiling LCARSDisplayKit Theme.swift
[43/66] Compiling LCARSDisplayKit WedgeControl.swift
[44/68] Compiling LCARSDisplayKit EdgedCrescent.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Size+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | // MARK: - Common References
 2 | public extension Size {
 3 |     static let zero: Size = Size(width: 0.0, height: 0.0)
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size' 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
 4 |     static let nan: Size = Size(width: Float.nan, height: Float.nan)
 5 |     internal static let infinite: Size = Size(width: Float.greatestFiniteMagnitude, height: Float.greatestFiniteMagnitude)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Size.swift:2:15: note: consider making struct 'Size' conform to the 'Sendable' protocol
 1 | /// A representation of two-dimensional width and height values.
 2 | public struct Size {
   |               `- note: consider making struct 'Size' conform to the 'Sendable' protocol
 3 |     public var width: Float
 4 |     public var height: Float
[45/68] Compiling LCARSDisplayKit Elbow.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Size+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | // MARK: - Common References
 2 | public extension Size {
 3 |     static let zero: Size = Size(width: 0.0, height: 0.0)
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size' 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
 4 |     static let nan: Size = Size(width: Float.nan, height: Float.nan)
 5 |     internal static let infinite: Size = Size(width: Float.greatestFiniteMagnitude, height: Float.greatestFiniteMagnitude)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Size.swift:2:15: note: consider making struct 'Size' conform to the 'Sendable' protocol
 1 | /// A representation of two-dimensional width and height values.
 2 | public struct Size {
   |               `- note: consider making struct 'Size' conform to the 'Sendable' protocol
 3 |     public var width: Float
 4 |     public var height: Float
[46/68] Compiling LCARSDisplayKit Arc+LCARSDisplayKit.swift
[47/68] Compiling LCARSDisplayKit Behavior.swift
[48/68] Compiling LCARSDisplayKit CartesianFrame+LCARSDisplayKit.swift
[49/68] Emitting module LCARSDisplayKit
[50/68] Compiling LCARSDisplayKit ExpressibleByPath.swift
[51/68] Compiling LCARSDisplayKit InteractiveControl.swift
[52/68] Compiling LCARSDisplayKit RoundedRectangleControl.swift
[53/68] Compiling LCARSDisplayKit DirectionControl.swift
[54/68] Compiling LCARSDisplayKit EdgedCrescentControl.swift
[55/68] Compiling LCARSDisplayKit ElbowControl.swift
[56/68] Compiling LCARSDisplayKit DirectionGroupingView03.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Point+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Point' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | // MARK: - Static References
 2 | public extension Point {
 3 |     static let zero: Point = Point(x: 0, y: 0)
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Point' 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
 4 |     static let nan: Point = Point(x: Float.nan, y: Float.nan)
 5 |     internal static let infinite: Point = Point(x: -Float.greatestFiniteMagnitude / 2, y: -Float.greatestFiniteMagnitude / 2)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Point.swift:2:15: note: consider making struct 'Point' conform to the 'Sendable' protocol
 1 | /// The representation of a single point in a two-dimensional plane.
 2 | public struct Point {
   |               `- note: consider making struct 'Point' conform to the 'Sendable' protocol
 3 |     public var x: Float
 4 |     public var y: Float
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Rect+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Rect' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | // MARK: - Common References
  2 | public extension Rect {
  3 |     static let zero: Rect = Rect(origin: .zero, size: .zero)
    |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Rect' 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
  4 |     static let nan: Rect = Rect(origin: .nan, size: .nan)
  5 |     static let infinite: Rect = Rect(origin: .infinite, size: .infinite)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Rect.swift:2:15: note: consider making struct 'Rect' conform to the 'Sendable' protocol
 1 | /// The location and dimensions of a rectangle.
 2 | public struct Rect {
   |               `- note: consider making struct 'Rect' conform to the 'Sendable' protocol
 3 |     /// A point that specifies the coordinates of the rectangle’s origin.
 4 |     public var origin: Point
[57/68] Compiling LCARSDisplayKit Crescent.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Point+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Point' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | // MARK: - Static References
 2 | public extension Point {
 3 |     static let zero: Point = Point(x: 0, y: 0)
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Point' 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
 4 |     static let nan: Point = Point(x: Float.nan, y: Float.nan)
 5 |     internal static let infinite: Point = Point(x: -Float.greatestFiniteMagnitude / 2, y: -Float.greatestFiniteMagnitude / 2)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Point.swift:2:15: note: consider making struct 'Point' conform to the 'Sendable' protocol
 1 | /// The representation of a single point in a two-dimensional plane.
 2 | public struct Point {
   |               `- note: consider making struct 'Point' conform to the 'Sendable' protocol
 3 |     public var x: Float
 4 |     public var y: Float
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Rect+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Rect' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | // MARK: - Common References
  2 | public extension Rect {
  3 |     static let zero: Rect = Rect(origin: .zero, size: .zero)
    |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Rect' 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
  4 |     static let nan: Rect = Rect(origin: .nan, size: .nan)
  5 |     static let infinite: Rect = Rect(origin: .infinite, size: .infinite)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Rect.swift:2:15: note: consider making struct 'Rect' conform to the 'Sendable' protocol
 1 | /// The location and dimensions of a rectangle.
 2 | public struct Rect {
   |               `- note: consider making struct 'Rect' conform to the 'Sendable' protocol
 3 |     /// A point that specifies the coordinates of the rectangle’s origin.
 4 |     public var origin: Point
[58/68] Compiling LCARSDisplayKit Direction.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Point+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Point' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | // MARK: - Static References
 2 | public extension Point {
 3 |     static let zero: Point = Point(x: 0, y: 0)
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Point' 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
 4 |     static let nan: Point = Point(x: Float.nan, y: Float.nan)
 5 |     internal static let infinite: Point = Point(x: -Float.greatestFiniteMagnitude / 2, y: -Float.greatestFiniteMagnitude / 2)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Point.swift:2:15: note: consider making struct 'Point' conform to the 'Sendable' protocol
 1 | /// The representation of a single point in a two-dimensional plane.
 2 | public struct Point {
   |               `- note: consider making struct 'Point' conform to the 'Sendable' protocol
 3 |     public var x: Float
 4 |     public var y: Float
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Rect+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Rect' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | // MARK: - Common References
  2 | public extension Rect {
  3 |     static let zero: Rect = Rect(origin: .zero, size: .zero)
    |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Rect' 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
  4 |     static let nan: Rect = Rect(origin: .nan, size: .nan)
  5 |     static let infinite: Rect = Rect(origin: .infinite, size: .infinite)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Rect.swift:2:15: note: consider making struct 'Rect' conform to the 'Sendable' protocol
 1 | /// The location and dimensions of a rectangle.
 2 | public struct Rect {
   |               `- note: consider making struct 'Rect' conform to the 'Sendable' protocol
 3 |     /// A point that specifies the coordinates of the rectangle’s origin.
 4 |     public var origin: Point
[59/68] Compiling LCARSDisplayKit CoreGraphics+Translation.swift
[60/68] Compiling LCARSDisplayKit CrescentControl.swift
[61/68] Compiling LCARSDisplayKit DPad.swift
[62/68] Compiling LCARSDisplayKit Wedge.swift
[63/68] Compiling LCARSDisplayKit resource_bundle_accessor.swift
[64/68] Compiling LCARSDisplayKit ExpressibleByCartesianPoints.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Size+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | // MARK: - Common References
 2 | public extension Size {
 3 |     static let zero: Size = Size(width: 0.0, height: 0.0)
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size' 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
 4 |     static let nan: Size = Size(width: Float.nan, height: Float.nan)
 5 |     internal static let infinite: Size = Size(width: Float.greatestFiniteMagnitude, height: Float.greatestFiniteMagnitude)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Size.swift:2:15: note: consider making struct 'Size' conform to the 'Sendable' protocol
 1 | /// A representation of two-dimensional width and height values.
 2 | public struct Size {
   |               `- note: consider making struct 'Size' conform to the 'Sendable' protocol
 3 |     public var width: Float
 4 |     public var height: Float
[65/68] Compiling LCARSDisplayKit RoundedRectangle.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Size+Computed.swift:3:16: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | // MARK: - Common References
 2 | public extension Size {
 3 |     static let zero: Size = Size(width: 0.0, height: 0.0)
   |                |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Size' 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
 4 |     static let nan: Size = Size(width: Float.nan, height: Float.nan)
 5 |     internal static let infinite: Size = Size(width: Float.greatestFiniteMagnitude, height: Float.greatestFiniteMagnitude)
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Swift2D/Sources/Swift2D/Size.swift:2:15: note: consider making struct 'Size' conform to the 'Sendable' protocol
 1 | /// A representation of two-dimensional width and height values.
 2 | public struct Size {
   |               `- note: consider making struct 'Size' conform to the 'Sendable' protocol
 3 |     public var width: Float
 4 |     public var height: Float
[66/68] Compiling LCARSDisplayKit DirectionGroupingView.swift
[67/68] Compiling LCARSDisplayKit DirectionGroupingView01.swift
[68/68] Compiling LCARSDisplayKit DirectionGroupingView02.swift
Build complete! (28.16s)
Fetching https://github.com/richardpiazza/GraphPoint.git
Fetching https://github.com/richardpiazza/Swift2D
[1/231] Fetching swift2d
[147/799] Fetching swift2d, graphpoint
Fetched https://github.com/richardpiazza/GraphPoint.git from cache (1.04s)
Fetched https://github.com/richardpiazza/Swift2D from cache (1.04s)
Computing version for https://github.com/richardpiazza/GraphPoint.git
Computed https://github.com/richardpiazza/GraphPoint.git at 4.0.0 (0.69s)
Computing version for https://github.com/richardpiazza/Swift2D
Computed https://github.com/richardpiazza/Swift2D at 1.1.0 (0.64s)
Creating working copy for https://github.com/richardpiazza/GraphPoint.git
Working copy of https://github.com/richardpiazza/GraphPoint.git resolved at 4.0.0
Creating working copy for https://github.com/richardpiazza/Swift2D
Working copy of https://github.com/richardpiazza/Swift2D resolved at 1.1.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "graphpoint",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.0",
            "upper_bound" : "4.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/GraphPoint.git"
    }
  ],
  "manifest_display_name" : "LCARSDisplayKit",
  "name" : "LCARSDisplayKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "LCARSDisplayKit",
      "targets" : [
        "LCARSDisplayKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "LCARSDisplayKitTests",
      "module_type" : "SwiftTarget",
      "name" : "LCARSDisplayKitTests",
      "path" : "Tests/LCARSDisplayKitTests",
      "product_dependencies" : [
        "GraphPoint"
      ],
      "sources" : [
        "GenericTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "LCARSDisplayKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "LCARSDisplayKit",
      "module_type" : "SwiftTarget",
      "name" : "LCARSDisplayKit",
      "path" : "Sources/LCARSDisplayKit",
      "product_dependencies" : [
        "GraphPoint"
      ],
      "product_memberships" : [
        "LCARSDisplayKit"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/beep1.m4a",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/beep3.m4a",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/Swiss 911 Ultra Compressed BT.ttf",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/LCARSDisplayKit/Resources/beep2.m4a",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "Components/Arc+LCARSDisplayKit.swift",
        "Components/Behavior.swift",
        "Components/CartesianFrame+LCARSDisplayKit.swift",
        "Components/CoreGraphics+Translation.swift",
        "Components/CrescentControl.swift",
        "Components/DPad.swift",
        "Components/DirectionControl.swift",
        "Components/EdgedCrescentControl.swift",
        "Components/ElbowControl.swift",
        "Components/ExpressibleByPath.swift",
        "Components/InteractiveControl.swift",
        "Components/RoundedRectangleControl.swift",
        "Components/TNG.swift",
        "Components/Theme.swift",
        "Components/WedgeControl.swift",
        "Layouts/DirectionGroupingView.swift",
        "Layouts/DirectionGroupingView01.swift",
        "Layouts/DirectionGroupingView02.swift",
        "Layouts/DirectionGroupingView03.swift",
        "Shapes/Crescent.swift",
        "Shapes/Direction.swift",
        "Shapes/EdgedCrescent.swift",
        "Shapes/Elbow.swift",
        "Shapes/ExpressibleByCartesianPoints.swift",
        "Shapes/RoundedRectangle.swift",
        "Shapes/Wedge.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.