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

Failed to build Finite with Swift 6.0 for macOS (SPM).

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/vknabel/Finite.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/vknabel/Finite
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at cbd5de6 Improvements for Swift 5.3
Cloned https://github.com/vknabel/Finite.git
Revision (git rev-parse @):
cbd5de6ebbabfb39a730d1357c1c3659f4301c45
SUCCESS checkout https://github.com/vknabel/Finite.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/vknabel/Finite.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/7] Emitting module Finite
/Users/admin/builder/spi-builder-workspace/Sources/Ref.swift:37:25: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 5 | }
 6 |
 7 | internal class Ref<T> {
   |                    `- note: 'T' previously declared here
 8 |     private var value: () -> T?
 9 |
   :
35 |     }
36 |
37 |     private struct Weak<T> {
   |                         `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
38 |         fileprivate weak var value: Box<T>?
39 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Ref.swift:41:23: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 5 | }
 6 |
 7 | internal class Ref<T> {
   |                    `- note: 'T' previously declared here
 8 |     private var value: () -> T?
 9 |
   :
39 |     }
40 |
41 |     private class Box<T>: ReferenceDisposable {
   |                       `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |         var value: T?
43 |
/Users/admin/builder/spi-builder-workspace/Sources/StateMachine.swift:12:10: warning: associated value 'denied(from:to:)' of 'Sendable'-conforming generic enum 'TransitionError' has non-sendable type 'T'; this is an error in the Swift 6 language mode
  8 |
  9 | /// Indicates that a transition failed.
 10 | public enum TransitionError<T: Hashable>: Error {
    |                             `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 11 |     /// Represents a tried transition that is not allowed.
 12 |     case denied(from: T, to: T)
    |          `- warning: associated value 'denied(from:to:)' of 'Sendable'-conforming generic enum 'TransitionError' has non-sendable type 'T'; this is an error in the Swift 6 language mode
 13 | }
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/StateMachine.swift:12:10: warning: associated value 'denied(from:to:)' of 'Sendable'-conforming generic enum 'TransitionError' has non-sendable type 'T'; this is an error in the Swift 6 language mode
  8 |
  9 | /// Indicates that a transition failed.
 10 | public enum TransitionError<T: Hashable>: Error {
    |                             `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 11 |     /// Represents a tried transition that is not allowed.
 12 |     case denied(from: T, to: T)
    |          `- warning: associated value 'denied(from:to:)' of 'Sendable'-conforming generic enum 'TransitionError' has non-sendable type 'T'; this is an error in the Swift 6 language mode
 13 | }
 14 |
[4/7] Compiling Finite Ref.swift
/Users/admin/builder/spi-builder-workspace/Sources/Ref.swift:37:25: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 5 | }
 6 |
 7 | internal class Ref<T> {
   |                    `- note: 'T' previously declared here
 8 |     private var value: () -> T?
 9 |
   :
35 |     }
36 |
37 |     private struct Weak<T> {
   |                         `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
38 |         fileprivate weak var value: Box<T>?
39 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Ref.swift:41:23: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 5 | }
 6 |
 7 | internal class Ref<T> {
   |                    `- note: 'T' previously declared here
 8 |     private var value: () -> T?
 9 |
   :
39 |     }
40 |
41 |     private class Box<T>: ReferenceDisposable {
   |                       `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
42 |         var value: T?
43 |
[5/7] Compiling Finite Transition.swift
error: compile command failed due to signal 6 (use -v to see invocation)
[6/7] Compiling Finite StateMachine.swift
/Users/admin/builder/spi-builder-workspace/Sources/StateMachine.swift:12:10: warning: associated value 'denied(from:to:)' of 'Sendable'-conforming generic enum 'TransitionError' has non-sendable type 'T'; this is an error in the Swift 6 language mode
  8 |
  9 | /// Indicates that a transition failed.
 10 | public enum TransitionError<T: Hashable>: Error {
    |                             `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 11 |     /// Represents a tried transition that is not allowed.
 12 |     case denied(from: T, to: T)
    |          `- warning: associated value 'denied(from:to:)' of 'Sendable'-conforming generic enum 'TransitionError' has non-sendable type 'T'; this is an error in the Swift 6 language mode
 13 | }
 14 |
/Users/admin/builder/spi-builder-workspace/Sources/StateMachine.swift:12:10: warning: associated value 'denied(from:to:)' of 'Sendable'-conforming generic enum 'TransitionError' has non-sendable type 'T'; this is an error in the Swift 6 language mode
  8 |
  9 | /// Indicates that a transition failed.
 10 | public enum TransitionError<T: Hashable>: Error {
    |                             `- note: consider making generic parameter 'T' conform to the 'Sendable' protocol
 11 |     /// Represents a tried transition that is not allowed.
 12 |     case denied(from: T, to: T)
    |          `- warning: associated value 'denied(from:to:)' of 'Sendable'-conforming generic enum 'TransitionError' has non-sendable type 'T'; this is an error in the Swift 6 language mode
 13 | }
 14 |
SIL verification failed: Two variables with different type but same scope!: lhs == rhs || (lhs.isAddress() && lhs.getObjectType() == rhs) || (DebugVarTy.isAddress() && lhs == rhs.getObjectType())
Verifying instruction:
->   %4 = alloc_stack [lexical] [var_decl] $(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), let, name "lhs", argno 1 // users: %80, %79, %47, %10, %7
     %7 = tuple_element_addr %4 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 0 // user: %8
     %10 = tuple_element_addr %4 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 1 // user: %22
     copy_addr %4 to [init] %46 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %47
     destroy_addr %4 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %79
     dealloc_stack %4 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %80
In function:
// closure #1 in StateFlow.description.getter
// Isolation: nonisolated
sil private [ossa] @$s6Finite9StateFlowV11descriptionSSvgSbAA10TransitionVyxG3key_SbAGcSg5valuet_AgH_AiJttXEfU_ : $@convention(thin) <T where T : Hashable> (@in_guaranteed (key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>), @in_guaranteed (key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>)) -> (Bool, @error any Error) {
// %0 "lhs"                                       // user: %3
// %1 "rhs"                                       // user: %24
bb0(%0 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>), %1 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>)):
  %2 = alloc_stack $(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>), let, name "lhs" // users: %81, %6, %5, %3
  copy_addr %0 to [init] %2 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>) // id: %3
  %4 = alloc_stack [lexical] [var_decl] $(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), let, name "lhs", argno 1 // users: %80, %79, %47, %10, %7
  %5 = tuple_element_addr %2 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>), 0 // user: %8
  %6 = tuple_element_addr %2 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>), 1 // user: %9
  %7 = tuple_element_addr %4 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 0 // user: %8
  copy_addr [take] %5 to [init] %7 : $*Transition<T> // id: %8
  %9 = load [take] %6 : $*Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>> // user: %11
  %10 = tuple_element_addr %4 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 1 // user: %22
  switch_enum %9 : $Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>, case #Optional.some!enumelt: bb1, case #Optional.none!enumelt: bb2 // id: %11
