The Swift Package Index logo.Swift Package Index

Build Information

Failed to build BrightFutures, reference master (a4b4cb), with Swift 6.1 for Wasm on 28 May 2025 07:41:35 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Thomvis/BrightFutures.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/Thomvis/BrightFutures
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at a4b4cb2 Update README.md
Cloned https://github.com/Thomvis/BrightFutures.git
Revision (git rev-parse @):
a4b4cb27ef1525739988184dac73a1a462f9d62d
SUCCESS checkout https://github.com/Thomvis/BrightFutures.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/Thomvis/BrightFutures.git
https://github.com/Thomvis/BrightFutures.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "BrightFutures",
  "name" : "BrightFutures",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "BrightFutures",
      "targets" : [
        "BrightFutures"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BrightFuturesTests",
      "module_type" : "SwiftTarget",
      "name" : "BrightFuturesTests",
      "path" : "Tests/BrightFuturesTests",
      "sources" : [
        "BrightFuturesTests.swift",
        "ErrorsTests.swift",
        "ExecutionContextTests.swift",
        "FutureDebugTests.swift",
        "InvalidationTokenTests.swift",
        "NSOperationQueueTests.swift",
        "Number+BrightFutures.swift",
        "PromiseTests.swift",
        "QueueTests.swift",
        "ResultTests.swift",
        "SwiftConcurrencyTests.swift"
      ],
      "target_dependencies" : [
        "BrightFutures"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BrightFutures",
      "module_type" : "SwiftTarget",
      "name" : "BrightFutures",
      "path" : "Sources/BrightFutures",
      "product_memberships" : [
        "BrightFutures"
      ],
      "sources" : [
        "Async.swift",
        "AsyncType+Debug.swift",
        "AsyncType+ResultType.swift",
        "AsyncType.swift",
        "Dispatch+BrightFutures.swift",
        "Errors.swift",
        "ExecutionContext.swift",
        "Future.swift",
        "InvalidationToken.swift",
        "MutableAsyncType+ResultType.swift",
        "MutableAsyncType.swift",
        "NSOperationQueue+BrightFutures.swift",
        "Promise.swift",
        "Result+BrightFutures.swift",
        "ResultProtocol.swift",
        "SequenceType+BrightFutures.swift",
        "SwiftConcurrency+BrightFutures.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/18] Emitting module BrightFutures
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:41:29: error: cannot find 'DispatchQueue' in scope
 39 |     /// to prevent that a callback is added to a completed future and never
 40 |     /// executed or perhaps excecuted twice.
 41 |     fileprivate let queue = DispatchQueue(label: "Internal Async Queue")
    |                             `- error: cannot find 'DispatchQueue' in scope
 42 |
 43 |     /// Upon completion of the future, all callbacks are asynchronously scheduled to their
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:47:50: error: cannot find 'DispatchSemaphore' in scope
 45 |     /// DefaultThreadingModel). Inside the context, this semaphore will be used
 46 |     /// to make sure that all callbacks are executed serially.
 47 |     fileprivate let callbackExecutionSemaphore = DispatchSemaphore(value: 1);
    |                                                  `- error: cannot find 'DispatchSemaphore' in scope
 48 |     fileprivate var callbacks = [CompletionCallback]()
 49 |
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:39:28: error: cannot find type 'DispatchTime' in scope
 37 |     /// Blocks the current thread until the future is completed, but no longer than the given timeout
 38 |     /// If the future did not complete before the timeout, `nil` is returned, otherwise the result of the future is returned
 39 |     func forced(_ timeout: DispatchTime) -> Value? {
    |                            `- error: cannot find type 'DispatchTime' in scope
 40 |         if let result = result {
 41 |             return result
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:59:28: error: cannot find type 'DispatchTimeInterval' in scope
 57 |     /// Will pass the main queue if we are currently on the main thread, or the
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
    |                            `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:25: error: cannot find type 'DispatchQueue' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                         `- error: cannot find type 'DispatchQueue' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:50: error: cannot find type 'DispatchTimeInterval' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:11:18: error: cannot find type 'DispatchQueue' in scope
 9 | import Foundation
10 |
11 | public extension DispatchQueue {
   |                  `- error: cannot find type 'DispatchQueue' in scope
12 |     var context: ExecutionContext {
13 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:44:18: error: cannot find type 'DispatchSemaphore' in scope
42 | }
43 |
44 | public extension DispatchSemaphore {
   |                  `- error: cannot find type 'DispatchSemaphore' in scope
45 |     var context: ExecutionContext {
46 |         return { task in
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:30:12: warning: let 'immediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 | /// Immediately executes the given task. No threading, no semaphores.
30 | public let immediateExecutionContext: ExecutionContext = { task in
   |            |- warning: let 'immediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'immediateExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     task()
32 | }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:35:12: warning: let 'immediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | /// Runs immediately if on the main thread, otherwise asynchronously on the main thread
35 | public let immediateOnMainExecutionContext: ExecutionContext = { task in
   |            |- warning: let 'immediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'immediateOnMainExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     if Thread.isMainThread {
37 |         task()
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:36:8: error: cannot find 'Thread' in scope
34 | /// Runs immediately if on the main thread, otherwise asynchronously on the main thread
35 | public let immediateOnMainExecutionContext: ExecutionContext = { task in
36 |     if Thread.isMainThread {
   |        `- error: cannot find 'Thread' in scope
37 |         task()
38 |     } else {
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:39:9: error: cannot find 'DispatchQueue' in scope
37 |         task()
38 |     } else {
39 |         DispatchQueue.main.async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
40 |     }
41 | }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:44:12: warning: let 'maxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// From https://github.com/BoltsFramework/Bolts-Swift/blob/5fe4df7acb384a93ad93e8595d42e2b431fdc266/Sources/BoltsSwift/Executor.swift#L56
44 | public let maxStackDepthExecutionContext: ExecutionContext = { task in
   |            |- warning: let 'maxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'maxStackDepthExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     struct Static {
46 |         static let taskDepthKey = "nl.thomvis.BrightFutures"
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:50:33: error: cannot find 'Thread' in scope
48 |     }
49 |
50 |     var localThreadDictionary = Thread.current.threadDictionary
   |                                 `- error: cannot find 'Thread' in scope
51 |
52 |     var previousDepth: Int
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:60:9: error: cannot find 'DispatchQueue' in scope
58 |
59 |     if previousDepth > Static.maxTaskDepth {
60 |         DispatchQueue.global().async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
61 |     } else {
62 |         localThreadDictionary[Static.taskDepthKey] = previousDepth + 1
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:77:12: warning: let 'ImmediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
75 | // Deprecations
76 | @available(*, deprecated, renamed: "immediateExecutionContext")
77 | public let ImmediateExecutionContext = immediateExecutionContext
   |            |- warning: let 'ImmediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'ImmediateExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | @available(*, deprecated, renamed: "immediateOnMainExecutionContext")
79 | public let ImmediateOnMainExecutionContext = immediateOnMainExecutionContext
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:79:12: warning: let 'ImmediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
77 | public let ImmediateExecutionContext = immediateExecutionContext
78 | @available(*, deprecated, renamed: "immediateOnMainExecutionContext")
79 | public let ImmediateOnMainExecutionContext = immediateOnMainExecutionContext
   |            |- warning: let 'ImmediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'ImmediateOnMainExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | @available(*, deprecated, renamed: "maxStackDepthExecutionContext")
81 | public let MaxStackDepthExecutionContext = maxStackDepthExecutionContext
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:81:12: warning: let 'MaxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
79 | public let ImmediateOnMainExecutionContext = immediateOnMainExecutionContext
80 | @available(*, deprecated, renamed: "maxStackDepthExecutionContext")
81 | public let MaxStackDepthExecutionContext = maxStackDepthExecutionContext
   |            |- warning: let 'MaxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'MaxStackDepthExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | @available(*, deprecated, renamed: "defaultContext")
83 | public let DefaultThreadingModel = defaultContext
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/NSOperationQueue+BrightFutures.swift:11:18: error: cannot find type 'OperationQueue' in scope
 9 | import Foundation
10 |
11 | public extension OperationQueue {
   |                  `- error: cannot find type 'OperationQueue' in scope
12 |     /// An execution context that operates on the receiver.
13 |     /// Tasks added to the execution context are executed as operations on the queue.
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:28:86: error: cannot find 'DispatchQueue' in scope
 26 |     /// Turns a sequence of T's into an array of `Future<U>`'s by calling the given closure for each element in the sequence.
 27 |     /// If no context is provided, the given closure is executed on `Queue.global`
 28 |     public func traverse<U, E, A: AsyncType>(_ context: @escaping ExecutionContext = DispatchQueue.global().context, f: (Iterator.Element) -> A) -> Future<[U], E> where A.Value: ResultProtocol, A.Value.Value == U, A.Value.Error == E {
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 29 |         return map(f).fold(context, zero: [U]()) { (list: [U], elem: U) -> [U] in
 30 |             return list + [elem]
[4/20] Compiling BrightFutures Result+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[5/20] Compiling BrightFutures ResultProtocol.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[6/20] Compiling BrightFutures SequenceType+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:28:86: error: cannot find 'DispatchQueue' in scope
 26 |     /// Turns a sequence of T's into an array of `Future<U>`'s by calling the given closure for each element in the sequence.
 27 |     /// If no context is provided, the given closure is executed on `Queue.global`
 28 |     public func traverse<U, E, A: AsyncType>(_ context: @escaping ExecutionContext = DispatchQueue.global().context, f: (Iterator.Element) -> A) -> Future<[U], E> where A.Value: ResultProtocol, A.Value.Value == U, A.Value.Error == E {
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 29 |         return map(f).fold(context, zero: [U]()) { (list: [U], elem: U) -> [U] in
 30 |             return list + [elem]
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:41:28: error: cannot find 'DispatchQueue' in scope
 39 |         let res = Async<Iterator.Element.Value>()
 40 |         for fut in self {
 41 |             fut.onComplete(DispatchQueue.global().context) {
    |                            `- error: cannot find 'DispatchQueue' in scope
 42 |                 res.tryComplete($0)
 43 |             }
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:58:21: error: cannot find 'DispatchQueue' in scope
 56 |     /// so we define some functions twice)
 57 |     public func fold<R>(_ zero: R, f: @escaping (R, Iterator.Element.Value.Value) -> R) -> Future<R, Iterator.Element.Value.Error> {
 58 |         return fold(DispatchQueue.global().context, zero: zero, f: f)
    |                     `- error: cannot find 'DispatchQueue' in scope
 59 |     }
 60 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:84:21: error: cannot find 'DispatchQueue' in scope
 82 |     /// See `find<S: SequenceType, T where S.Iterator.Element == Future<T>>(seq: S, context c: ExecutionContext, p: T -> Bool) -> Future<T>`
 83 |     public func find(_ p: @escaping (Iterator.Element.Value.Value) -> Bool) -> Future<Iterator.Element.Value.Value, BrightFuturesError<Iterator.Element.Value.Error>> {
 84 |         return find(DispatchQueue.global().context, p: p)
    |                     `- error: cannot find 'DispatchQueue' in scope
 85 |     }
 86 |
[7/20] Compiling BrightFutures SwiftConcurrency+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:28:86: error: cannot find 'DispatchQueue' in scope
 26 |     /// Turns a sequence of T's into an array of `Future<U>`'s by calling the given closure for each element in the sequence.
 27 |     /// If no context is provided, the given closure is executed on `Queue.global`
 28 |     public func traverse<U, E, A: AsyncType>(_ context: @escaping ExecutionContext = DispatchQueue.global().context, f: (Iterator.Element) -> A) -> Future<[U], E> where A.Value: ResultProtocol, A.Value.Value == U, A.Value.Error == E {
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 29 |         return map(f).fold(context, zero: [U]()) { (list: [U], elem: U) -> [U] in
 30 |             return list + [elem]
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:41:28: error: cannot find 'DispatchQueue' in scope
 39 |         let res = Async<Iterator.Element.Value>()
 40 |         for fut in self {
 41 |             fut.onComplete(DispatchQueue.global().context) {
    |                            `- error: cannot find 'DispatchQueue' in scope
 42 |                 res.tryComplete($0)
 43 |             }
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:58:21: error: cannot find 'DispatchQueue' in scope
 56 |     /// so we define some functions twice)
 57 |     public func fold<R>(_ zero: R, f: @escaping (R, Iterator.Element.Value.Value) -> R) -> Future<R, Iterator.Element.Value.Error> {
 58 |         return fold(DispatchQueue.global().context, zero: zero, f: f)
    |                     `- error: cannot find 'DispatchQueue' in scope
 59 |     }
 60 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:84:21: error: cannot find 'DispatchQueue' in scope
 82 |     /// See `find<S: SequenceType, T where S.Iterator.Element == Future<T>>(seq: S, context c: ExecutionContext, p: T -> Bool) -> Future<T>`
 83 |     public func find(_ p: @escaping (Iterator.Element.Value.Value) -> Bool) -> Future<Iterator.Element.Value.Value, BrightFuturesError<Iterator.Element.Value.Error>> {
 84 |         return find(DispatchQueue.global().context, p: p)
    |                     `- error: cannot find 'DispatchQueue' in scope
 85 |     }
 86 |
[8/20] Compiling BrightFutures MutableAsyncType+ResultType.swift
[9/20] Compiling BrightFutures MutableAsyncType.swift
[10/20] Compiling BrightFutures Future.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:49:52: error: extra argument 'delay' in call
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
 49 |         super.init(result: .success(value), delay: delay)
    |                                                    `- error: extra argument 'delay' in call
 50 |     }
 51 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:53:52: error: extra argument 'delay' in call
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
 53 |         super.init(result: .failure(error), delay: delay)
    |                                                    `- error: extra argument 'delay' in call
 54 |     }
 55 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:61:43: error: extra argument 'delay' in call
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
 61 |         super.init(result: result, delay: delay)
    |                                           `- error: extra argument 'delay' in call
 62 |     }
 63 |
[11/20] Compiling BrightFutures InvalidationToken.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:49:52: error: extra argument 'delay' in call
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
 49 |         super.init(result: .success(value), delay: delay)
    |                                                    `- error: extra argument 'delay' in call
 50 |     }
 51 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:53:52: error: extra argument 'delay' in call
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
 53 |         super.init(result: .failure(error), delay: delay)
    |                                                    `- error: extra argument 'delay' in call
 54 |     }
 55 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:61:43: error: extra argument 'delay' in call
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
 61 |         super.init(result: result, delay: delay)
    |                                           `- error: extra argument 'delay' in call
 62 |     }
 63 |
[12/20] Compiling BrightFutures NSOperationQueue+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/NSOperationQueue+BrightFutures.swift:11:18: error: cannot find type 'OperationQueue' in scope
 9 | import Foundation
10 |
11 | public extension OperationQueue {
   |                  `- error: cannot find type 'OperationQueue' in scope
12 |     /// An execution context that operates on the receiver.
13 |     /// Tasks added to the execution context are executed as operations on the queue.
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[13/20] Compiling BrightFutures Promise.swift
/host/spi-builder-workspace/Sources/BrightFutures/NSOperationQueue+BrightFutures.swift:11:18: error: cannot find type 'OperationQueue' in scope
 9 | import Foundation
10 |
11 | public extension OperationQueue {
   |                  `- error: cannot find type 'OperationQueue' in scope
12 |     /// An execution context that operates on the receiver.
13 |     /// Tasks added to the execution context are executed as operations on the queue.
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[14/20] Compiling BrightFutures AsyncType.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:39:28: error: cannot find type 'DispatchTime' in scope
 37 |     /// Blocks the current thread until the future is completed, but no longer than the given timeout
 38 |     /// If the future did not complete before the timeout, `nil` is returned, otherwise the result of the future is returned
 39 |     func forced(_ timeout: DispatchTime) -> Value? {
    |                            `- error: cannot find type 'DispatchTime' in scope
 40 |         if let result = result {
 41 |             return result
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:59:28: error: cannot find type 'DispatchTimeInterval' in scope
 57 |     /// Will pass the main queue if we are currently on the main thread, or the
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
    |                            `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:25: error: cannot find type 'DispatchQueue' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                         `- error: cannot find type 'DispatchQueue' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:50: error: cannot find type 'DispatchTimeInterval' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:23: error: cannot find 'DispatchTime' in scope
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                       `- error: cannot find 'DispatchTime' in scope
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:36: error: argument passed to call that takes no arguments
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                                    `- error: argument passed to call that takes no arguments
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:50: error: cannot force unwrap value of non-optional type 'Self.Value'
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                                                  `- error: cannot force unwrap value of non-optional type 'Self.Value'
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:44:20: error: cannot find 'DispatchSemaphore' in scope
 42 |         }
 43 |
 44 |         let sema = DispatchSemaphore(value: 0)
    |                    `- error: cannot find 'DispatchSemaphore' in scope
 45 |         var res: Value? = nil
 46 |         onComplete(DispatchQueue.global().context) {
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:46:20: error: cannot find 'DispatchQueue' in scope
 44 |         let sema = DispatchSemaphore(value: 0)
 45 |         var res: Value? = nil
 46 |         onComplete(DispatchQueue.global().context) {
    |                    `- error: cannot find 'DispatchQueue' in scope
 47 |             res = $0
 48 |             sema.signal()
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:60:12: error: cannot find 'Thread' in scope
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
 60 |         if Thread.isMainThread {
    |            `- error: cannot find 'Thread' in scope
 61 |             return delay(DispatchQueue.main, interval: interval)
 62 |         }
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:61:26: error: cannot find 'DispatchQueue' in scope
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
    |                          `- error: cannot find 'DispatchQueue' in scope
 62 |         }
 63 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:64:22: error: cannot find 'DispatchQueue' in scope
 62 |         }
 63 |
 64 |         return delay(DispatchQueue.global(), interval: interval)
    |                      `- error: cannot find 'DispatchQueue' in scope
 65 |     }
 66 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:75:44: error: cannot find 'DispatchTime' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
 75 |                 queue.asyncAfter(deadline: DispatchTime.now() + interval) {
    |                                            `- error: cannot find 'DispatchTime' in scope
 76 |                     complete(result)
 77 |                 }
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:11:18: error: cannot find type 'DispatchQueue' in scope
 9 | import Foundation
10 |
11 | public extension DispatchQueue {
   |                  `- error: cannot find type 'DispatchQueue' in scope
12 |     var context: ExecutionContext {
13 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:44:18: error: cannot find type 'DispatchSemaphore' in scope
42 | }
43 |
44 | public extension DispatchSemaphore {
   |                  `- error: cannot find type 'DispatchSemaphore' in scope
45 |     var context: ExecutionContext {
46 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:34:41: error: cannot find type 'DispatchTime' in scope
32 |     }
33 |
34 |     func asyncValueAfter<T>(_ deadline: DispatchTime, execute: @escaping () -> T) -> Future<T, Never> {
   |                                         `- error: cannot find type 'DispatchTime' in scope
35 |         return Future { completion in
36 |             asyncAfter(deadline: deadline) {
[15/20] Compiling BrightFutures Dispatch+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:39:28: error: cannot find type 'DispatchTime' in scope
 37 |     /// Blocks the current thread until the future is completed, but no longer than the given timeout
 38 |     /// If the future did not complete before the timeout, `nil` is returned, otherwise the result of the future is returned
 39 |     func forced(_ timeout: DispatchTime) -> Value? {
    |                            `- error: cannot find type 'DispatchTime' in scope
 40 |         if let result = result {
 41 |             return result
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:59:28: error: cannot find type 'DispatchTimeInterval' in scope
 57 |     /// Will pass the main queue if we are currently on the main thread, or the
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
    |                            `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:25: error: cannot find type 'DispatchQueue' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                         `- error: cannot find type 'DispatchQueue' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:50: error: cannot find type 'DispatchTimeInterval' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:23: error: cannot find 'DispatchTime' in scope
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                       `- error: cannot find 'DispatchTime' in scope
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:36: error: argument passed to call that takes no arguments
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                                    `- error: argument passed to call that takes no arguments
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:50: error: cannot force unwrap value of non-optional type 'Self.Value'
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                                                  `- error: cannot force unwrap value of non-optional type 'Self.Value'
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:44:20: error: cannot find 'DispatchSemaphore' in scope
 42 |         }
 43 |
 44 |         let sema = DispatchSemaphore(value: 0)
    |                    `- error: cannot find 'DispatchSemaphore' in scope
 45 |         var res: Value? = nil
 46 |         onComplete(DispatchQueue.global().context) {
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:46:20: error: cannot find 'DispatchQueue' in scope
 44 |         let sema = DispatchSemaphore(value: 0)
 45 |         var res: Value? = nil
 46 |         onComplete(DispatchQueue.global().context) {
    |                    `- error: cannot find 'DispatchQueue' in scope
 47 |             res = $0
 48 |             sema.signal()
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:60:12: error: cannot find 'Thread' in scope
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
 60 |         if Thread.isMainThread {
    |            `- error: cannot find 'Thread' in scope
 61 |             return delay(DispatchQueue.main, interval: interval)
 62 |         }
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:61:26: error: cannot find 'DispatchQueue' in scope
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
    |                          `- error: cannot find 'DispatchQueue' in scope
 62 |         }
 63 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:64:22: error: cannot find 'DispatchQueue' in scope
 62 |         }
 63 |
 64 |         return delay(DispatchQueue.global(), interval: interval)
    |                      `- error: cannot find 'DispatchQueue' in scope
 65 |     }
 66 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:75:44: error: cannot find 'DispatchTime' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
 75 |                 queue.asyncAfter(deadline: DispatchTime.now() + interval) {
    |                                            `- error: cannot find 'DispatchTime' in scope
 76 |                     complete(result)
 77 |                 }
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:11:18: error: cannot find type 'DispatchQueue' in scope
 9 | import Foundation
10 |
11 | public extension DispatchQueue {
   |                  `- error: cannot find type 'DispatchQueue' in scope
12 |     var context: ExecutionContext {
13 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:44:18: error: cannot find type 'DispatchSemaphore' in scope
42 | }
43 |
44 | public extension DispatchSemaphore {
   |                  `- error: cannot find type 'DispatchSemaphore' in scope
45 |     var context: ExecutionContext {
46 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:34:41: error: cannot find type 'DispatchTime' in scope
32 |     }
33 |
34 |     func asyncValueAfter<T>(_ deadline: DispatchTime, execute: @escaping () -> T) -> Future<T, Never> {
   |                                         `- error: cannot find type 'DispatchTime' in scope
35 |         return Future { completion in
36 |             asyncAfter(deadline: deadline) {
[16/20] Compiling BrightFutures Errors.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:30:12: warning: let 'immediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 | /// Immediately executes the given task. No threading, no semaphores.
30 | public let immediateExecutionContext: ExecutionContext = { task in
   |            |- warning: let 'immediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'immediateExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     task()
32 | }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:35:12: warning: let 'immediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | /// Runs immediately if on the main thread, otherwise asynchronously on the main thread
35 | public let immediateOnMainExecutionContext: ExecutionContext = { task in
   |            |- warning: let 'immediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'immediateOnMainExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     if Thread.isMainThread {
37 |         task()
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:36:8: error: cannot find 'Thread' in scope
34 | /// Runs immediately if on the main thread, otherwise asynchronously on the main thread
35 | public let immediateOnMainExecutionContext: ExecutionContext = { task in
36 |     if Thread.isMainThread {
   |        `- error: cannot find 'Thread' in scope
37 |         task()
38 |     } else {
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:39:9: error: cannot find 'DispatchQueue' in scope
37 |         task()
38 |     } else {
39 |         DispatchQueue.main.async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
40 |     }
41 | }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:44:12: warning: let 'maxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// From https://github.com/BoltsFramework/Bolts-Swift/blob/5fe4df7acb384a93ad93e8595d42e2b431fdc266/Sources/BoltsSwift/Executor.swift#L56
44 | public let maxStackDepthExecutionContext: ExecutionContext = { task in
   |            |- warning: let 'maxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'maxStackDepthExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     struct Static {
46 |         static let taskDepthKey = "nl.thomvis.BrightFutures"
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:50:33: error: cannot find 'Thread' in scope
48 |     }
49 |
50 |     var localThreadDictionary = Thread.current.threadDictionary
   |                                 `- error: cannot find 'Thread' in scope
51 |
52 |     var previousDepth: Int
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:60:9: error: cannot find 'DispatchQueue' in scope
58 |
59 |     if previousDepth > Static.maxTaskDepth {
60 |         DispatchQueue.global().async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
61 |     } else {
62 |         localThreadDictionary[Static.taskDepthKey] = previousDepth + 1
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:77:12: warning: let 'ImmediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
75 | // Deprecations
76 | @available(*, deprecated, renamed: "immediateExecutionContext")
77 | public let ImmediateExecutionContext = immediateExecutionContext
   |            |- warning: let 'ImmediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'ImmediateExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | @available(*, deprecated, renamed: "immediateOnMainExecutionContext")
79 | public let ImmediateOnMainExecutionContext = immediateOnMainExecutionContext
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:79:12: warning: let 'ImmediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
77 | public let ImmediateExecutionContext = immediateExecutionContext
78 | @available(*, deprecated, renamed: "immediateOnMainExecutionContext")
79 | public let ImmediateOnMainExecutionContext = immediateOnMainExecutionContext
   |            |- warning: let 'ImmediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'ImmediateOnMainExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | @available(*, deprecated, renamed: "maxStackDepthExecutionContext")
81 | public let MaxStackDepthExecutionContext = maxStackDepthExecutionContext
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:81:12: warning: let 'MaxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
79 | public let ImmediateOnMainExecutionContext = immediateOnMainExecutionContext
80 | @available(*, deprecated, renamed: "maxStackDepthExecutionContext")
81 | public let MaxStackDepthExecutionContext = maxStackDepthExecutionContext
   |            |- warning: let 'MaxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'MaxStackDepthExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | @available(*, deprecated, renamed: "defaultContext")
83 | public let DefaultThreadingModel = defaultContext
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:13: error: cannot find 'Thread' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |             `- error: cannot find 'Thread' in scope
73 | }
74 |
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:35: error: cannot find 'DispatchQueue' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |                                   `- error: cannot find 'DispatchQueue' in scope
73 | }
74 |
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:56: error: cannot find 'DispatchQueue' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |                                                        `- error: cannot find 'DispatchQueue' in scope
73 | }
74 |
[17/20] Compiling BrightFutures ExecutionContext.swift
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:30:12: warning: let 'immediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
28 |
29 | /// Immediately executes the given task. No threading, no semaphores.
30 | public let immediateExecutionContext: ExecutionContext = { task in
   |            |- warning: let 'immediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'immediateExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |     task()
32 | }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:35:12: warning: let 'immediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 | /// Runs immediately if on the main thread, otherwise asynchronously on the main thread
35 | public let immediateOnMainExecutionContext: ExecutionContext = { task in
   |            |- warning: let 'immediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'immediateOnMainExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     if Thread.isMainThread {
37 |         task()
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:36:8: error: cannot find 'Thread' in scope
34 | /// Runs immediately if on the main thread, otherwise asynchronously on the main thread
35 | public let immediateOnMainExecutionContext: ExecutionContext = { task in
36 |     if Thread.isMainThread {
   |        `- error: cannot find 'Thread' in scope
37 |         task()
38 |     } else {
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:39:9: error: cannot find 'DispatchQueue' in scope
37 |         task()
38 |     } else {
39 |         DispatchQueue.main.async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
40 |     }
41 | }
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:44:12: warning: let 'maxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
42 |
43 | /// From https://github.com/BoltsFramework/Bolts-Swift/blob/5fe4df7acb384a93ad93e8595d42e2b431fdc266/Sources/BoltsSwift/Executor.swift#L56
44 | public let maxStackDepthExecutionContext: ExecutionContext = { task in
   |            |- warning: let 'maxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'maxStackDepthExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |     struct Static {
46 |         static let taskDepthKey = "nl.thomvis.BrightFutures"
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:50:33: error: cannot find 'Thread' in scope
48 |     }
49 |
50 |     var localThreadDictionary = Thread.current.threadDictionary
   |                                 `- error: cannot find 'Thread' in scope
51 |
52 |     var previousDepth: Int
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:60:9: error: cannot find 'DispatchQueue' in scope
58 |
59 |     if previousDepth > Static.maxTaskDepth {
60 |         DispatchQueue.global().async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
61 |     } else {
62 |         localThreadDictionary[Static.taskDepthKey] = previousDepth + 1
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:77:12: warning: let 'ImmediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
75 | // Deprecations
76 | @available(*, deprecated, renamed: "immediateExecutionContext")
77 | public let ImmediateExecutionContext = immediateExecutionContext
   |            |- warning: let 'ImmediateExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'ImmediateExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 | @available(*, deprecated, renamed: "immediateOnMainExecutionContext")
79 | public let ImmediateOnMainExecutionContext = immediateOnMainExecutionContext
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:79:12: warning: let 'ImmediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
77 | public let ImmediateExecutionContext = immediateExecutionContext
78 | @available(*, deprecated, renamed: "immediateOnMainExecutionContext")
79 | public let ImmediateOnMainExecutionContext = immediateOnMainExecutionContext
   |            |- warning: let 'ImmediateOnMainExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'ImmediateOnMainExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | @available(*, deprecated, renamed: "maxStackDepthExecutionContext")
81 | public let MaxStackDepthExecutionContext = maxStackDepthExecutionContext
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:81:12: warning: let 'MaxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
79 | public let ImmediateOnMainExecutionContext = immediateOnMainExecutionContext
80 | @available(*, deprecated, renamed: "maxStackDepthExecutionContext")
81 | public let MaxStackDepthExecutionContext = maxStackDepthExecutionContext
   |            |- warning: let 'MaxStackDepthExecutionContext' is not concurrency-safe because non-'Sendable' type 'ExecutionContext' (aka '(@escaping () -> ()) -> ()') may have shared mutable state; this is an error in the Swift 6 language mode
   |            |- note: add '@MainActor' to make let 'MaxStackDepthExecutionContext' part of global actor 'MainActor'
   |            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
82 | @available(*, deprecated, renamed: "defaultContext")
83 | public let DefaultThreadingModel = defaultContext
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:13: error: cannot find 'Thread' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |             `- error: cannot find 'Thread' in scope
73 | }
74 |
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:35: error: cannot find 'DispatchQueue' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |                                   `- error: cannot find 'DispatchQueue' in scope
73 | }
74 |
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:56: error: cannot find 'DispatchQueue' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |                                                        `- error: cannot find 'DispatchQueue' in scope
73 | }
74 |
[18/20] Compiling BrightFutures Async.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:41:29: error: cannot find 'DispatchQueue' in scope
 39 |     /// to prevent that a callback is added to a completed future and never
 40 |     /// executed or perhaps excecuted twice.
 41 |     fileprivate let queue = DispatchQueue(label: "Internal Async Queue")
    |                             `- error: cannot find 'DispatchQueue' in scope
 42 |
 43 |     /// Upon completion of the future, all callbacks are asynchronously scheduled to their
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:47:50: error: cannot find 'DispatchSemaphore' in scope
 45 |     /// DefaultThreadingModel). Inside the context, this semaphore will be used
 46 |     /// to make sure that all callbacks are executed serially.
 47 |     fileprivate let callbackExecutionSemaphore = DispatchSemaphore(value: 1);
    |                                                  `- error: cannot find 'DispatchSemaphore' in scope
 48 |     fileprivate var callbacks = [CompletionCallback]()
 49 |
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:9: error: cannot find 'DispatchQueue' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |         `- error: cannot find 'DispatchQueue' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:53: error: cannot find 'DispatchTime' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |                                                     `- error: cannot find 'DispatchTime' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[19/20] Compiling BrightFutures AsyncType+Debug.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:41:29: error: cannot find 'DispatchQueue' in scope
 39 |     /// to prevent that a callback is added to a completed future and never
 40 |     /// executed or perhaps excecuted twice.
 41 |     fileprivate let queue = DispatchQueue(label: "Internal Async Queue")
    |                             `- error: cannot find 'DispatchQueue' in scope
 42 |
 43 |     /// Upon completion of the future, all callbacks are asynchronously scheduled to their
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:47:50: error: cannot find 'DispatchSemaphore' in scope
 45 |     /// DefaultThreadingModel). Inside the context, this semaphore will be used
 46 |     /// to make sure that all callbacks are executed serially.
 47 |     fileprivate let callbackExecutionSemaphore = DispatchSemaphore(value: 1);
    |                                                  `- error: cannot find 'DispatchSemaphore' in scope
 48 |     fileprivate var callbacks = [CompletionCallback]()
 49 |
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:9: error: cannot find 'DispatchQueue' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |         `- error: cannot find 'DispatchQueue' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:53: error: cannot find 'DispatchTime' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |                                                     `- error: cannot find 'DispatchTime' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[20/20] Compiling BrightFutures AsyncType+ResultType.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:41:29: error: cannot find 'DispatchQueue' in scope
 39 |     /// to prevent that a callback is added to a completed future and never
 40 |     /// executed or perhaps excecuted twice.
 41 |     fileprivate let queue = DispatchQueue(label: "Internal Async Queue")
    |                             `- error: cannot find 'DispatchQueue' in scope
 42 |
 43 |     /// Upon completion of the future, all callbacks are asynchronously scheduled to their
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:47:50: error: cannot find 'DispatchSemaphore' in scope
 45 |     /// DefaultThreadingModel). Inside the context, this semaphore will be used
 46 |     /// to make sure that all callbacks are executed serially.
 47 |     fileprivate let callbackExecutionSemaphore = DispatchSemaphore(value: 1);
    |                                                  `- error: cannot find 'DispatchSemaphore' in scope
 48 |     fileprivate var callbacks = [CompletionCallback]()
 49 |
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:9: error: cannot find 'DispatchQueue' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |         `- error: cannot find 'DispatchQueue' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:53: error: cannot find 'DispatchTime' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |                                                     `- error: cannot find 'DispatchTime' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/17] Emitting module BrightFutures
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:41:29: error: cannot find 'DispatchQueue' in scope
 39 |     /// to prevent that a callback is added to a completed future and never
 40 |     /// executed or perhaps excecuted twice.
 41 |     fileprivate let queue = DispatchQueue(label: "Internal Async Queue")
    |                             `- error: cannot find 'DispatchQueue' in scope
 42 |
 43 |     /// Upon completion of the future, all callbacks are asynchronously scheduled to their
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:47:50: error: cannot find 'DispatchSemaphore' in scope
 45 |     /// DefaultThreadingModel). Inside the context, this semaphore will be used
 46 |     /// to make sure that all callbacks are executed serially.
 47 |     fileprivate let callbackExecutionSemaphore = DispatchSemaphore(value: 1);
    |                                                  `- error: cannot find 'DispatchSemaphore' in scope
 48 |     fileprivate var callbacks = [CompletionCallback]()
 49 |
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:39:28: error: cannot find type 'DispatchTime' in scope
 37 |     /// Blocks the current thread until the future is completed, but no longer than the given timeout
 38 |     /// If the future did not complete before the timeout, `nil` is returned, otherwise the result of the future is returned
 39 |     func forced(_ timeout: DispatchTime) -> Value? {
    |                            `- error: cannot find type 'DispatchTime' in scope
 40 |         if let result = result {
 41 |             return result
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:59:28: error: cannot find type 'DispatchTimeInterval' in scope
 57 |     /// Will pass the main queue if we are currently on the main thread, or the
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
    |                            `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:25: error: cannot find type 'DispatchQueue' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                         `- error: cannot find type 'DispatchQueue' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:50: error: cannot find type 'DispatchTimeInterval' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:11:18: error: cannot find type 'DispatchQueue' in scope
 9 | import Foundation
10 |
11 | public extension DispatchQueue {
   |                  `- error: cannot find type 'DispatchQueue' in scope
12 |     var context: ExecutionContext {
13 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:44:18: error: cannot find type 'DispatchSemaphore' in scope
42 | }
43 |
44 | public extension DispatchSemaphore {
   |                  `- error: cannot find type 'DispatchSemaphore' in scope
45 |     var context: ExecutionContext {
46 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:36:8: error: cannot find 'Thread' in scope
34 | /// Runs immediately if on the main thread, otherwise asynchronously on the main thread
35 | public let immediateOnMainExecutionContext: ExecutionContext = { task in
36 |     if Thread.isMainThread {
   |        `- error: cannot find 'Thread' in scope
37 |         task()
38 |     } else {
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:39:9: error: cannot find 'DispatchQueue' in scope
37 |         task()
38 |     } else {
39 |         DispatchQueue.main.async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
40 |     }
41 | }
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:50:33: error: cannot find 'Thread' in scope
48 |     }
49 |
50 |     var localThreadDictionary = Thread.current.threadDictionary
   |                                 `- error: cannot find 'Thread' in scope
51 |
52 |     var previousDepth: Int
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:60:9: error: cannot find 'DispatchQueue' in scope
58 |
59 |     if previousDepth > Static.maxTaskDepth {
60 |         DispatchQueue.global().async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
61 |     } else {
62 |         localThreadDictionary[Static.taskDepthKey] = previousDepth + 1
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/NSOperationQueue+BrightFutures.swift:11:18: error: cannot find type 'OperationQueue' in scope
 9 | import Foundation
10 |
11 | public extension OperationQueue {
   |                  `- error: cannot find type 'OperationQueue' in scope
12 |     /// An execution context that operates on the receiver.
13 |     /// Tasks added to the execution context are executed as operations on the queue.
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:28:86: error: cannot find 'DispatchQueue' in scope
 26 |     /// Turns a sequence of T's into an array of `Future<U>`'s by calling the given closure for each element in the sequence.
 27 |     /// If no context is provided, the given closure is executed on `Queue.global`
 28 |     public func traverse<U, E, A: AsyncType>(_ context: @escaping ExecutionContext = DispatchQueue.global().context, f: (Iterator.Element) -> A) -> Future<[U], E> where A.Value: ResultProtocol, A.Value.Value == U, A.Value.Error == E {
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 29 |         return map(f).fold(context, zero: [U]()) { (list: [U], elem: U) -> [U] in
 30 |             return list + [elem]
[3/19] Compiling BrightFutures MutableAsyncType+ResultType.swift
[4/19] Compiling BrightFutures MutableAsyncType.swift
[5/19] Compiling BrightFutures Async.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:41:29: error: cannot find 'DispatchQueue' in scope
 39 |     /// to prevent that a callback is added to a completed future and never
 40 |     /// executed or perhaps excecuted twice.
 41 |     fileprivate let queue = DispatchQueue(label: "Internal Async Queue")
    |                             `- error: cannot find 'DispatchQueue' in scope
 42 |
 43 |     /// Upon completion of the future, all callbacks are asynchronously scheduled to their
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:47:50: error: cannot find 'DispatchSemaphore' in scope
 45 |     /// DefaultThreadingModel). Inside the context, this semaphore will be used
 46 |     /// to make sure that all callbacks are executed serially.
 47 |     fileprivate let callbackExecutionSemaphore = DispatchSemaphore(value: 1);
    |                                                  `- error: cannot find 'DispatchSemaphore' in scope
 48 |     fileprivate var callbacks = [CompletionCallback]()
 49 |
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:9: error: cannot find 'DispatchQueue' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |         `- error: cannot find 'DispatchQueue' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:53: error: cannot find 'DispatchTime' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |                                                     `- error: cannot find 'DispatchTime' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[6/19] Compiling BrightFutures AsyncType+Debug.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:41:29: error: cannot find 'DispatchQueue' in scope
 39 |     /// to prevent that a callback is added to a completed future and never
 40 |     /// executed or perhaps excecuted twice.
 41 |     fileprivate let queue = DispatchQueue(label: "Internal Async Queue")
    |                             `- error: cannot find 'DispatchQueue' in scope
 42 |
 43 |     /// Upon completion of the future, all callbacks are asynchronously scheduled to their
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:47:50: error: cannot find 'DispatchSemaphore' in scope
 45 |     /// DefaultThreadingModel). Inside the context, this semaphore will be used
 46 |     /// to make sure that all callbacks are executed serially.
 47 |     fileprivate let callbackExecutionSemaphore = DispatchSemaphore(value: 1);
    |                                                  `- error: cannot find 'DispatchSemaphore' in scope
 48 |     fileprivate var callbacks = [CompletionCallback]()
 49 |
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:9: error: cannot find 'DispatchQueue' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |         `- error: cannot find 'DispatchQueue' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:53: error: cannot find 'DispatchTime' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |                                                     `- error: cannot find 'DispatchTime' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[7/19] Compiling BrightFutures AsyncType+ResultType.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:41:29: error: cannot find 'DispatchQueue' in scope
 39 |     /// to prevent that a callback is added to a completed future and never
 40 |     /// executed or perhaps excecuted twice.
 41 |     fileprivate let queue = DispatchQueue(label: "Internal Async Queue")
    |                             `- error: cannot find 'DispatchQueue' in scope
 42 |
 43 |     /// Upon completion of the future, all callbacks are asynchronously scheduled to their
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:47:50: error: cannot find 'DispatchSemaphore' in scope
 45 |     /// DefaultThreadingModel). Inside the context, this semaphore will be used
 46 |     /// to make sure that all callbacks are executed serially.
 47 |     fileprivate let callbackExecutionSemaphore = DispatchSemaphore(value: 1);
    |                                                  `- error: cannot find 'DispatchSemaphore' in scope
 48 |     fileprivate var callbacks = [CompletionCallback]()
 49 |
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:9: error: cannot find 'DispatchQueue' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |         `- error: cannot find 'DispatchQueue' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:62:53: error: cannot find 'DispatchTime' in scope
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
    |                                                     `- error: cannot find 'DispatchTime' in scope
 63 |             self.complete(result)
 64 |         }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[8/19] Compiling BrightFutures NSOperationQueue+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/NSOperationQueue+BrightFutures.swift:11:18: error: cannot find type 'OperationQueue' in scope
 9 | import Foundation
10 |
11 | public extension OperationQueue {
   |                  `- error: cannot find type 'OperationQueue' in scope
12 |     /// An execution context that operates on the receiver.
13 |     /// Tasks added to the execution context are executed as operations on the queue.
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[9/19] Compiling BrightFutures Promise.swift
/host/spi-builder-workspace/Sources/BrightFutures/NSOperationQueue+BrightFutures.swift:11:18: error: cannot find type 'OperationQueue' in scope
 9 | import Foundation
10 |
11 | public extension OperationQueue {
   |                  `- error: cannot find type 'OperationQueue' in scope
12 |     /// An execution context that operates on the receiver.
13 |     /// Tasks added to the execution context are executed as operations on the queue.
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[10/19] Compiling BrightFutures Errors.swift
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:36:8: error: cannot find 'Thread' in scope
34 | /// Runs immediately if on the main thread, otherwise asynchronously on the main thread
35 | public let immediateOnMainExecutionContext: ExecutionContext = { task in
36 |     if Thread.isMainThread {
   |        `- error: cannot find 'Thread' in scope
37 |         task()
38 |     } else {
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:39:9: error: cannot find 'DispatchQueue' in scope
37 |         task()
38 |     } else {
39 |         DispatchQueue.main.async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
40 |     }
41 | }
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:50:33: error: cannot find 'Thread' in scope
48 |     }
49 |
50 |     var localThreadDictionary = Thread.current.threadDictionary
   |                                 `- error: cannot find 'Thread' in scope
51 |
52 |     var previousDepth: Int
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:60:9: error: cannot find 'DispatchQueue' in scope
58 |
59 |     if previousDepth > Static.maxTaskDepth {
60 |         DispatchQueue.global().async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
61 |     } else {
62 |         localThreadDictionary[Static.taskDepthKey] = previousDepth + 1
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:13: error: cannot find 'Thread' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |             `- error: cannot find 'Thread' in scope
73 | }
74 |
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:35: error: cannot find 'DispatchQueue' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |                                   `- error: cannot find 'DispatchQueue' in scope
73 | }
74 |
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:56: error: cannot find 'DispatchQueue' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |                                                        `- error: cannot find 'DispatchQueue' in scope
73 | }
74 |
[11/19] Compiling BrightFutures ExecutionContext.swift
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:36:8: error: cannot find 'Thread' in scope
34 | /// Runs immediately if on the main thread, otherwise asynchronously on the main thread
35 | public let immediateOnMainExecutionContext: ExecutionContext = { task in
36 |     if Thread.isMainThread {
   |        `- error: cannot find 'Thread' in scope
37 |         task()
38 |     } else {
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:39:9: error: cannot find 'DispatchQueue' in scope
37 |         task()
38 |     } else {
39 |         DispatchQueue.main.async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
40 |     }
41 | }
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:50:33: error: cannot find 'Thread' in scope
48 |     }
49 |
50 |     var localThreadDictionary = Thread.current.threadDictionary
   |                                 `- error: cannot find 'Thread' in scope
51 |
52 |     var previousDepth: Int
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:60:9: error: cannot find 'DispatchQueue' in scope
58 |
59 |     if previousDepth > Static.maxTaskDepth {
60 |         DispatchQueue.global().async(execute: task)
   |         `- error: cannot find 'DispatchQueue' in scope
61 |     } else {
62 |         localThreadDictionary[Static.taskDepthKey] = previousDepth + 1
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:13: error: cannot find 'Thread' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |             `- error: cannot find 'Thread' in scope
73 | }
74 |
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:35: error: cannot find 'DispatchQueue' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |                                   `- error: cannot find 'DispatchQueue' in scope
73 | }
74 |
/host/spi-builder-workspace/Sources/BrightFutures/ExecutionContext.swift:72:56: error: cannot find 'DispatchQueue' in scope
70 | /// - if off the main thread, `DispatchQueue.global().context` is returned
71 | public func defaultContext() -> ExecutionContext {
72 |     return (Thread.isMainThread ? DispatchQueue.main : DispatchQueue.global()).context
   |                                                        `- error: cannot find 'DispatchQueue' in scope
73 | }
74 |
[12/19] Compiling BrightFutures Future.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:49:52: error: extra argument 'delay' in call
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
 49 |         super.init(result: .success(value), delay: delay)
    |                                                    `- error: extra argument 'delay' in call
 50 |     }
 51 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:53:52: error: extra argument 'delay' in call
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
 53 |         super.init(result: .failure(error), delay: delay)
    |                                                    `- error: extra argument 'delay' in call
 54 |     }
 55 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:61:43: error: extra argument 'delay' in call
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
 61 |         super.init(result: result, delay: delay)
    |                                           `- error: extra argument 'delay' in call
 62 |     }
 63 |
[13/19] Compiling BrightFutures InvalidationToken.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:49:52: error: extra argument 'delay' in call
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
 49 |         super.init(result: .success(value), delay: delay)
    |                                                    `- error: extra argument 'delay' in call
 50 |     }
 51 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:53:52: error: extra argument 'delay' in call
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
 53 |         super.init(result: .failure(error), delay: delay)
    |                                                    `- error: extra argument 'delay' in call
 54 |     }
 55 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:61:43: error: extra argument 'delay' in call
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
 61 |         super.init(result: result, delay: delay)
    |                                           `- error: extra argument 'delay' in call
 62 |     }
 63 |
[14/19] Compiling BrightFutures Result+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[15/19] Compiling BrightFutures ResultProtocol.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
[16/19] Compiling BrightFutures AsyncType.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:39:28: error: cannot find type 'DispatchTime' in scope
 37 |     /// Blocks the current thread until the future is completed, but no longer than the given timeout
 38 |     /// If the future did not complete before the timeout, `nil` is returned, otherwise the result of the future is returned
 39 |     func forced(_ timeout: DispatchTime) -> Value? {
    |                            `- error: cannot find type 'DispatchTime' in scope
 40 |         if let result = result {
 41 |             return result
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:59:28: error: cannot find type 'DispatchTimeInterval' in scope
 57 |     /// Will pass the main queue if we are currently on the main thread, or the
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
    |                            `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:25: error: cannot find type 'DispatchQueue' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                         `- error: cannot find type 'DispatchQueue' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:50: error: cannot find type 'DispatchTimeInterval' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:23: error: cannot find 'DispatchTime' in scope
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                       `- error: cannot find 'DispatchTime' in scope
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:36: error: argument passed to call that takes no arguments
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                                    `- error: argument passed to call that takes no arguments
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:50: error: cannot force unwrap value of non-optional type 'Self.Value'
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                                                  `- error: cannot force unwrap value of non-optional type 'Self.Value'
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:44:20: error: cannot find 'DispatchSemaphore' in scope
 42 |         }
 43 |
 44 |         let sema = DispatchSemaphore(value: 0)
    |                    `- error: cannot find 'DispatchSemaphore' in scope
 45 |         var res: Value? = nil
 46 |         onComplete(DispatchQueue.global().context) {
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:46:20: error: cannot find 'DispatchQueue' in scope
 44 |         let sema = DispatchSemaphore(value: 0)
 45 |         var res: Value? = nil
 46 |         onComplete(DispatchQueue.global().context) {
    |                    `- error: cannot find 'DispatchQueue' in scope
 47 |             res = $0
 48 |             sema.signal()
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:60:12: error: cannot find 'Thread' in scope
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
 60 |         if Thread.isMainThread {
    |            `- error: cannot find 'Thread' in scope
 61 |             return delay(DispatchQueue.main, interval: interval)
 62 |         }
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:61:26: error: cannot find 'DispatchQueue' in scope
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
    |                          `- error: cannot find 'DispatchQueue' in scope
 62 |         }
 63 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:64:22: error: cannot find 'DispatchQueue' in scope
 62 |         }
 63 |
 64 |         return delay(DispatchQueue.global(), interval: interval)
    |                      `- error: cannot find 'DispatchQueue' in scope
 65 |     }
 66 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:75:44: error: cannot find 'DispatchTime' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
 75 |                 queue.asyncAfter(deadline: DispatchTime.now() + interval) {
    |                                            `- error: cannot find 'DispatchTime' in scope
 76 |                     complete(result)
 77 |                 }
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:11:18: error: cannot find type 'DispatchQueue' in scope
 9 | import Foundation
10 |
11 | public extension DispatchQueue {
   |                  `- error: cannot find type 'DispatchQueue' in scope
12 |     var context: ExecutionContext {
13 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:44:18: error: cannot find type 'DispatchSemaphore' in scope
42 | }
43 |
44 | public extension DispatchSemaphore {
   |                  `- error: cannot find type 'DispatchSemaphore' in scope
45 |     var context: ExecutionContext {
46 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:34:41: error: cannot find type 'DispatchTime' in scope
32 |     }
33 |
34 |     func asyncValueAfter<T>(_ deadline: DispatchTime, execute: @escaping () -> T) -> Future<T, Never> {
   |                                         `- error: cannot find type 'DispatchTime' in scope
35 |         return Future { completion in
36 |             asyncAfter(deadline: deadline) {
[17/19] Compiling BrightFutures Dispatch+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:39:28: error: cannot find type 'DispatchTime' in scope
 37 |     /// Blocks the current thread until the future is completed, but no longer than the given timeout
 38 |     /// If the future did not complete before the timeout, `nil` is returned, otherwise the result of the future is returned
 39 |     func forced(_ timeout: DispatchTime) -> Value? {
    |                            `- error: cannot find type 'DispatchTime' in scope
 40 |         if let result = result {
 41 |             return result
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:59:28: error: cannot find type 'DispatchTimeInterval' in scope
 57 |     /// Will pass the main queue if we are currently on the main thread, or the
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
    |                            `- error: cannot find type 'DispatchTimeInterval' in scope
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:25: error: cannot find type 'DispatchQueue' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                         `- error: cannot find type 'DispatchQueue' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:72:50: error: cannot find type 'DispatchTimeInterval' in scope
 70 |     /// If you want a delay of 0 to mean 'delay until next runloop', you will want to pass the main
 71 |     /// queue.
 72 |     func delay(_ queue: DispatchQueue, interval: DispatchTimeInterval) -> Self {
    |                                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:23: error: cannot find 'DispatchTime' in scope
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                       `- error: cannot find 'DispatchTime' in scope
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:36: error: argument passed to call that takes no arguments
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                                    `- error: argument passed to call that takes no arguments
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:34:50: error: cannot force unwrap value of non-optional type 'Self.Value'
 32 |     /// Blocks the current thread until the future is completed and then returns the result
 33 |     func forced() -> Value {
 34 |         return forced(DispatchTime.distantFuture)!
    |                                                  `- error: cannot force unwrap value of non-optional type 'Self.Value'
 35 |     }
 36 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:44:20: error: cannot find 'DispatchSemaphore' in scope
 42 |         }
 43 |
 44 |         let sema = DispatchSemaphore(value: 0)
    |                    `- error: cannot find 'DispatchSemaphore' in scope
 45 |         var res: Value? = nil
 46 |         onComplete(DispatchQueue.global().context) {
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:46:20: error: cannot find 'DispatchQueue' in scope
 44 |         let sema = DispatchSemaphore(value: 0)
 45 |         var res: Value? = nil
 46 |         onComplete(DispatchQueue.global().context) {
    |                    `- error: cannot find 'DispatchQueue' in scope
 47 |             res = $0
 48 |             sema.signal()
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:60:12: error: cannot find 'Thread' in scope
 58 |     /// global queue otherwise
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
 60 |         if Thread.isMainThread {
    |            `- error: cannot find 'Thread' in scope
 61 |             return delay(DispatchQueue.main, interval: interval)
 62 |         }
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:61:26: error: cannot find 'DispatchQueue' in scope
 59 |     func delay(_ interval: DispatchTimeInterval) -> Self {
 60 |         if Thread.isMainThread {
 61 |             return delay(DispatchQueue.main, interval: interval)
    |                          `- error: cannot find 'DispatchQueue' in scope
 62 |         }
 63 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:64:22: error: cannot find 'DispatchQueue' in scope
 62 |         }
 63 |
 64 |         return delay(DispatchQueue.global(), interval: interval)
    |                      `- error: cannot find 'DispatchQueue' in scope
 65 |     }
 66 |
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:75:44: error: cannot find 'DispatchTime' in scope
 73 |         return Self { complete in
 74 |             onComplete(immediateExecutionContext) { result in
 75 |                 queue.asyncAfter(deadline: DispatchTime.now() + interval) {
    |                                            `- error: cannot find 'DispatchTime' in scope
 76 |                     complete(result)
 77 |                 }
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:11:18: error: cannot find type 'DispatchQueue' in scope
 9 | import Foundation
10 |
11 | public extension DispatchQueue {
   |                  `- error: cannot find type 'DispatchQueue' in scope
12 |     var context: ExecutionContext {
13 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:44:18: error: cannot find type 'DispatchSemaphore' in scope
42 | }
43 |
44 | public extension DispatchSemaphore {
   |                  `- error: cannot find type 'DispatchSemaphore' in scope
45 |     var context: ExecutionContext {
46 |         return { task in
/host/spi-builder-workspace/Sources/BrightFutures/Dispatch+BrightFutures.swift:34:41: error: cannot find type 'DispatchTime' in scope
32 |     }
33 |
34 |     func asyncValueAfter<T>(_ deadline: DispatchTime, execute: @escaping () -> T) -> Future<T, Never> {
   |                                         `- error: cannot find type 'DispatchTime' in scope
35 |         return Future { completion in
36 |             asyncAfter(deadline: deadline) {
[18/19] Compiling BrightFutures SequenceType+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:28:86: error: cannot find 'DispatchQueue' in scope
 26 |     /// Turns a sequence of T's into an array of `Future<U>`'s by calling the given closure for each element in the sequence.
 27 |     /// If no context is provided, the given closure is executed on `Queue.global`
 28 |     public func traverse<U, E, A: AsyncType>(_ context: @escaping ExecutionContext = DispatchQueue.global().context, f: (Iterator.Element) -> A) -> Future<[U], E> where A.Value: ResultProtocol, A.Value.Value == U, A.Value.Error == E {
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 29 |         return map(f).fold(context, zero: [U]()) { (list: [U], elem: U) -> [U] in
 30 |             return list + [elem]
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:41:28: error: cannot find 'DispatchQueue' in scope
 39 |         let res = Async<Iterator.Element.Value>()
 40 |         for fut in self {
 41 |             fut.onComplete(DispatchQueue.global().context) {
    |                            `- error: cannot find 'DispatchQueue' in scope
 42 |                 res.tryComplete($0)
 43 |             }
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:58:21: error: cannot find 'DispatchQueue' in scope
 56 |     /// so we define some functions twice)
 57 |     public func fold<R>(_ zero: R, f: @escaping (R, Iterator.Element.Value.Value) -> R) -> Future<R, Iterator.Element.Value.Error> {
 58 |         return fold(DispatchQueue.global().context, zero: zero, f: f)
    |                     `- error: cannot find 'DispatchQueue' in scope
 59 |     }
 60 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:84:21: error: cannot find 'DispatchQueue' in scope
 82 |     /// See `find<S: SequenceType, T where S.Iterator.Element == Future<T>>(seq: S, context c: ExecutionContext, p: T -> Bool) -> Future<T>`
 83 |     public func find(_ p: @escaping (Iterator.Element.Value.Value) -> Bool) -> Future<Iterator.Element.Value.Value, BrightFuturesError<Iterator.Element.Value.Error>> {
 84 |         return find(DispatchQueue.global().context, p: p)
    |                     `- error: cannot find 'DispatchQueue' in scope
 85 |     }
 86 |
[19/19] Compiling BrightFutures SwiftConcurrency+BrightFutures.swift
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:28:86: error: cannot find 'DispatchQueue' in scope
 26 |     /// Turns a sequence of T's into an array of `Future<U>`'s by calling the given closure for each element in the sequence.
 27 |     /// If no context is provided, the given closure is executed on `Queue.global`
 28 |     public func traverse<U, E, A: AsyncType>(_ context: @escaping ExecutionContext = DispatchQueue.global().context, f: (Iterator.Element) -> A) -> Future<[U], E> where A.Value: ResultProtocol, A.Value.Value == U, A.Value.Error == E {
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 29 |         return map(f).fold(context, zero: [U]()) { (list: [U], elem: U) -> [U] in
 30 |             return list + [elem]
/host/spi-builder-workspace/Sources/BrightFutures/AsyncType.swift:18:32: error: cannot find type 'DispatchTimeInterval' in scope
 16 |     init()
 17 |     init(result: Value)
 18 |     init(result: Value, delay: DispatchTimeInterval)
    |                                `- error: cannot find type 'DispatchTimeInterval' in scope
 19 |     init<A: AsyncType>(other: A) where A.Value == Value
 20 |     init(resolver: (_ result: @escaping (Value) -> Void) -> Void)
/host/spi-builder-workspace/Sources/BrightFutures/Async.swift:61:48: error: cannot find type 'DispatchTimeInterval' in scope
 59 |
 60 |     /// Creates an `Async` that will be completed with the given result after the specified delay
 61 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 62 |         DispatchQueue.global().asyncAfter(deadline: DispatchTime.now() + delay) {
 63 |             self.complete(result)
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:41:28: error: cannot find 'DispatchQueue' in scope
 39 |         let res = Async<Iterator.Element.Value>()
 40 |         for fut in self {
 41 |             fut.onComplete(DispatchQueue.global().context) {
    |                            `- error: cannot find 'DispatchQueue' in scope
 42 |                 res.tryComplete($0)
 43 |             }
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:58:21: error: cannot find 'DispatchQueue' in scope
 56 |     /// so we define some functions twice)
 57 |     public func fold<R>(_ zero: R, f: @escaping (R, Iterator.Element.Value.Value) -> R) -> Future<R, Iterator.Element.Value.Error> {
 58 |         return fold(DispatchQueue.global().context, zero: zero, f: f)
    |                     `- error: cannot find 'DispatchQueue' in scope
 59 |     }
 60 |
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:48:34: error: cannot find type 'DispatchTimeInterval' in scope
 46 |     }
 47 |
 48 |     public init(value: T, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 49 |         super.init(result: .success(value), delay: delay)
 50 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:52:34: error: cannot find type 'DispatchTimeInterval' in scope
 50 |     }
 51 |
 52 |     public init(error: E, delay: DispatchTimeInterval) {
    |                                  `- error: cannot find type 'DispatchTimeInterval' in scope
 53 |         super.init(result: .failure(error), delay: delay)
 54 |     }
/host/spi-builder-workspace/Sources/BrightFutures/Future.swift:60:48: error: cannot find type 'DispatchTimeInterval' in scope
 58 |     }
 59 |
 60 |     public required init(result: Value, delay: DispatchTimeInterval) {
    |                                                `- error: cannot find type 'DispatchTimeInterval' in scope
 61 |         super.init(result: result, delay: delay)
 62 |     }
/host/spi-builder-workspace/Sources/BrightFutures/SequenceType+BrightFutures.swift:84:21: error: cannot find 'DispatchQueue' in scope
 82 |     /// See `find<S: SequenceType, T where S.Iterator.Element == Future<T>>(seq: S, context c: ExecutionContext, p: T -> Bool) -> Future<T>`
 83 |     public func find(_ p: @escaping (Iterator.Element.Value.Value) -> Bool) -> Future<Iterator.Element.Value.Value, BrightFuturesError<Iterator.Element.Value.Error>> {
 84 |         return find(DispatchQueue.global().context, p: p)
    |                     `- error: cannot find 'DispatchQueue' in scope
 85 |     }
 86 |
BUILD FAILURE 6.1 wasm