The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Deli, reference master (ce03cd), with Swift 6.0 for macOS (SPM) on 31 Oct 2024 00:18:19 UTC.

Swift 6 data race errors: 1

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kawoou/Deli.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
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
Fetching https://github.com/Quick/Quick.git
Fetching https://github.com/Quick/Nimble.git
[1/14723] Fetching quick
[14724/33941] Fetching quick, nimble
Fetched https://github.com/Quick/Quick.git from cache (2.59s)
Fetched https://github.com/Quick/Nimble.git from cache (2.59s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 8.0.2 (0.71s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 2.2.0 (0.71s)
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 2.2.0
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 8.0.2
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "deli",
      "name": "Deli",
      "url": "https://github.com/kawoou/Deli.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Deli",
      "dependencies": [
        {
          "identity": "quick",
          "name": "Quick",
          "url": "https://github.com/Quick/Quick.git",
          "version": "2.2.0",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Quick",
          "dependencies": [
            {
              "identity": "nimble",
              "name": "Nimble",
              "url": "https://github.com/Quick/Nimble.git",
              "version": "8.0.2",
              "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Nimble",
              "dependencies": [
              ]
            }
          ]
        },
        {
          "identity": "nimble",
          "name": "Nimble",
          "url": "https://github.com/Quick/Nimble.git",
          "version": "8.0.2",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Nimble",
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/kawoou/Deli.git
[1/2747] Fetching deli
Fetched https://github.com/kawoou/Deli.git from cache (1.06s)
Fetching https://github.com/Quick/Nimble.git from cache
Fetching https://github.com/Quick/Quick.git from cache
Fetched https://github.com/Quick/Nimble.git from cache (0.63s)
Fetched https://github.com/Quick/Quick.git from cache (0.63s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 8.0.2 (0.04s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 2.2.0 (0.04s)
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/kawoou/Deli.git
Working copy of https://github.com/kawoou/Deli.git resolved at master (ce03cd3)
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 2.2.0
warning: '.resolve-product-dependencies': dependency 'deli' is not used by any target
Found 2 product dependencies
  - Quick
  - Nimble
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/kawoou/Deli.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/28] Emitting module Deli
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
/Users/admin/builder/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
 6 | import Foundation
 7 |
 8 | protocol _ContainerComponent: class {
   |                               `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 9 |     var cache: Any? { get set }
10 |     var weakCache: AnyObject? { get set }
/Users/admin/builder/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
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
21 | 	    return hash
22 |     }
[4/30] Compiling Deli Autowired.swift
[5/30] Compiling Deli AutowiredFactory.swift
[6/30] Compiling Deli Component.swift
[7/30] Compiling Deli Linker.swift
[8/30] Compiling Deli LoadPriority.swift
[9/30] Compiling Deli ResolveRole.swift
[10/30] Compiling Deli Payload.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[11/30] Compiling Deli PropertyValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[12/30] Compiling Deli LazyAutowiredFactory.swift
[13/30] Compiling Deli ModuleFactory.swift
[14/30] Compiling Deli ContainerComponent.swift
/Users/admin/builder/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
 6 | import Foundation
 7 |
 8 | protocol _ContainerComponent: class {
   |                               `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 9 |     var cache: Any? { get set }
10 |     var weakCache: AnyObject? { get set }
[15/30] Compiling Deli DefaultContainerComponent.swift
/Users/admin/builder/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
 6 | import Foundation
 7 |
 8 | protocol _ContainerComponent: class {
   |                               `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 9 |     var cache: Any? { get set }
10 |     var weakCache: AnyObject? { get set }
[16/30] Compiling Deli FactoryContainerComponent.swift
/Users/admin/builder/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
 6 | import Foundation
 7 |
 8 | protocol _ContainerComponent: class {
   |                               `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead
 9 |     var cache: Any? { get set }
10 |     var weakCache: AnyObject? { get set }
[17/30] Compiling Deli Inject.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[18/30] Compiling Deli LazyAutowired.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[19/30] Compiling Deli Resolver.swift
/Users/admin/builder/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
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
21 | 	    return hash
22 |     }
[20/30] Compiling Deli Scope.swift
/Users/admin/builder/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
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
21 | 	    return hash
22 |     }
[21/30] Compiling Deli TypeKey.swift
/Users/admin/builder/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
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
21 | 	    return hash
22 |     }
[22/30] Compiling Deli ConfigProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[23/30] Compiling Deli Configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[24/30] Compiling Deli AppContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[25/30] Compiling Deli Dependency.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[26/30] Compiling Deli DependencyArray.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[27/30] Compiling Deli Factory.swift
/Users/admin/builder/spi-builder-workspace/Sources/Deli/Core/AppContext.swift:33:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
 10 | /// Most of them provide the same functionality as Containers, but they are
 11 | /// responsible for functions such as `Lazy` and `Factory`.
 12 | public class AppContext {
    |              `- note: class 'AppContext' does not conform to the 'Sendable' protocol
 13 |
 14 |     // MARK: - Structure
    :
 31 |     ///
 32 |     /// - Returns: Instance of shared application context.
 33 |     public static let shared = AppContext()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'AppContext' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |     // MARK: - Private
[28/30] Compiling Deli Container.swift
[29/30] Compiling Deli ContainerError.swift
[30/30] Compiling Deli FactoryResolver.swift
Build complete! (12.26s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "quick",
      "requirement" : {
        "exact" : [
          "2.2.0"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Quick.git"
    },
    {
      "identity" : "nimble",
      "requirement" : {
        "exact" : [
          "8.0.2"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    }
  ],
  "manifest_display_name" : "Deli",
  "name" : "Deli",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "8.0"
    },
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "Deli",
      "targets" : [
        "Deli"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4",
    "4.2",
    "5"
  ],
  "targets" : [
    {
      "c99name" : "DeliTests",
      "module_type" : "SwiftTarget",
      "name" : "DeliTests",
      "path" : "Tests/DeliTests",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "sources" : [
        "DeliSample/AccountConfiguration.swift",
        "DeliSample/AccountService.swift",
        "DeliSample/AlwaysModel.swift",
        "DeliSample/Book/Book.swift",
        "DeliSample/Book/COSMOS.swift",
        "DeliSample/Book/HarryPotter.swift",
        "DeliSample/Book/Novel.swift",
        "DeliSample/Book/Science.swift",
        "DeliSample/Book/TroisiemeHumanite.swift",
        "DeliSample/DeliFactory.swift",
        "DeliSample/DependencyTestModel.swift",
        "DeliSample/FactoryTest.swift",
        "DeliSample/Friend.swift",
        "DeliSample/FriendInfoViewModel.swift",
        "DeliSample/FriendListViewModel.swift",
        "DeliSample/FriendPayload.swift",
        "DeliSample/FriendService.swift",
        "DeliSample/LazyAutowiredQualifier.swift",
        "DeliSample/LibraryService.swift",
        "DeliSample/MessageService.swift",
        "DeliSample/NestedType.swift",
        "DeliSample/NetworkManager.swift",
        "DeliSample/Property/InjectPropertyTest.swift",
        "DeliSample/Property/NetworkMethod.swift",
        "DeliSample/Property/NetworkProvider.swift",
        "DeliSample/Property/PropertyAutowired.swift",
        "DeliSample/Property/PropertyAutowiredFactory.swift",
        "DeliSample/Property/PropertyInject.swift",
        "DeliSample/Property/PropertyLazyAutowired.swift",
        "DeliSample/Property/PropertyLazyAutowiredFactory.swift",
        "DeliSample/Property/ServerConfig.swift",
        "DeliSample/PropertyWrapper/PropertyWrapperTest1.swift",
        "DeliSample/PropertyWrapper/PropertyWrapperTest2.swift",
        "DeliSample/Robot/Robot.swift",
        "DeliSample/Robot/RobotBody.swift",
        "DeliSample/Robot/RobotFactory.swift",
        "DeliSample/Robot/RobotHead.swift",
        "DeliSample/Struct/StructWithAutowired.swift",
        "DeliSample/Struct/StructWithAutowiredFactory.swift",
        "DeliSample/Struct/StructWithComponent.swift",
        "DeliSample/Struct/StructWithLazyAutowired.swift",
        "DeliSample/TestDeliFactory.swift",
        "DeliSample/TestDeliObject.swift",
        "DeliSample/TestNotRegister.swift",
        "DeliSample/TestPayload.swift",
        "DeliSample/TestRegister.swift",
        "DeliSample/TestService.swift",
        "DeliSample/TestView1.swift",
        "DeliSample/TestView2.swift",
        "DeliSample/TestView3.swift",
        "DeliSample/TestViewModel.swift",
        "DeliSample/UnicodeTest.swift",
        "DeliSample/UserPayload.swift",
        "DeliSample/UserViewModel.swift",
        "DeliSample/WeakViewModel.swift",
        "DeliSpec.swift",
        "Mock/MockAccountService.swift",
        "Mock/MockBook.swift"
      ],
      "target_dependencies" : [
        "Deli"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Deli",
      "module_type" : "SwiftTarget",
      "name" : "Deli",
      "path" : "Sources/Deli",
      "product_memberships" : [
        "Deli"
      ],
      "sources" : [
        "Autowired.swift",
        "AutowiredFactory.swift",
        "Component.swift",
        "ConfigProperty.swift",
        "Configuration.swift",
        "Core/AppContext.swift",
        "Core/Component/ContainerComponent.swift",
        "Core/Component/DefaultContainerComponent.swift",
        "Core/Component/FactoryContainerComponent.swift",
        "Core/Container.swift",
        "Core/Error/ContainerError.swift",
        "Core/Type/FactoryResolver.swift",
        "Core/Type/Linker.swift",
        "Core/Type/LoadPriority.swift",
        "Core/Type/ResolveRole.swift",
        "Core/Type/Resolver.swift",
        "Core/Type/Scope.swift",
        "Core/Type/TypeKey.swift",
        "Dependency.swift",
        "DependencyArray.swift",
        "Factory.swift",
        "Inject.swift",
        "LazyAutowired.swift",
        "LazyAutowiredFactory.swift",
        "ModuleFactory.swift",
        "Payload.swift",
        "PropertyValue.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.