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 CGPointVector 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/koher/cgpointvector.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/koher/cgpointvector
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at e29a77e Merge pull request #9 from koher/github-actions
Cloned https://github.com/koher/cgpointvector.git
Revision (git rev-parse @):
e29a77e372cbe0524b8b512f55c5a60f6d19706d
SUCCESS checkout https://github.com/koher/cgpointvector.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/koher/cgpointvector.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/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/8] Compiling CGPointVector CGSize.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGSize.swift:50:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGSize: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(width), \(height))"
[4/8] Compiling CGPointVector CGRect.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGRect.swift:16:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
14 | }
15 |
16 | extension CGRect: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |     public var description: String {
18 |         return "(\(origin.description), \(size.description))"
[5/8] Compiling CGPointVector CGPoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGPoint.swift:50:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGPoint: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(x), \(y))"
[6/8] Compiling CGPointVector CGAffineTransform.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGAffineTransform.swift:9:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 7 | }
 8 |
 9 | extension CGAffineTransform: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |     public var description: String {
11 |         return "(\(a), \(b), \(c), \(d), \(tx), \(ty))"
[7/8] Compiling CGPointVector CGVector.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGVector.swift:50:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGVector: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(dx), \(dy))"
[8/8] Emitting module CGPointVector
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGAffineTransform.swift:9:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 7 | }
 8 |
 9 | extension CGAffineTransform: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
10 |     public var description: String {
11 |         return "(\(a), \(b), \(c), \(d), \(tx), \(ty))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGPoint.swift:50:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGPoint: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(x), \(y))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGRect.swift:16:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
14 | }
15 |
16 | extension CGRect: CustomStringConvertible {
   | |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |     public var description: String {
18 |         return "(\(origin.description), \(size.description))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGSize.swift:50:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGSize: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(width), \(height))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGVector.swift:50:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
 48 | }
 49 |
 50 | extension CGVector: CustomStringConvertible {
    | |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 51 |     public var description: String {
 52 |         return "(\(dx), \(dy))"
Build complete! (8.87s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CGPointVector",
  "name" : "CGPointVector",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "8.0"
    },
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "CGPointVector",
      "targets" : [
        "CGPointVector"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "CGPointVectorTests",
      "module_type" : "SwiftTarget",
      "name" : "CGPointVectorTests",
      "path" : "Tests/CGPointVectorTests",
      "sources" : [
        "CGAffineTransformTests.swift",
        "CGPointTests.swift",
        "CGPointVectorTests.swift",
        "CGRectTests.swift",
        "CGSizeTests.swift",
        "CGVectorTests.swift"
      ],
      "target_dependencies" : [
        "CGPointVector"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CGPointVector",
      "module_type" : "SwiftTarget",
      "name" : "CGPointVector",
      "path" : "Sources",
      "product_memberships" : [
        "CGPointVector"
      ],
      "sources" : [
        "CGPointVector/CGAffineTransform.swift",
        "CGPointVector/CGPoint.swift",
        "CGPointVector/CGRect.swift",
        "CGPointVector/CGSize.swift",
        "CGPointVector/CGVector.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.