The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of GraphPoint, reference main (db6b65), with Swift 6.2 (beta) for macOS (SPM) on 24 Jun 2025 03:28:51 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/richardpiazza/GraphPoint.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/richardpiazza/GraphPoint
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at db6b657 Standard Library Conformances (#3)
Cloned https://github.com/richardpiazza/GraphPoint.git
Revision (git rev-parse @):
db6b6570aee5782432400b1ac37bba6dc3a652e5
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/richardpiazza/GraphPoint.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/richardpiazza/GraphPoint.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin SwiftFormatPlugin
Building for debugging...
[1/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/11] Compiling Swift2D Size.swift
[6/11] Compiling Swift2D Point.swift
[7/11] Compiling Swift2D Rect+CoreGraphics.swift
[8/11] Compiling Swift2D Size+CoreGraphics.swift
[9/11] Compiling Swift2D Rect.swift
[10/11] Emitting module Swift2D
[11/11] Compiling Swift2D Point+CoreGraphics.swift
[12/21] Compiling GraphPoint Radius.swift
[13/21] Compiling GraphPoint Radian.swift
[14/21] Compiling GraphPoint Quadrant.swift
[15/21] Compiling GraphPoint CartesianPlane.swift
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianPlane.swift:67:45: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
 65 |
 66 |         if point.x < origin.x {
 67 |             cartesianPoint = cartesianPoint.with(x: -(origin.x - point.x))
    |                                             |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
    |                                             `- note: use 'x(_:)' instead
 68 |         } else if point.x > origin.x {
 69 |             cartesianPoint = cartesianPoint.with(x: point.x - origin.x)
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianPlane.swift:69:45: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
 67 |             cartesianPoint = cartesianPoint.with(x: -(origin.x - point.x))
 68 |         } else if point.x > origin.x {
 69 |             cartesianPoint = cartesianPoint.with(x: point.x - origin.x)
    |                                             |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
    |                                             `- note: use 'x(_:)' instead
 70 |         }
 71 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianPlane.swift:73:45: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
 71 |
 72 |         if point.y > origin.y {
 73 |             cartesianPoint = cartesianPoint.with(y: -(point.y - origin.y))
    |                                             |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
    |                                             `- note: use 'y(_:)' instead
 74 |         } else if point.y < origin.y {
 75 |             cartesianPoint = cartesianPoint.with(y: origin.y - point.y)
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianPlane.swift:75:45: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
 73 |             cartesianPoint = cartesianPoint.with(y: -(point.y - origin.y))
 74 |         } else if point.y < origin.y {
 75 |             cartesianPoint = cartesianPoint.with(y: origin.y - point.y)
    |                                             |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
    |                                             `- note: use 'y(_:)' instead
 76 |         }
 77 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianPlane.swift:86:27: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
 84 |
 85 |         if cartesianPoint.x >= 0.0 {
 86 |             point = point.with(x: cartesianOrigin.x + cartesianPoint.x)
    |                           |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
    |                           `- note: use 'x(_:)' instead
 87 |         } else {
 88 |             point = point.with(x: cartesianOrigin.x - abs(cartesianPoint.x))
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianPlane.swift:88:27: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
 86 |             point = point.with(x: cartesianOrigin.x + cartesianPoint.x)
 87 |         } else {
 88 |             point = point.with(x: cartesianOrigin.x - abs(cartesianPoint.x))
    |                           |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
    |                           `- note: use 'x(_:)' instead
 89 |         }
 90 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianPlane.swift:92:27: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
 90 |
 91 |         if cartesianPoint.y <= 0.0 {
 92 |             point = point.with(y: cartesianOrigin.y + abs(cartesianPoint.y))
    |                           |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
    |                           `- note: use 'y(_:)' instead
 93 |         } else {
 94 |             point = point.with(y: cartesianOrigin.y - cartesianPoint.y)
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianPlane.swift:94:27: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
 92 |             point = point.with(y: cartesianOrigin.y + abs(cartesianPoint.y))
 93 |         } else {
 94 |             point = point.with(y: cartesianOrigin.y - cartesianPoint.y)
    |                           |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
    |                           `- note: use 'y(_:)' instead
 95 |         }
 96 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[16/21] Compiling GraphPoint Degree.swift
[17/21] Compiling GraphPoint GraphPointError.swift
[18/21] Compiling GraphPoint CartesianPoint.swift
[19/21] Compiling GraphPoint Arc.swift
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/Arc.swift:46:18: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
44 |         if startingDegree < 90 {
45 |             pivot = pivot
46 |                 .with(x: endingPoint.x)
   |                  |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
   |                  `- note: use 'x(_:)' instead
47 |                 .with(y: startingPoint.y)
48 |         } else if startingDegree < 180 {
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/Arc.swift:47:18: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
45 |             pivot = pivot
46 |                 .with(x: endingPoint.x)
47 |                 .with(y: startingPoint.y)
   |                  |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
   |                  `- note: use 'y(_:)' instead
48 |         } else if startingDegree < 180 {
49 |             pivot = pivot
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/Arc.swift:50:18: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
48 |         } else if startingDegree < 180 {
49 |             pivot = pivot
50 |                 .with(x: startingPoint.x)
   |                  |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
   |                  `- note: use 'x(_:)' instead
51 |                 .with(y: endingPoint.y)
52 |         } else if startingDegree < 270 {
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/Arc.swift:51:18: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
49 |             pivot = pivot
50 |                 .with(x: startingPoint.x)
51 |                 .with(y: endingPoint.y)
   |                  |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
   |                  `- note: use 'y(_:)' instead
52 |         } else if startingDegree < 270 {
53 |             pivot = pivot
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/Arc.swift:54:18: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
52 |         } else if startingDegree < 270 {
53 |             pivot = pivot
54 |                 .with(x: endingPoint.x)
   |                  |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
   |                  `- note: use 'x(_:)' instead
55 |                 .with(y: startingPoint.y)
56 |         } else {
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/Arc.swift:55:18: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
53 |             pivot = pivot
54 |                 .with(x: endingPoint.x)
55 |                 .with(y: startingPoint.y)
   |                  |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
   |                  `- note: use 'y(_:)' instead
56 |         } else {
57 |             pivot = pivot
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/Arc.swift:58:18: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
56 |         } else {
57 |             pivot = pivot
58 |                 .with(x: startingPoint.x)
   |                  |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
   |                  `- note: use 'x(_:)' instead
59 |                 .with(y: endingPoint.y)
60 |         }
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/Arc.swift:59:18: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
57 |             pivot = pivot
58 |                 .with(x: startingPoint.x)
59 |                 .with(y: endingPoint.y)
   |                  |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
   |                  `- note: use 'y(_:)' instead
60 |         }
61 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[20/21] Emitting module GraphPoint
[21/21] Compiling GraphPoint CartesianFrame.swift
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:61:37: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
 59 |         for point in points {
 60 |             if point.x < minXMaxY.x || minXMaxY.x == 0 {
 61 |                 minXMaxY = minXMaxY.with(x: point.x)
    |                                     |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
    |                                     `- note: use 'x(_:)' instead
 62 |             }
 63 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:65:37: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
 63 |
 64 |             if point.y > minXMaxY.y || minXMaxY.y == 0 {
 65 |                 minXMaxY = minXMaxY.with(y: point.y)
    |                                     |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
    |                                     `- note: use 'y(_:)' instead
 66 |             }
 67 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:69:37: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
 67 |
 68 |             if point.x > maxXMinY.x || maxXMinY.x == 0 {
 69 |                 maxXMinY = maxXMinY.with(x: point.x)
    |                                     |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
    |                                     `- note: use 'x(_:)' instead
 70 |             }
 71 |
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:73:37: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
 71 |
 72 |             if point.y < maxXMinY.y || maxXMinY.y == 0 {
 73 |                 maxXMinY = maxXMinY.with(y: point.y)
    |                                     |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
    |                                     `- note: use 'y(_:)' instead
 74 |             }
 75 |         }
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:135:39: warning: 'with(width:)' is deprecated: renamed to 'width(_:)' [#DeprecatedDeclaration]
133 |             if maxAxis < arc.radius {
134 |                 let width = frame.size.width + (arc.radius - maxAxis)
135 |                 let size = frame.size.with(width: width)
    |                                       |- warning: 'with(width:)' is deprecated: renamed to 'width(_:)' [#DeprecatedDeclaration]
    |                                       `- note: use 'width(_:)' instead
136 |                 frame = frame.with(size: size)
137 |             }
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:136:31: warning: 'with(size:)' is deprecated: renamed to 'size(_:)' [#DeprecatedDeclaration]
134 |                 let width = frame.size.width + (arc.radius - maxAxis)
135 |                 let size = frame.size.with(width: width)
136 |                 frame = frame.with(size: size)
    |                               |- warning: 'with(size:)' is deprecated: renamed to 'size(_:)' [#DeprecatedDeclaration]
    |                               `- note: use 'size(_:)' instead
137 |             }
138 |         case (.II, .I), (.I, .II):
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:142:43: warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
140 |             if maxAxis < arc.radius {
141 |                 let y = frame.origin.y + (arc.radius - maxAxis)
142 |                 let origin = frame.origin.with(y: y)
    |                                           |- warning: 'with(y:)' is deprecated: renamed to 'y(_:)' [#DeprecatedDeclaration]
    |                                           `- note: use 'y(_:)' instead
143 |                 let height = frame.size.height + (arc.radius - maxAxis)
144 |                 let size = frame.size.with(height: height)
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:144:39: warning: 'with(height:)' is deprecated: renamed to 'height(_:)' [#DeprecatedDeclaration]
142 |                 let origin = frame.origin.with(y: y)
143 |                 let height = frame.size.height + (arc.radius - maxAxis)
144 |                 let size = frame.size.with(height: height)
    |                                       |- warning: 'with(height:)' is deprecated: renamed to 'height(_:)' [#DeprecatedDeclaration]
    |                                       `- note: use 'height(_:)' instead
145 |                 frame = frame.with(origin: origin).with(size: size)
146 |             }
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:145:31: warning: 'with(origin:)' is deprecated: renamed to 'origin(_:)' [#DeprecatedDeclaration]
143 |                 let height = frame.size.height + (arc.radius - maxAxis)
144 |                 let size = frame.size.with(height: height)
145 |                 frame = frame.with(origin: origin).with(size: size)
    |                               |- warning: 'with(origin:)' is deprecated: renamed to 'origin(_:)' [#DeprecatedDeclaration]
    |                               `- note: use 'origin(_:)' instead
146 |             }
147 |         case (.III, .II), (.II, .III):
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:145:52: warning: 'with(size:)' is deprecated: renamed to 'size(_:)' [#DeprecatedDeclaration]
143 |                 let height = frame.size.height + (arc.radius - maxAxis)
144 |                 let size = frame.size.with(height: height)
145 |                 frame = frame.with(origin: origin).with(size: size)
    |                                                    |- warning: 'with(size:)' is deprecated: renamed to 'size(_:)' [#DeprecatedDeclaration]
    |                                                    `- note: use 'size(_:)' instead
146 |             }
147 |         case (.III, .II), (.II, .III):
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:151:43: warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
149 |             if maxAxis < arc.radius {
150 |                 let x = frame.origin.x - (arc.radius - maxAxis)
151 |                 let origin = frame.origin.with(x: x)
    |                                           |- warning: 'with(x:)' is deprecated: renamed to 'x(_:)' [#DeprecatedDeclaration]
    |                                           `- note: use 'x(_:)' instead
152 |                 let width = frame.size.width + (arc.radius - maxAxis)
153 |                 let size = frame.size.with(width: width)
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:153:39: warning: 'with(width:)' is deprecated: renamed to 'width(_:)' [#DeprecatedDeclaration]
151 |                 let origin = frame.origin.with(x: x)
152 |                 let width = frame.size.width + (arc.radius - maxAxis)
153 |                 let size = frame.size.with(width: width)
    |                                       |- warning: 'with(width:)' is deprecated: renamed to 'width(_:)' [#DeprecatedDeclaration]
    |                                       `- note: use 'width(_:)' instead
154 |                 frame = frame.with(origin: origin).with(size: size)
155 |             }
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:154:31: warning: 'with(origin:)' is deprecated: renamed to 'origin(_:)' [#DeprecatedDeclaration]
152 |                 let width = frame.size.width + (arc.radius - maxAxis)
153 |                 let size = frame.size.with(width: width)
154 |                 frame = frame.with(origin: origin).with(size: size)
    |                               |- warning: 'with(origin:)' is deprecated: renamed to 'origin(_:)' [#DeprecatedDeclaration]
    |                               `- note: use 'origin(_:)' instead
155 |             }
156 |         case (.IV, .III), (.III, .IV):
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:154:52: warning: 'with(size:)' is deprecated: renamed to 'size(_:)' [#DeprecatedDeclaration]
152 |                 let width = frame.size.width + (arc.radius - maxAxis)
153 |                 let size = frame.size.with(width: width)
154 |                 frame = frame.with(origin: origin).with(size: size)
    |                                                    |- warning: 'with(size:)' is deprecated: renamed to 'size(_:)' [#DeprecatedDeclaration]
    |                                                    `- note: use 'size(_:)' instead
155 |             }
156 |         case (.IV, .III), (.III, .IV):
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:160:39: warning: 'with(height:)' is deprecated: renamed to 'height(_:)' [#DeprecatedDeclaration]
158 |             if maxAxis < arc.radius {
159 |                 let height = frame.size.height + (arc.radius - maxAxis)
160 |                 let size = frame.size.with(height: height)
    |                                       |- warning: 'with(height:)' is deprecated: renamed to 'height(_:)' [#DeprecatedDeclaration]
    |                                       `- note: use 'height(_:)' instead
161 |                 frame = frame.with(size: size)
162 |             }
/Users/admin/builder/spi-builder-workspace/Sources/GraphPoint/CartesianFrame.swift:161:31: warning: 'with(size:)' is deprecated: renamed to 'size(_:)' [#DeprecatedDeclaration]
159 |                 let height = frame.size.height + (arc.radius - maxAxis)
160 |                 let size = frame.size.with(height: height)
161 |                 frame = frame.with(size: size)
    |                               |- warning: 'with(size:)' is deprecated: renamed to 'size(_:)' [#DeprecatedDeclaration]
    |                               `- note: use 'size(_:)' instead
162 |             }
163 |         default:
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Build complete! (25.90s)
Fetching https://github.com/nicklockwood/SwiftFormat
Fetching https://github.com/richardpiazza/Swift2D
[6/274] Fetching swift2d
[275/49215] Fetching swift2d, swiftformat
Fetched https://github.com/nicklockwood/SwiftFormat from cache (14.54s)
Fetched https://github.com/richardpiazza/Swift2D from cache (14.54s)
Computing version for https://github.com/richardpiazza/Swift2D
Computed https://github.com/richardpiazza/Swift2D at 2.2.1 (15.00s)
Computing version for https://github.com/nicklockwood/SwiftFormat
Computed https://github.com/nicklockwood/SwiftFormat at 0.56.4 (3.08s)
Creating working copy for https://github.com/richardpiazza/Swift2D
Working copy of https://github.com/richardpiazza/Swift2D resolved at 2.2.1
Creating working copy for https://github.com/nicklockwood/SwiftFormat
Working copy of https://github.com/nicklockwood/SwiftFormat resolved at 0.56.4
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift2d",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.2.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/richardpiazza/Swift2D"
    },
    {
      "identity" : "swiftformat",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.55.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nicklockwood/SwiftFormat"
    }
  ],
  "manifest_display_name" : "GraphPoint",
  "name" : "GraphPoint",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "GraphPoint",
      "targets" : [
        "GraphPoint"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "GraphPointTests",
      "module_type" : "SwiftTarget",
      "name" : "GraphPointTests",
      "path" : "Tests/GraphPointTests",
      "sources" : [
        "CartesianFrameTests.swift",
        "CartesianPlaneTests.swift",
        "CartesianPointTests.swift",
        "DegreeTests.swift",
        "QuadrantTests.swift",
        "RadianTests.swift"
      ],
      "target_dependencies" : [
        "GraphPoint"
      ],
      "type" : "test"
    },
    {
      "c99name" : "GraphPoint",
      "module_type" : "SwiftTarget",
      "name" : "GraphPoint",
      "path" : "Sources/GraphPoint",
      "product_dependencies" : [
        "Swift2D"
      ],
      "product_memberships" : [
        "GraphPoint"
      ],
      "sources" : [
        "Arc.swift",
        "CartesianFrame.swift",
        "CartesianPlane.swift",
        "CartesianPoint.swift",
        "Degree.swift",
        "GraphPointError.swift",
        "Quadrant.swift",
        "Radian.swift",
        "Radius.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.