// %12                                            // user: %13
bb1(%12 : @owned $@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>): // Preds: bb0
  %13 = convert_function %12 : $@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool> to $@callee_guaranteed (@in_guaranteed Transition<T>) -> @out Bool // user: %15
  // function_ref thunk for @escaping @callee_guaranteed (@in_guaranteed Transition<A>) -> (@out Bool)
  %14 = function_ref @$s6Finite10TransitionVyxGSbIegnr_ADSbIegnd_SHRzlTR : $@convention(thin) <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>, @guaranteed @callee_guaranteed (@in_guaranteed Transition<τ_0_0>) -> @out Bool) -> Bool // user: %15
  %15 = partial_apply [callee_guaranteed] %14<T>(%13) : $@convention(thin) <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>, @guaranteed @callee_guaranteed (@in_guaranteed Transition<τ_0_0>) -> @out Bool) -> Bool // user: %16
  %16 = convert_function %15 : $@callee_guaranteed (@in_guaranteed Transition<T>) -> Bool to $@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T> // user: %17
  %17 = enum $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>, #Optional.some!enumelt, %16 : $@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T> // user: %18
  br bb3(%17 : $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %18
bb2:                                              // Preds: bb0
  %19 = enum $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>, #Optional.none!enumelt // user: %20
  br bb3(%19 : $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %20
// %21                                            // user: %22
bb3(%21 : @owned $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>): // Preds: bb2 bb1
  store %21 to [init] %10 : $*Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>> // id: %22
  %23 = alloc_stack $(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>), let, name "rhs" // users: %78, %27, %26, %24
  copy_addr %1 to [init] %23 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>) // id: %24
  %25 = alloc_stack [lexical] [var_decl] $(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), let, name "rhs", argno 2 // users: %77, %76, %58, %31, %28
  %26 = tuple_element_addr %23 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>), 0 // user: %29
  %27 = tuple_element_addr %23 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>), 1 // user: %30
  %28 = tuple_element_addr %25 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 0 // user: %29
  copy_addr [take] %26 to [init] %28 : $*Transition<T> // id: %29
  %30 = load [take] %27 : $*Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>> // user: %32
  %31 = tuple_element_addr %25 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 1 // user: %43
  switch_enum %30 : $Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>, case #Optional.some!enumelt: bb4, case #Optional.none!enumelt: bb5 // id: %32
