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 emu, reference 0.0.2 (d72c8b), with Swift 6.0 (beta) for macOS (SPM) on 20 Jul 2024 12:27:54 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Beta.3.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.46.4
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/limethaw/emu.git
Reference: 0.0.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/limethaw/emu
 * tag               0.0.2      -> FETCH_HEAD
HEAD is now at d72c8bd Added FordFulkerson test cases
Cloned https://github.com/limethaw/emu.git
Revision (git rev-parse @):
d72c8bd640cdda076fc2ffab0c0e02feeef2a004
SUCCESS checkout https://github.com/limethaw/emu.git at 0.0.2
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/limethaw/emu.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.0.0-Beta.3.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/5] Write sources
[4/5] Write swift-version--14728B76ED507284.txt
[6/22] Compiling functional Atomic.swift
[7/22] Emitting module functional
[8/22] Compiling functional AVLTree.swift
[9/22] Compiling threadsafe Lock.swift
[10/22] Emitting module threadsafe
[11/22] Compiling threadsafe Atomic.swift
[12/22] Compiling Rainbow StringGenerator.swift
[13/23] Compiling Rainbow XcodeColorsSupport.swift
[14/23] Compiling Rainbow String+Rainbow.swift
[15/23] Compiling Rainbow Style.swift
[16/23] Compiling Rainbow Color.swift
[17/23] Compiling Rainbow ModesExtractor.swift
[18/23] Compiling Rainbow OutputTarget.swift
[19/23] Compiling Rainbow ControlCode.swift
[20/23] Emitting module Rainbow
[21/23] Compiling Rainbow BackgroundColor.swift
[22/23] Compiling Rainbow CodesParser.swift
[23/23] Compiling Rainbow Rainbow.swift
[24/31] Compiling emu InsertionSort.swift
[25/31] Compiling emu Matrix.swift
[26/31] Compiling emu FordFulkerson.swift
[27/31] Compiling emu Queue.swift
[28/31] Compiling emu BFS.swift
[29/31] Compiling emu Quicksort.swift
[30/31] Emitting module emu
[31/31] Compiling emu Util.swift
Build complete! (13.57s)
Fetching https://github.com/onevcat/Rainbow
[1/1118] Fetching rainbow
Fetched https://github.com/onevcat/Rainbow from cache (0.98s)
Computing version for https://github.com/onevcat/Rainbow
Computed https://github.com/onevcat/Rainbow at 3.2.0 (0.65s)
Creating working copy for https://github.com/onevcat/Rainbow
Working copy of https://github.com/onevcat/Rainbow resolved at 3.2.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "rainbow",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/onevcat/Rainbow"
    }
  ],
  "manifest_display_name" : "emu",
  "name" : "emu",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "emu",
      "targets" : [
        "emu"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "threadsafe",
      "module_type" : "SwiftTarget",
      "name" : "threadsafe",
      "path" : "Sources/threadsafe",
      "product_memberships" : [
        "emu"
      ],
      "sources" : [
        "algorithms/Atomic.swift",
        "datastructures/Lock.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "functionalTests",
      "module_type" : "SwiftTarget",
      "name" : "functionalTests",
      "path" : "Tests/functionalTests",
      "sources" : [
        "datastructures/AVLTreeTest.swift"
      ],
      "target_dependencies" : [
        "functional"
      ],
      "type" : "test"
    },
    {
      "c99name" : "functional",
      "module_type" : "SwiftTarget",
      "name" : "functional",
      "path" : "Sources/functional",
      "product_memberships" : [
        "emu"
      ],
      "sources" : [
        "algorithms/Atomic.swift",
        "datastructures/AVLTree.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "emuTests",
      "module_type" : "SwiftTarget",
      "name" : "emuTests",
      "path" : "Tests/emuTests",
      "sources" : [
        "algorithms/BFSTests.swift",
        "algorithms/FordFulkersonTests.swift",
        "algorithms/InsertionSortTests.swift",
        "algorithms/QuicksortTests.swift",
        "datastructures/MatrixTests.swift",
        "datastructures/QueueTests.swift"
      ],
      "target_dependencies" : [
        "emu"
      ],
      "type" : "test"
    },
    {
      "c99name" : "emu",
      "module_type" : "SwiftTarget",
      "name" : "emu",
      "path" : "Sources/emu",
      "product_dependencies" : [
        "Rainbow"
      ],
      "product_memberships" : [
        "emu"
      ],
      "sources" : [
        "Util.swift",
        "algorithms/BFS.swift",
        "algorithms/FordFulkerson.swift",
        "algorithms/InsertionSort.swift",
        "algorithms/Quicksort.swift",
        "datastructures/Matrix.swift",
        "datastructures/Queue.swift"
      ],
      "target_dependencies" : [
        "functional",
        "threadsafe"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.