The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Deli, reference master (ce03cd), with Swift 6.3 for Wasm on 10 Apr 2026 11:59:19 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kawoou/Deli.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/kawoou/Deli
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at ce03cd3 Update travis deploy key
Cloned https://github.com/kawoou/Deli.git
Revision (git rev-parse @):
ce03cd37987f51fad921b891ad428ecd5c38475c
SUCCESS checkout https://github.com/kawoou/Deli.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/kawoou/Deli.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Fetching https://github.com/Quick/Quick.git
Fetching https://github.com/Quick/Nimble.git
[1/14896] Fetching quick
[3725/34713] Fetching quick, nimble
Fetched https://github.com/Quick/Quick.git from cache (0.70s)
[14269/19817] Fetching nimble
Fetched https://github.com/Quick/Nimble.git from cache (1.28s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 8.0.2 (1.67s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 2.2.0 (0.41s)
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 8.0.2
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 2.2.0
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/27] Emitting module Deli
/host/spi-builder-workspace/Sources/Deli/Core/Component/ContainerComponent.swift:8:31: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 6 | import Foundation
 7 |
 8 | protocol _ContainerComponent: class {
   |                               `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 9 |     var cache: Any? { get set }
10 |     var weakCache: AnyObject? { get set }
/host/spi-builder-workspace/Sources/Deli/Core/Type/TypeKey.swift:20:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'TypeKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
18 | }
19 | extension TypeKey: Hashable {
20 |     var hashValue: Int {
   |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'TypeKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
21 | 	    return hash
22 |     }
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[4/30] Compiling Deli Dependency.swift
[5/30] Compiling Deli DependencyArray.swift
[6/30] Compiling Deli Factory.swift
[7/30] Compiling Deli Inject.swift
[8/30] Compiling Deli LazyAutowired.swift
[9/30] Compiling Deli LazyAutowiredFactory.swift
[10/30] Compiling Deli Resolver.swift
/host/spi-builder-workspace/Sources/Deli/Core/Type/TypeKey.swift:20:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'TypeKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
18 | }
19 | extension TypeKey: Hashable {
20 |     var hashValue: Int {
   |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'TypeKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
21 | 	    return hash
22 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[11/30] Compiling Deli Scope.swift
/host/spi-builder-workspace/Sources/Deli/Core/Type/TypeKey.swift:20:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'TypeKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
18 | }
19 | extension TypeKey: Hashable {
20 |     var hashValue: Int {
   |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'TypeKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
21 | 	    return hash
22 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[12/30] Compiling Deli TypeKey.swift
/host/spi-builder-workspace/Sources/Deli/Core/Type/TypeKey.swift:20:9: warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'TypeKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
18 | }
19 | extension TypeKey: Hashable {
20 |     var hashValue: Int {
   |         `- warning: 'Hashable.hashValue' is deprecated as a protocol requirement; conform type 'TypeKey' to 'Hashable' by implementing 'hash(into:)' instead [#DeprecatedDeclaration]
21 | 	    return hash
22 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[13/30] Compiling Deli Linker.swift
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
[14/30] Compiling Deli LoadPriority.swift
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
[15/30] Compiling Deli ResolveRole.swift
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
[16/30] Compiling Deli ModuleFactory.swift
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:106:36: error: cannot find 'DispatchWorkItem' in scope
104 |                 let instance = resolver()
105 |
106 |                 let dispatchItem = DispatchWorkItem {
    |                                    `- error: cannot find 'DispatchWorkItem' in scope
107 |                     guard let instance = instance as? T else { return }
108 |                     injector(instance)
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:182:36: error: cannot find 'DispatchWorkItem' in scope
180 |                 let instance = resolver(payload)
181 |
182 |                 let dispatchItem = DispatchWorkItem {
    |                                    `- error: cannot find 'DispatchWorkItem' in scope
183 |                     guard let instance = instance as? T else { return }
184 |                     injector(instance)
[17/30] Compiling Deli Payload.swift
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:106:36: error: cannot find 'DispatchWorkItem' in scope
104 |                 let instance = resolver()
105 |
106 |                 let dispatchItem = DispatchWorkItem {
    |                                    `- error: cannot find 'DispatchWorkItem' in scope
107 |                     guard let instance = instance as? T else { return }
108 |                     injector(instance)
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:182:36: error: cannot find 'DispatchWorkItem' in scope
180 |                 let instance = resolver(payload)
181 |
182 |                 let dispatchItem = DispatchWorkItem {
    |                                    `- error: cannot find 'DispatchWorkItem' in scope
183 |                     guard let instance = instance as? T else { return }
184 |                     injector(instance)
[18/30] Compiling Deli PropertyValue.swift
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:106:36: error: cannot find 'DispatchWorkItem' in scope
104 |                 let instance = resolver()
105 |
106 |                 let dispatchItem = DispatchWorkItem {
    |                                    `- error: cannot find 'DispatchWorkItem' in scope
107 |                     guard let instance = instance as? T else { return }
108 |                     injector(instance)
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:182:36: error: cannot find 'DispatchWorkItem' in scope
180 |                 let instance = resolver(payload)
181 |
182 |                 let dispatchItem = DispatchWorkItem {
    |                                    `- error: cannot find 'DispatchWorkItem' in scope
183 |                     guard let instance = instance as? T else { return }
184 |                     injector(instance)
[19/30] Compiling Deli FactoryContainerComponent.swift
[20/30] Compiling Deli Container.swift
[21/30] Compiling Deli ContainerError.swift
[22/30] Compiling Deli FactoryResolver.swift
[23/30] Compiling Deli Autowired.swift
[24/30] Compiling Deli AutowiredFactory.swift
[25/30] Compiling Deli Component.swift
[26/30] Compiling Deli ConfigProperty.swift
[27/30] Compiling Deli Configuration.swift
/host/spi-builder-workspace/Sources/Deli/Core/Component/ContainerComponent.swift:8:31: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 6 | import Foundation
 7 |
 8 | protocol _ContainerComponent: class {
   |                               `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 9 |     var cache: Any? { get set }
10 |     var weakCache: AnyObject? { get set }
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
[28/30] Compiling Deli AppContext.swift
/host/spi-builder-workspace/Sources/Deli/Core/Component/ContainerComponent.swift:8:31: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 6 | import Foundation
 7 |
 8 | protocol _ContainerComponent: class {
   |                               `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 9 |     var cache: Any? { get set }
10 |     var weakCache: AnyObject? { get set }
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
[29/30] Compiling Deli ContainerComponent.swift
/host/spi-builder-workspace/Sources/Deli/Core/Component/ContainerComponent.swift:8:31: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 6 | import Foundation
 7 |
 8 | protocol _ContainerComponent: class {
   |                               `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 9 |     var cache: Any? { get set }
10 |     var weakCache: AnyObject? { get set }
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
[30/30] Compiling Deli DefaultContainerComponent.swift
/host/spi-builder-workspace/Sources/Deli/Core/Component/ContainerComponent.swift:8:31: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 6 | import Foundation
 7 |
 8 | protocol _ContainerComponent: class {
   |                               `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 9 |     var cache: Any? { get set }
10 |     var weakCache: AnyObject? { get set }
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:38: error: cannot find 'DispatchWorkItem' in scope
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                                      `- error: cannot find 'DispatchWorkItem' in scope
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:29: error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                             `- error: cannot convert value of type 'TypeKey.Type' to expected dictionary key type 'AnyHashable'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:16:28: error: cannot call value of non-function type '[AnyHashable : Any]'
 14 |     // MARK: - Private
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
    |                            `- error: cannot call value of non-function type '[AnyHashable : Any]'
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
 18 |
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:29: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                             `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
/host/spi-builder-workspace/Sources/Deli/ModuleFactory.swift:17:86: error: cannot find 'DispatchQueue' in scope
 15 |
 16 |     private var lazyDict = [TypeKey: DispatchWorkItem]()
 17 |     private var lazyQueue = DispatchQueue(label: "io.kawoou.deli.lazyQueue", target: DispatchQueue.main)
    |                                                                                      `- error: cannot find 'DispatchQueue' in scope
 18 |
 19 |     // MARK: - Internal
BUILD FAILURE 6.3 wasm