// %33                                            // user: %34
bb4(%33 : @owned $@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>): // Preds: bb3
  %34 = convert_function %33 : $@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool> to $@callee_guaranteed (@in_guaranteed Transition<T>) -> @out Bool // user: %36
  // function_ref thunk for @escaping @callee_guaranteed (@in_guaranteed Transition<A>) -> (@out Bool)
  %35 = function_ref @$s6Finite10TransitionVyxGSbIegnr_ADSbIegnd_SHRzlTR : $@convention(thin) <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>, @guaranteed @callee_guaranteed (@in_guaranteed Transition<τ_0_0>) -> @out Bool) -> Bool // user: %36
  %36 = partial_apply [callee_guaranteed] %35<T>(%34) : $@convention(thin) <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>, @guaranteed @callee_guaranteed (@in_guaranteed Transition<τ_0_0>) -> @out Bool) -> Bool // user: %37
  %37 = convert_function %36 : $@callee_guaranteed (@in_guaranteed Transition<T>) -> Bool to $@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T> // user: %38
  %38 = enum $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>, #Optional.some!enumelt, %37 : $@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T> // user: %39
  br bb6(%38 : $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %39
bb5:                                              // Preds: bb3
  %40 = enum $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>, #Optional.none!enumelt // user: %41
  br bb6(%40 : $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %41
// %42                                            // user: %43
bb6(%42 : @owned $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>): // Preds: bb5 bb4
  store %42 to [init] %31 : $*Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>> // id: %43
  debug_value undef : $any Error, var, name "$error", argno 3 // id: %44
  %45 = metatype $@thin Int.Type                  // user: %69
  %46 = alloc_stack $(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // users: %75, %49, %48, %47
  copy_addr %4 to [init] %46 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %47
  %48 = tuple_element_addr %46 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 0 // users: %56, %52
  %49 = tuple_element_addr %46 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 1 // user: %50
  %50 = load [take] %49 : $*Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>> // user: %74
  %51 = alloc_stack $Transition<T>                // users: %73, %55, %54, %52
  copy_addr %48 to [init] %51 : $*Transition<T>   // id: %52
  // function_ref Transition.hashValue.getter
  %53 = function_ref @$s6Finite10TransitionV9hashValueSivg : $@convention(method) <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Int // user: %54
  %54 = apply %53<T>(%51) : $@convention(method) <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Int // user: %69
  destroy_addr %51 : $*Transition<T>              // id: %55
  destroy_addr %48 : $*Transition<T>              // id: %56
  %57 = alloc_stack $(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // users: %72, %60, %59, %58
  copy_addr %25 to [init] %57 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %58
  %59 = tuple_element_addr %57 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 0 // users: %67, %63
  %60 = tuple_element_addr %57 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>), 1 // user: %61
  %61 = load [take] %60 : $*Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>> // user: %71
  %62 = alloc_stack $Transition<T>                // users: %70, %66, %65, %63
  copy_addr %59 to [init] %62 : $*Transition<T>   // id: %63
  // function_ref Transition.hashValue.getter
  %64 = function_ref @$s6Finite10TransitionV9hashValueSivg : $@convention(method) <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Int // user: %65
  %65 = apply %64<T>(%62) : $@convention(method) <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Int // user: %69
  destroy_addr %62 : $*Transition<T>              // id: %66
  destroy_addr %59 : $*Transition<T>              // id: %67
  // function_ref static Int.< infix(_:_:)
  %68 = function_ref @$sSi1loiySbSi_SitFZ : $@convention(method) (Int, Int, @thin Int.Type) -> Bool // user: %69
  %69 = apply %68(%54, %65, %45) : $@convention(method) (Int, Int, @thin Int.Type) -> Bool // user: %82
  dealloc_stack %62 : $*Transition<T>             // id: %70
  destroy_value %61 : $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>> // id: %71
  dealloc_stack %57 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %72
  dealloc_stack %51 : $*Transition<T>             // id: %73
  destroy_value %50 : $Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>> // id: %74
  dealloc_stack %46 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %75
  destroy_addr %25 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %76
  dealloc_stack %25 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %77
  dealloc_stack %23 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>) // id: %78
  destroy_addr %4 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %79
  dealloc_stack %4 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0 where τ_0_0 : Hashable> (@in_guaranteed Transition<τ_0_0>) -> Bool for <T>>) // id: %80
  dealloc_stack %2 : $*(key: Transition<T>, value: Optional<@callee_guaranteed @substituted <τ_0_0, τ_0_1> (@in_guaranteed τ_0_0) -> @out τ_0_1 for <Transition<T>, Bool>>) // id: %81
  return %69 : $Bool                              // id: %82
} // end sil function '$s6Finite9StateFlowV11descriptionSSvgSbAA10TransitionVyxG3key_SbAGcSg5valuet_AgH_AiJttXEfU_'
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Ref.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/StateFlow.swift /Users/admin/builder/spi-builder-workspace/Sources/StateMachine.swift /Users/admin/builder/spi-builder-workspace/Sources/Transition.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Finite.build/StateFlow.d -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Finite.build/StateFlow.swiftdeps -target arm64-apple-macosx10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -debug-info-format=dwarf -dwarf-version=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ModuleCache -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -stats-output-dir .stats -strict-concurrency=complete -empty-abi-descriptor -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -isysroot -Xcc /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -Xcc -F -Xcc /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xcc -fPIC -Xcc -g -module-name Finite -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Finite.build/StateFlow.swift.o -index-store-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/index/store -index-system-modules
1.	Apple Swift version 6.0-dev (LLVM 4b0b1f9e1a69523, Swift 91a3abcf816bc36)
2.	Compiling with effective version 5.10
3.	While evaluating request ASTLoweringRequest(Lowering AST to SIL for file "/Users/admin/builder/spi-builder-workspace/Sources/StateFlow.swift")
4.	While silgen emitFunction SIL function "@$s6Finite9StateFlowV11descriptionSSvg".
 for getter for description (at /Users/admin/builder/spi-builder-workspace/Sources/StateFlow.swift:67:16)
