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 Juice, reference main (8c33c7), with Swift 6.0 for macOS (SPM) on 2 Nov 2024 01:05:18 UTC.

Swift 6 data race errors: 3

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/andrey-shavelev/Juice.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/andrey-shavelev/Juice
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 8c33c73 add ability to resign global scope
Cloned https://github.com/andrey-shavelev/Juice.git
Revision (git rev-parse @):
8c33c73f4c4c5e9715286ead267e0462fc2b7e61
SUCCESS checkout https://github.com/andrey-shavelev/Juice.git at main
========================================
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": "juice",
      "name": "Juice",
      "url": "https://github.com/andrey-shavelev/Juice.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Juice",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/andrey-shavelev/Juice.git
[1/1216] Fetching juice
Fetched https://github.com/andrey-shavelev/Juice.git from cache (0.87s)
Creating working copy for https://github.com/andrey-shavelev/Juice.git
Working copy of https://github.com/andrey-shavelev/Juice.git resolved at main (8c33c73)
warning: '.resolve-product-dependencies': dependency 'juice' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/andrey-shavelev/Juice.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/49] Emitting module Juice
/Users/admin/builder/spi-builder-workspace/Sources/Juice/ContainerError.swift:11:10: warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
 9 |     case invalidScope
10 |     case missingLifetimeDefinition(componentType: Any.Type)
11 |     case scopeNotFound(scopeKey: ScopeKey)
   |          `- warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
12 |     case missingOwnershipDefinition(componentType: Any.Type)
13 |     case dependencyCycle(componentType: Any.Type)
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeKey.swift:5:13: note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 3 | //
 4 |
 5 | public enum ScopeKey {
   |             `- note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 6 |     case any
 7 |     case unique(key: UniqueScopeKey)
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:9:24: warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | class ScopeStack {
 8 |
 9 |     private static var stack = [Scope]()
   |                        |- warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'stack' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'stack' 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
10 |     private static var globalScope: (Scope, UUID)?
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:10:24: warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |     private static var stack = [Scope]()
10 |     private static var globalScope: (Scope, UUID)?
   |                        |- warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'globalScope' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'globalScope' 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
11 |
12 |     class var top: Scope? {
[4/54] Compiling Juice LazyDynamicRegistrationSource.swift
[5/54] Compiling Juice OptionalDynamicRegistrationSource.swift
[6/54] Compiling Juice ExternalInstanceRegistration.swift
[7/54] Compiling Juice InstancePerDependencyRegistration.swift
[8/54] Compiling Juice InstancePerScopeComponentFactoryWrapper.swift
[9/54] Compiling Juice PropertyInjector.swift
[10/54] Compiling Juice Inject.swift
[11/54] Compiling Juice ArrayDynamicRegistrationSource.swift
[12/54] Compiling Juice DynamicRegistrationsSource.swift
[13/54] Compiling Juice FactoryDynamicRegistrationSource.swift
[14/54] Compiling Juice ServiceKey.swift
[15/54] Compiling Juice InstanceFactory.swift
[16/54] Compiling Juice InstanceStorage.swift
[17/54] Compiling Juice InstanceStorageLocator.swift
[18/54] Compiling Juice StorageKey.swift
[19/54] Compiling Juice CurrentScope.swift
[20/54] Compiling Juice Argument.swift
[21/54] Compiling Juice ParameterizedContainerWrapper.swift
[22/54] Compiling Juice ParameterizedScopeLocator.swift
[23/54] Compiling Juice ResolutionScopeLocator.swift
[24/54] Compiling Juice Factory.swift
[25/54] Compiling Juice ComponentServicesBuilder.swift
[26/54] Compiling Juice ContainerBuilder.swift
[27/54] Compiling Juice DelegaitingFactory.swift
[28/54] Compiling Juice DynamicInstanceKind.swift
[29/54] Compiling Juice DynamicInstanceLifetimeBuilder.swift
[30/54] Compiling Juice Module.swift
[31/54] Compiling Juice PropertyInjectionBuilder.swift
[32/54] Compiling Juice RegistrationPrototype.swift
[33/54] Compiling Juice ValueRegistrationBuilder.swift
[34/54] Compiling Juice ValueRegistrationPrototype.swift
[35/54] Compiling Juice DynamicInstanceRegistrationBuilder.swift
[36/54] Compiling Juice DynamicInstanceRegistrationPrototype.swift
[37/54] Compiling Juice ExternalInstanceOwnershipBuilder.swift
[38/54] Compiling Juice ExternalInstanceRegistrationBuilder.swift
[39/54] Compiling Juice ExternalInstanceRegistrationPrototype.swift
[40/54] Compiling Juice Scope.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:9:24: warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | class ScopeStack {
 8 |
 9 |     private static var stack = [Scope]()
   |                        |- warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'stack' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'stack' 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
10 |     private static var globalScope: (Scope, UUID)?
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:10:24: warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |     private static var stack = [Scope]()
10 |     private static var globalScope: (Scope, UUID)?
   |                        |- warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'globalScope' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'globalScope' 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
11 |
12 |     class var top: Scope? {
[41/54] Compiling Juice ScopeKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:9:24: warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | class ScopeStack {
 8 |
 9 |     private static var stack = [Scope]()
   |                        |- warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'stack' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'stack' 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
10 |     private static var globalScope: (Scope, UUID)?
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:10:24: warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |     private static var stack = [Scope]()
10 |     private static var globalScope: (Scope, UUID)?
   |                        |- warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'globalScope' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'globalScope' 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
11 |
12 |     class var top: Scope? {
[42/54] Compiling Juice ScopeLocator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:9:24: warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | class ScopeStack {
 8 |
 9 |     private static var stack = [Scope]()
   |                        |- warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'stack' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'stack' 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
10 |     private static var globalScope: (Scope, UUID)?
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:10:24: warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |     private static var stack = [Scope]()
10 |     private static var globalScope: (Scope, UUID)?
   |                        |- warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'globalScope' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'globalScope' 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
11 |
12 |     class var top: Scope? {
[43/54] Compiling Juice ScopeStack.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:9:24: warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | class ScopeStack {
 8 |
 9 |     private static var stack = [Scope]()
   |                        |- warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'stack' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'stack' 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
10 |     private static var globalScope: (Scope, UUID)?
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:10:24: warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |     private static var stack = [Scope]()
10 |     private static var globalScope: (Scope, UUID)?
   |                        |- warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'globalScope' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'globalScope' 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
11 |
12 |     class var top: Scope? {
[44/54] Compiling Juice UniqueScopeKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:9:24: warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 7 | class ScopeStack {
 8 |
 9 |     private static var stack = [Scope]()
   |                        |- warning: static property 'stack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'stack' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'stack' 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
10 |     private static var globalScope: (Scope, UUID)?
11 |
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeStack.swift:10:24: warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 |     private static var stack = [Scope]()
10 |     private static var globalScope: (Scope, UUID)?
   |                        |- warning: static property 'globalScope' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'globalScope' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: annotate 'globalScope' 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
11 |
12 |     class var top: Scope? {
[45/54] Compiling Juice Container.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/ContainerError.swift:11:10: warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
 9 |     case invalidScope
10 |     case missingLifetimeDefinition(componentType: Any.Type)
11 |     case scopeNotFound(scopeKey: ScopeKey)
   |          `- warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
12 |     case missingOwnershipDefinition(componentType: Any.Type)
13 |     case dependencyCycle(componentType: Any.Type)
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeKey.swift:5:13: note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 3 | //
 4 |
 5 | public enum ScopeKey {
   |             `- note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 6 |     case any
 7 |     case unique(key: UniqueScopeKey)
[46/54] Compiling Juice ContainerError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/ContainerError.swift:11:10: warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
 9 |     case invalidScope
10 |     case missingLifetimeDefinition(componentType: Any.Type)
11 |     case scopeNotFound(scopeKey: ScopeKey)
   |          `- warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
12 |     case missingOwnershipDefinition(componentType: Any.Type)
13 |     case dependencyCycle(componentType: Any.Type)
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeKey.swift:5:13: note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 3 | //
 4 |
 5 | public enum ScopeKey {
   |             `- note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 6 |     case any
 7 |     case unique(key: UniqueScopeKey)
[47/54] Compiling Juice Injectable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/ContainerError.swift:11:10: warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
 9 |     case invalidScope
10 |     case missingLifetimeDefinition(componentType: Any.Type)
11 |     case scopeNotFound(scopeKey: ScopeKey)
   |          `- warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
12 |     case missingOwnershipDefinition(componentType: Any.Type)
13 |     case dependencyCycle(componentType: Any.Type)
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeKey.swift:5:13: note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 3 | //
 4 |
 5 | public enum ScopeKey {
   |             `- note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 6 |     case any
 7 |     case unique(key: UniqueScopeKey)
[48/54] Compiling Juice Lazy.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/ContainerError.swift:11:10: warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
 9 |     case invalidScope
10 |     case missingLifetimeDefinition(componentType: Any.Type)
11 |     case scopeNotFound(scopeKey: ScopeKey)
   |          `- warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
12 |     case missingOwnershipDefinition(componentType: Any.Type)
13 |     case dependencyCycle(componentType: Any.Type)
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeKey.swift:5:13: note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 3 | //
 4 |
 5 | public enum ScopeKey {
   |             `- note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 6 |     case any
 7 |     case unique(key: UniqueScopeKey)
[49/54] Compiling Juice PropertyInjectingFactoryWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/Juice/ContainerError.swift:11:10: warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
 9 |     case invalidScope
10 |     case missingLifetimeDefinition(componentType: Any.Type)
11 |     case scopeNotFound(scopeKey: ScopeKey)
   |          `- warning: associated value 'scopeNotFound(scopeKey:)' of 'Sendable'-conforming enum 'ContainerError' has non-sendable type 'ScopeKey'; this is an error in the Swift 6 language mode
12 |     case missingOwnershipDefinition(componentType: Any.Type)
13 |     case dependencyCycle(componentType: Any.Type)
/Users/admin/builder/spi-builder-workspace/Sources/Juice/Scope/ScopeKey.swift:5:13: note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 3 | //
 4 |
 5 | public enum ScopeKey {
   |             `- note: consider making enum 'ScopeKey' conform to the 'Sendable' protocol
 6 |     case any
 7 |     case unique(key: UniqueScopeKey)
[50/54] Compiling Juice InstancePerScopeRegistration.swift
[51/54] Compiling Juice MultiServiceRegistration.swift
[52/54] Compiling Juice ServiceRegistration.swift
[53/54] Compiling Juice ContainerWrapper.swift
[54/54] Compiling Juice ContainerWrapperProtocol.swift
Build complete! (16.05s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Juice",
  "name" : "Juice",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Juice",
      "targets" : [
        "Juice"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "JuiceTests",
      "module_type" : "SwiftTarget",
      "name" : "JuiceTests",
      "path" : "Tests/JuiceTests",
      "sources" : [
        "AutoFactoriesTests.swift",
        "ChildContainerTests.swift",
        "CurrentScopeTests.swift",
        "DependencyCycleTests.swift",
        "EnumRegistrationTests.swift",
        "ExternalInstanceRegistrationTests.swift",
        "FactoryRegistrationTests.swift",
        "GlobalScopeTests.swift",
        "InitRegistrationsTests.swift",
        "InstancePerContainerRegistrationTests.swift",
        "InstancePerDependencyRegistrationTests.swift",
        "KeyedRegistrationsTests.swift",
        "LazyResolveTests.swift",
        "ModuleRegistrationTests.swift",
        "MultipleServicesRegistrationTests.swift",
        "OptionalResolutionTests.swift",
        "ParameterizedResolutionTests.swift",
        "PropertyInjectionTests.swift",
        "SingleInstanceRegistrationTests.swift",
        "TestableEntities/Ingredients.swift",
        "TestableEntities/Other.swift",
        "TestableEntities/Recipes.swift"
      ],
      "target_dependencies" : [
        "Juice"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Juice",
      "module_type" : "SwiftTarget",
      "name" : "Juice",
      "path" : "Sources/Juice",
      "product_memberships" : [
        "Juice"
      ],
      "sources" : [
        "AutoFactory/Factory.swift",
        "Build/ComponentServicesBuilder.swift",
        "Build/ContainerBuilder.swift",
        "Build/DelegaitingFactory.swift",
        "Build/DynamicInstance/DynamicInstanceKind.swift",
        "Build/DynamicInstance/DynamicInstanceLifetimeBuilder.swift",
        "Build/DynamicInstance/DynamicInstanceRegistrationBuilder.swift",
        "Build/DynamicInstance/DynamicInstanceRegistrationPrototype.swift",
        "Build/ExternalInstance/ExternalInstanceOwnershipBuilder.swift",
        "Build/ExternalInstance/ExternalInstanceRegistrationBuilder.swift",
        "Build/ExternalInstance/ExternalInstanceRegistrationPrototype.swift",
        "Build/Module.swift",
        "Build/PropertyInjectionBuilder.swift",
        "Build/RegistrationPrototype.swift",
        "Build/Value/ValueRegistrationBuilder.swift",
        "Build/Value/ValueRegistrationPrototype.swift",
        "Container.swift",
        "ContainerError.swift",
        "Injectable.swift",
        "Lazy/Lazy.swift",
        "ProtperyInjection/PropertyInjectingFactoryWrapper.swift",
        "ProtperyInjection/PropertyInjector.swift",
        "ProtperyInjection/Wrappers/Inject.swift",
        "Registrations/Dynamic/ArrayDynamicRegistrationSource.swift",
        "Registrations/Dynamic/DynamicRegistrationsSource.swift",
        "Registrations/Dynamic/FactoryDynamicRegistrationSource.swift",
        "Registrations/Dynamic/LazyDynamicRegistrationSource.swift",
        "Registrations/Dynamic/OptionalDynamicRegistrationSource.swift",
        "Registrations/ExternalInstanceRegistration.swift",
        "Registrations/InstancePerDependencyRegistration.swift",
        "Registrations/InstancePerScopeComponentFactoryWrapper.swift",
        "Registrations/InstancePerScopeRegistration.swift",
        "Registrations/MultiServiceRegistration.swift",
        "Registrations/ServiceRegistration.swift",
        "Scope/ContainerWrapper.swift",
        "Scope/ContainerWrapperProtocol.swift",
        "Scope/CurrentScope.swift",
        "Scope/Parameterized/Argument.swift",
        "Scope/Parameterized/ParameterizedContainerWrapper.swift",
        "Scope/Parameterized/ParameterizedScopeLocator.swift",
        "Scope/ResolutionScopeLocator.swift",
        "Scope/Scope.swift",
        "Scope/ScopeKey.swift",
        "Scope/ScopeLocator.swift",
        "Scope/ScopeStack.swift",
        "Scope/UniqueScopeKey.swift",
        "ServiceKey.swift",
        "Storage/InstanceFactory.swift",
        "Storage/InstanceStorage.swift",
        "Storage/InstanceStorageLocator.swift",
        "Storage/StorageKey.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.