5.	While silgen closureexpr SIL function "@$s6Finite9StateFlowV11descriptionSSvgSbAA10TransitionVyxG3key_SbAGcSg5valuet_AgH_AiJttXEfU_".
 for expression at [/Users/admin/builder/spi-builder-workspace/Sources/StateFlow.swift:68:46 - line:70:9] RangeText="{ (lhs, rhs) -> Bool in
            lhs.key.hashValue < rhs.key.hashValue
        "
6.	While verifying SIL function "@$s6Finite9StateFlowV11descriptionSSvgSbAA10TransitionVyxG3key_SbAGcSg5valuet_AgH_AiJttXEfU_".
 for expression at [/Users/admin/builder/spi-builder-workspace/Sources/StateFlow.swift:68:46 - line:70:9] RangeText="{ (lhs, rhs) -> Bool in
            lhs.key.hashValue < rhs.key.hashValue
        "
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
0  swift-frontend           0x000000010a22bbf0 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) + 56
1  swift-frontend           0x000000010a22a3bc llvm::sys::RunSignalHandlers() + 112
2  swift-frontend           0x000000010a22c238 SignalHandler(int) + 304
3  libsystem_platform.dylib 0x0000000183d91a24 _sigtramp + 56
4  libsystem_pthread.dylib  0x0000000183d61cc0 pthread_kill + 288
5  libsystem_c.dylib        0x0000000183c6da40 abort + 180
6  swift-frontend           0x0000000105d0e7b8 swift::SILOptions::~SILOptions() + 0
7  swift-frontend           0x0000000105d2c938 (anonymous namespace)::SILVerifier::visitSILInstruction(swift::SILInstruction*) + 5536
8  swift-frontend           0x0000000105d1d2b0 swift::SILVisitorBase<(anonymous namespace)::SILVerifier, void>::visitSILBasicBlock(swift::SILBasicBlock*) + 41856
9  swift-frontend           0x0000000105d12e30 (anonymous namespace)::SILVerifier::visitSILBasicBlock(swift::SILBasicBlock*) + 28
10 swift-frontend           0x0000000105d115c8 (anonymous namespace)::SILVerifier::visitSILFunction(swift::SILFunction*) + 10456
11 swift-frontend           0x0000000105d0abb0 swift::SILFunction::verify(swift::CalleeCache*, bool, bool, bool) const + 204
12 swift-frontend           0x00000001053b7ce0 swift::Lowering::SILGenModule::postEmitFunction(swift::SILDeclRef, swift::SILFunction*) + 312
13 swift-frontend           0x00000001053b73f0 swift::Lowering::SILGenModule::emitFunctionDefinition(swift::SILDeclRef, swift::SILFunction*) + 6364
14 swift-frontend           0x00000001053bf578 void llvm::function_ref<void ()>::callback_fn<swift::Lowering::SILGenModule::emitClosure(swift::AbstractClosureExpr*, swift::Lowering::FunctionTypeInfo const&)::$_4>(long) + 220
15 swift-frontend           0x0000000105c8ce10 swift::Lowering::TypeConverter::withClosureTypeInfo(swift::AbstractClosureExpr*, swift::Lowering::FunctionTypeInfo const&, llvm::function_ref<void ()>) + 160
16 swift-frontend           0x00000001053b91a4 swift::Lowering::SILGenModule::emitClosure(swift::AbstractClosureExpr*, swift::Lowering::FunctionTypeInfo const&) + 152
17 swift-frontend           0x000000010543a344 (anonymous namespace)::RValueEmitter::emitClosureReference(swift::AbstractClosureExpr*, swift::Lowering::FunctionTypeInfo const&) + 64
18 swift-frontend           0x0000000105439f88 (anonymous namespace)::RValueEmitter::visitAbstractClosureExpr(swift::AbstractClosureExpr*, swift::Lowering::SGFContext) + 588
19 swift-frontend           0x00000001054229b0 swift::Lowering::SILGenFunction::emitRValueAsSingleValue(swift::Expr*, swift::Lowering::SGFContext) + 56
20 swift-frontend           0x00000001054087d4 swift::Lowering::SILGenFunction::emitConvertedRValue(swift::SILLocation, swift::Lowering::Conversion const&, swift::Lowering::SGFContext, llvm::function_ref<swift::Lowering::ManagedValue (swift::Lowering::SILGenFunction&, swift::SILLocation, swift::Lowering::SGFContext)>) + 296
21 swift-frontend           0x0000000105408be0 swift::Lowering::ConvertingInitialization::tryPeephole(swift::Lowering::SILGenFunction&, swift::SILLocation, swift::Lowering::Conversion, llvm::function_ref<swift::Lowering::ManagedValue (swift::Lowering::SILGenFunction&, swift::SILLocation, swift::Lowering::SGFContext)>) + 772
22 swift-frontend           0x0000000105408750 swift::Lowering::SILGenFunction::emitConvertedRValue(swift::SILLocation, swift::Lowering::Conversion const&, swift::Lowering::SGFContext, llvm::function_ref<swift::Lowering::ManagedValue (swift::Lowering::SILGenFunction&, swift::SILLocation, swift::Lowering::SGFContext)>) + 164
23 swift-frontend           0x00000001054088c8 swift::Lowering::SILGenFunction::emitConvertedRValue(swift::Expr*, swift::Lowering::Conversion const&, swift::Lowering::SGFContext) + 84
24 swift-frontend           0x000000010543361c (anonymous namespace)::RValueEmitter::visitFunctionConversionExpr(swift::FunctionConversionExpr*, swift::Lowering::SGFContext) + 1972
25 swift-frontend           0x00000001054229b0 swift::Lowering::SILGenFunction::emitRValueAsSingleValue(swift::Expr*, swift::Lowering::SGFContext) + 56
26 swift-frontend           0x00000001054087d4 swift::Lowering::SILGenFunction::emitConvertedRValue(swift::SILLocation, swift::Lowering::Conversion const&, swift::Lowering::SGFContext, llvm::function_ref<swift::Lowering::ManagedValue (swift::Lowering::SILGenFunction&, swift::SILLocation, swift::Lowering::SGFContext)>) + 296
27 swift-frontend           0x000000010539e204 swift::Lowering::ArgumentSource::getConverted(swift::Lowering::SILGenFunction&, swift::Lowering::Conversion const&, swift::Lowering::SGFContext) && + 184
28 swift-frontend           0x00000001053d5f80 (anonymous namespace)::ArgEmitter::emit(swift::Lowering::ArgumentSource&&, swift::Lowering::AbstractionPattern, std::__1::optional<swift::AnyFunctionType::Param>) + 3864
29 swift-frontend           0x00000001053c70b0 (anonymous namespace)::ArgEmitter::emitSingleArg(swift::Lowering::ArgumentSource&&, swift::Lowering::AbstractionPattern, std::__1::optional<swift::AnyFunctionType::Param>) + 312
30 swift-frontend           0x00000001053d45b0 (anonymous namespace)::ArgEmitter::emitPreparedArgs(swift::Lowering::PreparedArguments&&, swift::Lowering::AbstractionPattern) + 192
31 swift-frontend           0x00000001053df578 (anonymous namespace)::CallSite::emit(swift::Lowering::SILGenFunction&, swift::Lowering::AbstractionPattern, swift::CanTypeWrapper<swift::SILFunctionType>, (anonymous namespace)::ParamLowering&, llvm::SmallVectorImpl<swift::Lowering::ManagedValue>&, llvm::SmallVectorImpl<(anonymous namespace)::DelayedArgument>&, swift::ForeignInfo const&) && + 532
32 swift-frontend           0x00000001053def40 (anonymous namespace)::CallEmission::emitArgumentsForNormalApply(swift::Lowering::AbstractionPattern, swift::CanTypeWrapper<swift::SILFunctionType>, swift::ForeignInfo const&, llvm::SmallVectorImpl<swift::Lowering::ManagedValue>&, std::__1::optional<swift::SILLocation>&) + 1040
33 swift-frontend           0x00000001053caa04 (anonymous namespace)::CallEmission::apply(swift::Lowering::SGFContext) + 1800
34 swift-frontend           0x00000001053c9098 swift::Lowering::SILGenFunction::emitApplyExpr(swift::ApplyExpr*, swift::Lowering::SGFContext) + 2028
35 swift-frontend           0x00000001054229b0 swift::Lowering::SILGenFunction::emitRValueAsSingleValue(swift::Expr*, swift::Lowering::SGFContext) + 56
36 swift-frontend           0x00000001053d5e48 (anonymous namespace)::ArgEmitter::emit(swift::Lowering::ArgumentSource&&, swift::Lowering::AbstractionPattern, std::__1::optional<swift::AnyFunctionType::Param>) + 3552
37 swift-frontend           0x00000001053c70b0 (anonymous namespace)::ArgEmitter::emitSingleArg(swift::Lowering::ArgumentSource&&, swift::Lowering::AbstractionPattern, std::__1::optional<swift::AnyFunctionType::Param>) + 312
38 swift-frontend           0x00000001053d45b0 (anonymous namespace)::ArgEmitter::emitPreparedArgs(swift::Lowering::PreparedArguments&&, swift::Lowering::AbstractionPattern) + 192
39 swift-frontend           0x00000001053df578 (anonymous namespace)::CallSite::emit(swift::Lowering::SILGenFunction&, swift::Lowering::AbstractionPattern, swift::CanTypeWrapper<swift::SILFunctionType>, (anonymous namespace)::ParamLowering&, llvm::SmallVectorImpl<swift::Lowering::ManagedValue>&, llvm::SmallVectorImpl<(anonymous namespace)::DelayedArgument>&, swift::ForeignInfo const&) && + 532
40 swift-frontend           0x00000001053dee78 (anonymous namespace)::CallEmission::emitArgumentsForNormalApply(swift::Lowering::AbstractionPattern, swift::CanTypeWrapper<swift::SILFunctionType>, swift::ForeignInfo const&, llvm::SmallVectorImpl<swift::Lowering::ManagedValue>&, std::__1::optional<swift::SILLocation>&) + 840
41 swift-frontend           0x00000001053caa04 (anonymous namespace)::CallEmission::apply(swift::Lowering::SGFContext) + 1800
42 swift-frontend           0x00000001053c9098 swift::Lowering::SILGenFunction::emitApplyExpr(swift::ApplyExpr*, swift::Lowering::SGFContext) + 2028
43 swift-frontend           0x0000000105420168 swift::Lowering::SILGenFunction::emitExprInto(swift::Expr*, swift::Lowering::Initialization*, std::__1::optional<swift::SILLocation>) + 156
44 swift-frontend           0x000000010540e2dc swift::Lowering::SILGenFunction::emitPatternBinding(swift::PatternBindingDecl*, unsigned int, bool) + 1304
45 swift-frontend           0x00000001054143c4 swift::ASTVisitor<swift::Lowering::SILGenFunction, void, void, void, void, void, void>::visit(swift::Decl*) + 180
46 swift-frontend           0x00000001054b6294 swift::ASTVisitor<(anonymous namespace)::StmtEmitter, void, void, void, void, void, void>::visit(swift::Stmt*) + 4196
47 swift-frontend           0x00000001054b5224 swift::Lowering::SILGenFunction::emitStmt(swift::Stmt*) + 24
48 swift-frontend           0x0000000105444ef0 swift::Lowering::SILGenFunction::emitFunction(swift::FuncDecl*) + 432
49 swift-frontend           0x00000001053b73c8 swift::Lowering::SILGenModule::emitFunctionDefinition(swift::SILDeclRef, swift::SILFunction*) + 6324
50 swift-frontend           0x00000001053b825c swift::Lowering::SILGenModule::emitOrDelayFunction(swift::SILDeclRef) + 252
51 swift-frontend           0x00000001053b5adc swift::Lowering::SILGenModule::emitFunction(swift::FuncDecl*) + 196
52 swift-frontend           0x00000001054c9f3c (anonymous namespace)::SILGenType::visitFuncDecl(swift::FuncDecl*) + 28
53 swift-frontend           0x000000010645b920 swift::AbstractStorageDecl::visitEmittedAccessors(llvm::function_ref<void (swift::AccessorDecl*)>) const + 104
54 swift-frontend           0x00000001053ba2d4 swift::Lowering::SILGenModule::visitEmittedAccessors(swift::AbstractStorageDecl*, llvm::function_ref<void (swift::AccessorDecl*)>) + 48
55 swift-frontend           0x00000001054ca10c (anonymous namespace)::SILGenType::visitAbstractStorageDecl(swift::AbstractStorageDecl*) + 152
56 swift-frontend           0x00000001054c9f10 (anonymous namespace)::SILGenType::visitVarDecl(swift::VarDecl*) + 140
57 swift-frontend           0x00000001054c6e78 (anonymous namespace)::SILGenType::emitType() + 260
58 swift-frontend           0x00000001054c6d68 swift::Lowering::SILGenModule::visitNominalTypeDecl(swift::NominalTypeDecl*) + 24
59 swift-frontend           0x00000001053bab74 swift::ASTLoweringRequest::evaluate(swift::Evaluator&, swift::ASTLoweringDescriptor) const + 880
60 swift-frontend           0x00000001054b4c7c swift::SimpleRequest<swift::ASTLoweringRequest, std::__1::unique_ptr<swift::SILModule, std::__1::default_delete<swift::SILModule>> (swift::ASTLoweringDescriptor), (swift::RequestFlags)9>::evaluateRequest(swift::ASTLoweringRequest const&, swift::Evaluator&) + 148
61 swift-frontend           0x00000001053c0468 swift::ASTLoweringRequest::OutputType swift::Evaluator::getResultUncached<swift::ASTLoweringRequest, swift::ASTLoweringRequest::OutputType swift::evaluateOrFatal<swift::ASTLoweringRequest>(swift::Evaluator&, swift::ASTLoweringRequest)::'lambda'()>(swift::ASTLoweringRequest const&, swift::ASTLoweringRequest::OutputType swift::evaluateOrFatal<swift::ASTLoweringRequest>(swift::Evaluator&, swift::ASTLoweringRequest)::'lambda'()) + 340
62 swift-frontend           0x00000001053bb478 swift::performASTLowering(swift::FileUnit&, swift::Lowering::TypeConverter&, swift::SILOptions const&, swift::IRGenOptions const*) + 96
63 swift-frontend           0x0000000104da4f00 swift::performCompileStepsPostSema(swift::CompilerInstance&, int&, swift::FrontendObserver*) + 604
64 swift-frontend           0x0000000104db6248 withSemanticAnalysis(swift::CompilerInstance&, swift::FrontendObserver*, llvm::function_ref<bool (swift::CompilerInstance&)>, bool) + 160
65 swift-frontend           0x0000000104da7590 performCompile(swift::CompilerInstance&, int&, swift::FrontendObserver*) + 708
66 swift-frontend           0x0000000104da64fc swift::performFrontend(llvm::ArrayRef<char const*>, char const*, void*, swift::FrontendObserver*) + 2388
67 swift-frontend           0x0000000104bc03b0 swift::mainEntry(int, char const**) + 3096
68 dyld                     0x00000001839e10e0 start + 2360
Fetching https://github.com/jpsim/Yams
Fetching https://github.com/f-meloni/Rocket.git
Fetching https://github.com/JohnSundell/ShellOut.git
Fetching https://github.com/shibapm/Logger
Fetching https://github.com/nicklockwood/SwiftFormat.git
Fetching https://github.com/shibapm/PackageConfig.git
Fetching https://github.com/shibapm/Komondor.git
[1/509] Fetching komondor
[12/625] Fetching komondor, logger
[209/1581] Fetching komondor, logger, shellout
[343/2161] Fetching komondor, logger, shellout, packageconfig
[523/3547] Fetching komondor, logger, shellout, packageconfig, rocket
[764/12884] Fetching komondor, logger, shellout, packageconfig, rocket, yams
[4389/51309] Fetching komondor, logger, shellout, packageconfig, rocket, yams, swiftformat
Fetched https://github.com/jpsim/Yams from cache (2.23s)
Fetched https://github.com/shibapm/Logger from cache (2.23s)
Fetching https://github.com/kareman/SwiftShell
[7274/41856] Fetching komondor, shellout, packageconfig, rocket, swiftformat
[7659/46719] Fetching komondor, shellout, packageconfig, rocket, swiftformat, swiftshell
Fetched https://github.com/kareman/SwiftShell from cache (1.26s)
[9195/41856] Fetching komondor, shellout, packageconfig, rocket, swiftformat
Fetched https://github.com/JohnSundell/ShellOut.git from cache (48.02s)
Fetched https://github.com/shibapm/Komondor.git from cache (48.02s)
Fetched https://github.com/f-meloni/Rocket.git from cache (48.02s)
Fetched https://github.com/nicklockwood/SwiftFormat.git from cache (48.02s)
Computing version for https://github.com/f-meloni/Rocket.git
Fetched https://github.com/shibapm/PackageConfig.git from cache (48.02s)
Computed https://github.com/f-meloni/Rocket.git at 1.0.0 (1.00s)
Computing version for https://github.com/nicklockwood/SwiftFormat.git
Computed https://github.com/nicklockwood/SwiftFormat.git at 0.43.5 (2.63s)
Computing version for https://github.com/shibapm/Komondor.git
Computed https://github.com/shibapm/Komondor.git at 1.0.4 (0.67s)
Computing version for https://github.com/shibapm/PackageConfig.git
Computed https://github.com/shibapm/PackageConfig.git at 0.13.0 (0.66s)
Computing version for https://github.com/kareman/SwiftShell
Computed https://github.com/kareman/SwiftShell at 5.0.1 (0.66s)
Computing version for https://github.com/shibapm/Logger
Computed https://github.com/shibapm/Logger at 0.2.3 (0.67s)
Computing version for https://github.com/jpsim/Yams
Computed https://github.com/jpsim/Yams at 2.0.0 (0.73s)
Computing version for https://github.com/JohnSundell/ShellOut.git
Computed https://github.com/JohnSundell/ShellOut.git at 2.3.0 (0.68s)
Creating working copy for https://github.com/nicklockwood/SwiftFormat.git
Working copy of https://github.com/nicklockwood/SwiftFormat.git resolved at 0.43.5
Creating working copy for https://github.com/shibapm/Komondor.git
Working copy of https://github.com/shibapm/Komondor.git resolved at 1.0.4
Creating working copy for https://github.com/shibapm/Logger
Working copy of https://github.com/shibapm/Logger resolved at 0.2.3
Creating working copy for https://github.com/kareman/SwiftShell
Working copy of https://github.com/kareman/SwiftShell resolved at 5.0.1
Creating working copy for https://github.com/shibapm/PackageConfig.git
Working copy of https://github.com/shibapm/PackageConfig.git resolved at 0.13.0
Creating working copy for https://github.com/JohnSundell/ShellOut.git
Working copy of https://github.com/JohnSundell/ShellOut.git resolved at 2.3.0
Creating working copy for https://github.com/jpsim/Yams
Working copy of https://github.com/jpsim/Yams resolved at 2.0.0
Creating working copy for https://github.com/f-meloni/Rocket.git
Working copy of https://github.com/f-meloni/Rocket.git resolved at 1.0.0
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.