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 Fluxor, reference 5.0.1 (1d20b7), with Swift 6.0 for macOS (SPM) on 28 Nov 2024 08:26:04 UTC.

Swift 6 data race errors: 0

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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/FluxorOrg/Fluxor.git
Reference: 5.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/FluxorOrg/Fluxor
 * tag               5.0.1      -> FETCH_HEAD
HEAD is now at 1d20b74 Don't erase already erased values in collections (#102)
Cloned https://github.com/FluxorOrg/Fluxor.git
Revision (git rev-parse @):
1d20b74287f629c6187db11d7905988fb65a3e0d
SUCCESS checkout https://github.com/FluxorOrg/Fluxor.git at 5.0.1
========================================
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": "fluxor",
      "name": "Fluxor",
      "url": "https://github.com/FluxorOrg/Fluxor.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Fluxor",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/FluxorOrg/Fluxor.git
[1/3662] Fetching fluxor
Fetched https://github.com/FluxorOrg/Fluxor.git from cache (1.16s)
Creating working copy for https://github.com/FluxorOrg/Fluxor.git
Working copy of https://github.com/FluxorOrg/Fluxor.git resolved at 5.0.1 (1d20b74)
warning: '.resolve-product-dependencies': dependency 'fluxor' 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/FluxorOrg/Fluxor.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 -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version--7754E27361AE5C74.txt
[5/6] Compiling AnyCodable AnyCodable.swift
[6/6] Emitting module AnyCodable
[7/18] Compiling Fluxor Selector.swift
[8/19] Compiling Fluxor StoreValue.swift
[9/19] Compiling Fluxor Store.swift
[10/19] Compiling Fluxor Reducer.swift
[11/19] Compiling Fluxor Interceptor.swift
[12/19] Compiling Fluxor PrintInterceptor.swift
[13/19] Compiling Fluxor ActionPublisher+WithIdentifier.swift
[14/19] Compiling Fluxor ActionPublisher+WasCreatedBy.swift
[15/19] Compiling Fluxor ActionPublisher+OfType.swift
[16/19] Compiling Fluxor Action.swift
[17/19] Compiling Fluxor Effects.swift
[18/19] Compiling Fluxor Store+Binding.swift
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:25:22: warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |     func binding<Value>(get selector: Selector<State, Value>,
24 |                         send actionTemplate: ActionTemplate<Value>) -> Binding<Value> {
25 |         .init(get: { self.selectCurrent(selector) },
   |                      `- warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
26 |               set: { self.dispatch(action: actionTemplate.createAction(payload: $0)) })
27 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Store.swift:33:12: note: generic class 'Store' does not conform to the 'Sendable' protocol
 31 |  It is possible to intercept all `Action`s and `State` changes by registering an `Interceptor`.
 32 |  */
 33 | open class Store<State, Environment>: ObservableObject {
    |            `- note: generic class 'Store' does not conform to the 'Sendable' protocol
 34 |     /// The state of the `Store`. It can only be modified by the registered `Reducer`s when `Action`s are dispatched.
 35 |     @Published public private(set) var state: State
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:25:41: warning: capture of 'selector' with non-sendable type 'Selector<State, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |     func binding<Value>(get selector: Selector<State, Value>,
24 |                         send actionTemplate: ActionTemplate<Value>) -> Binding<Value> {
25 |         .init(get: { self.selectCurrent(selector) },
   |                                         `- warning: capture of 'selector' with non-sendable type 'Selector<State, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
26 |               set: { self.dispatch(action: actionTemplate.createAction(payload: $0)) })
27 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Selector.swift:32:14: note: generic class 'Selector' does not conform to the 'Sendable' protocol
 30 |  `Selector`s can be based on other `Selector`s making it possible to select a combined `Value`.
 31 |  */
 32 | public class Selector<State, Value>: SelectorProtocol {
    |              `- note: generic class 'Selector' does not conform to the 'Sendable' protocol
 33 |     /// An unique identifier used when overriding the `Selector` on the `MockStore`.
 34 |     public let id = UUID()
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:26:22: warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
24 |                         send actionTemplate: ActionTemplate<Value>) -> Binding<Value> {
25 |         .init(get: { self.selectCurrent(selector) },
26 |               set: { self.dispatch(action: actionTemplate.createAction(payload: $0)) })
   |                      `- warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Store.swift:33:12: note: generic class 'Store' does not conform to the 'Sendable' protocol
 31 |  It is possible to intercept all `Action`s and `State` changes by registering an `Interceptor`.
 32 |  */
 33 | open class Store<State, Environment>: ObservableObject {
    |            `- note: generic class 'Store' does not conform to the 'Sendable' protocol
 34 |     /// The state of the `Store`. It can only be modified by the registered `Reducer`s when `Action`s are dispatched.
 35 |     @Published public private(set) var state: State
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:26:44: warning: capture of 'actionTemplate' with non-sendable type 'ActionTemplate<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
24 |                         send actionTemplate: ActionTemplate<Value>) -> Binding<Value> {
25 |         .init(get: { self.selectCurrent(selector) },
26 |               set: { self.dispatch(action: actionTemplate.createAction(payload: $0)) })
   |                                            `- warning: capture of 'actionTemplate' with non-sendable type 'ActionTemplate<Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
27 |     }
28 |
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Action.swift:39:15: note: consider making generic struct 'ActionTemplate' conform to the 'Sendable' protocol
 37 |  The template can have a `Payload`type which is used when creating an actual `Action` from the template.
 38 |  */
 39 | public struct ActionTemplate<Payload> {
    |               `- note: consider making generic struct 'ActionTemplate' conform to the 'Sendable' protocol
 40 |     /// The identifier for the `ActionTemplate`
 41 |     public let id: String
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:46:29: warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
44 |                  disable disableActionTemplate: ActionTemplate<Void>)
45 |         -> Binding<Bool> {
46 |         return .init(get: { self.selectCurrent(selector) },
   |                             `- warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
47 |                      set: { self.dispatch(action: ($0 ? enableActionTemplate : disableActionTemplate)()) })
48 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Store.swift:33:12: note: generic class 'Store' does not conform to the 'Sendable' protocol
 31 |  It is possible to intercept all `Action`s and `State` changes by registering an `Interceptor`.
 32 |  */
 33 | open class Store<State, Environment>: ObservableObject {
    |            `- note: generic class 'Store' does not conform to the 'Sendable' protocol
 34 |     /// The state of the `Store`. It can only be modified by the registered `Reducer`s when `Action`s are dispatched.
 35 |     @Published public private(set) var state: State
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:46:48: warning: capture of 'selector' with non-sendable type 'Selector<State, Bool>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
44 |                  disable disableActionTemplate: ActionTemplate<Void>)
45 |         -> Binding<Bool> {
46 |         return .init(get: { self.selectCurrent(selector) },
   |                                                `- warning: capture of 'selector' with non-sendable type 'Selector<State, Bool>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
47 |                      set: { self.dispatch(action: ($0 ? enableActionTemplate : disableActionTemplate)()) })
48 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Selector.swift:32:14: note: generic class 'Selector' does not conform to the 'Sendable' protocol
 30 |  `Selector`s can be based on other `Selector`s making it possible to select a combined `Value`.
 31 |  */
 32 | public class Selector<State, Value>: SelectorProtocol {
    |              `- note: generic class 'Selector' does not conform to the 'Sendable' protocol
 33 |     /// An unique identifier used when overriding the `Selector` on the `MockStore`.
 34 |     public let id = UUID()
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:47:29: warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 |         -> Binding<Bool> {
46 |         return .init(get: { self.selectCurrent(selector) },
47 |                      set: { self.dispatch(action: ($0 ? enableActionTemplate : disableActionTemplate)()) })
   |                             `- warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 |     }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Store.swift:33:12: note: generic class 'Store' does not conform to the 'Sendable' protocol
 31 |  It is possible to intercept all `Action`s and `State` changes by registering an `Interceptor`.
 32 |  */
 33 | open class Store<State, Environment>: ObservableObject {
    |            `- note: generic class 'Store' does not conform to the 'Sendable' protocol
 34 |     /// The state of the `Store`. It can only be modified by the registered `Reducer`s when `Action`s are dispatched.
 35 |     @Published public private(set) var state: State
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:47:57: warning: capture of 'enableActionTemplate' with non-sendable type 'ActionTemplate<Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 |         -> Binding<Bool> {
46 |         return .init(get: { self.selectCurrent(selector) },
47 |                      set: { self.dispatch(action: ($0 ? enableActionTemplate : disableActionTemplate)()) })
   |                                                         `- warning: capture of 'enableActionTemplate' with non-sendable type 'ActionTemplate<Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 |     }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Action.swift:39:15: note: consider making generic struct 'ActionTemplate' conform to the 'Sendable' protocol
 37 |  The template can have a `Payload`type which is used when creating an actual `Action` from the template.
 38 |  */
 39 | public struct ActionTemplate<Payload> {
    |               `- note: consider making generic struct 'ActionTemplate' conform to the 'Sendable' protocol
 40 |     /// The identifier for the `ActionTemplate`
 41 |     public let id: String
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:47:80: warning: capture of 'disableActionTemplate' with non-sendable type 'ActionTemplate<Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 |         -> Binding<Bool> {
46 |         return .init(get: { self.selectCurrent(selector) },
47 |                      set: { self.dispatch(action: ($0 ? enableActionTemplate : disableActionTemplate)()) })
   |                                                                                `- warning: capture of 'disableActionTemplate' with non-sendable type 'ActionTemplate<Void>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 |     }
49 |
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Action.swift:39:15: note: consider making generic struct 'ActionTemplate' conform to the 'Sendable' protocol
 37 |  The template can have a `Payload`type which is used when creating an actual `Action` from the template.
 38 |  */
 39 | public struct ActionTemplate<Payload> {
    |               `- note: consider making generic struct 'ActionTemplate' conform to the 'Sendable' protocol
 40 |     /// The identifier for the `ActionTemplate`
 41 |     public let id: String
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:63:29: warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
61 |                         send action: @escaping (_ value: Value) -> Action)
62 |         -> Binding<Value> {
63 |         return .init(get: { self.selectCurrent(selector) },
   |                             `- warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
64 |                      set: { self.dispatch(action: action($0)) })
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Store.swift:33:12: note: generic class 'Store' does not conform to the 'Sendable' protocol
 31 |  It is possible to intercept all `Action`s and `State` changes by registering an `Interceptor`.
 32 |  */
 33 | open class Store<State, Environment>: ObservableObject {
    |            `- note: generic class 'Store' does not conform to the 'Sendable' protocol
 34 |     /// The state of the `Store`. It can only be modified by the registered `Reducer`s when `Action`s are dispatched.
 35 |     @Published public private(set) var state: State
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:63:48: warning: capture of 'selector' with non-sendable type 'Selector<State, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
61 |                         send action: @escaping (_ value: Value) -> Action)
62 |         -> Binding<Value> {
63 |         return .init(get: { self.selectCurrent(selector) },
   |                                                `- warning: capture of 'selector' with non-sendable type 'Selector<State, Value>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
64 |                      set: { self.dispatch(action: action($0)) })
65 |     }
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Selector.swift:32:14: note: generic class 'Selector' does not conform to the 'Sendable' protocol
 30 |  `Selector`s can be based on other `Selector`s making it possible to select a combined `Value`.
 31 |  */
 32 | public class Selector<State, Value>: SelectorProtocol {
    |              `- note: generic class 'Selector' does not conform to the 'Sendable' protocol
 33 |     /// An unique identifier used when overriding the `Selector` on the `MockStore`.
 34 |     public let id = UUID()
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:64:29: warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
62 |         -> Binding<Value> {
63 |         return .init(get: { self.selectCurrent(selector) },
64 |                      set: { self.dispatch(action: action($0)) })
   |                             `- warning: capture of 'self' with non-sendable type 'Store<State, Environment>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
65 |     }
66 | }
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/Store.swift:33:12: note: generic class 'Store' does not conform to the 'Sendable' protocol
 31 |  It is possible to intercept all `Action`s and `State` changes by registering an `Interceptor`.
 32 |  */
 33 | open class Store<State, Environment>: ObservableObject {
    |            `- note: generic class 'Store' does not conform to the 'Sendable' protocol
 34 |     /// The state of the `Store`. It can only be modified by the registered `Reducer`s when `Action`s are dispatched.
 35 |     @Published public private(set) var state: State
/Users/admin/builder/spi-builder-workspace/Sources/Fluxor/SwiftUI/Store+Binding.swift:64:51: warning: capture of 'action' with non-sendable type '(Value) -> any Action' in a `@Sendable` closure; this is an error in the Swift 6 language mode
62 |         -> Binding<Value> {
63 |         return .init(get: { self.selectCurrent(selector) },
64 |                      set: { self.dispatch(action: action($0)) })
   |                                                   |- warning: capture of 'action' with non-sendable type '(Value) -> any Action' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                                                   `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
65 |     }
66 | }
[19/19] Emitting module Fluxor
[20/23] Compiling FluxorTestSupport MockStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/FluxorTestSupport/MockStore.swift:16:1: warning: extension declares a conformance of imported type 'AnonymousAction' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Fluxor' introduce this conformance in the future
14 | import XCTest
15 |
16 | extension AnonymousAction: Equatable {
   | |- warning: extension declares a conformance of imported type 'AnonymousAction' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Fluxor' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |     public static func == (lhs: Self, rhs: Self) -> Bool {
18 |         lhs.id == rhs.id
[21/23] Emitting module FluxorTestSupport
/Users/admin/builder/spi-builder-workspace/Sources/FluxorTestSupport/MockStore.swift:16:1: warning: extension declares a conformance of imported type 'AnonymousAction' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Fluxor' introduce this conformance in the future
14 | import XCTest
15 |
16 | extension AnonymousAction: Equatable {
   | |- warning: extension declares a conformance of imported type 'AnonymousAction' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Fluxor' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
17 |     public static func == (lhs: Self, rhs: Self) -> Bool {
18 |         lhs.id == rhs.id
[22/23] Compiling FluxorTestSupport EffectRunner.swift
/Users/admin/builder/spi-builder-workspace/Sources/FluxorTestSupport/EffectRunner.swift:127:13: warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
125 |     func receive(_ input: Input) -> Subscribers.Demand {
126 |         DispatchQueue.main.async {
127 |             input.forEach { self.actions.append($0) }
    |             |- warning: sending 'input' risks causing data races; this is an error in the Swift 6 language mode
    |             `- note: task-isolated 'input' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
128 |         }
129 |         return .unlimited
/Users/admin/builder/spi-builder-workspace/Sources/FluxorTestSupport/EffectRunner.swift:127:29: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
125 |     func receive(_ input: Input) -> Subscribers.Demand {
126 |         DispatchQueue.main.async {
127 |             input.forEach { self.actions.append($0) }
    |                             |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                             `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
128 |         }
129 |         return .unlimited
[23/23] Compiling FluxorTestSupport TestInterceptor.swift
Build complete! (16.35s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Fluxor",
  "name" : "Fluxor",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Fluxor",
      "targets" : [
        "Fluxor"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "FluxorTestSupport",
      "targets" : [
        "FluxorTestSupport"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FluxorTests",
      "module_type" : "SwiftTarget",
      "name" : "FluxorTests",
      "path" : "Tests/FluxorTests",
      "sources" : [
        "ActionTests.swift",
        "EffectsTests.swift",
        "Interceptors/PrintInterceptorTests.swift",
        "Interceptors/TestInterceptorTests.swift",
        "MockStoreTests.swift",
        "Operators/ActionPublisher+OfTypeTests.swift",
        "Operators/ActionPublisher+WasCreatedByTests.swift",
        "Operators/ActionPublisher+WithIdentifierTests.swift",
        "ReducerTests.swift",
        "SelectorTests.swift",
        "StoreTests.swift",
        "SwiftUI/Store+BindingTests.swift",
        "SwiftUI/StoreValueTests.swift"
      ],
      "target_dependencies" : [
        "Fluxor",
        "FluxorTestSupport"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FluxorTestSupport",
      "module_type" : "SwiftTarget",
      "name" : "FluxorTestSupport",
      "path" : "Sources/FluxorTestSupport",
      "product_memberships" : [
        "FluxorTestSupport"
      ],
      "sources" : [
        "EffectRunner.swift",
        "MockStore.swift",
        "TestInterceptor.swift"
      ],
      "target_dependencies" : [
        "Fluxor"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Fluxor",
      "module_type" : "SwiftTarget",
      "name" : "Fluxor",
      "path" : "Sources/Fluxor",
      "product_memberships" : [
        "Fluxor",
        "FluxorTestSupport"
      ],
      "sources" : [
        "Action.swift",
        "Effects.swift",
        "Interceptor.swift",
        "Interceptors/PrintInterceptor.swift",
        "Operators/ActionPublisher+OfType.swift",
        "Operators/ActionPublisher+WasCreatedBy.swift",
        "Operators/ActionPublisher+WithIdentifier.swift",
        "Reducer.swift",
        "Selector.swift",
        "Store.swift",
        "SwiftUI/Store+Binding.swift",
        "SwiftUI/StoreValue.swift"
      ],
      "target_dependencies" : [
        "AnyCodable"
      ],
      "type" : "library"
    },
    {
      "c99name" : "AnyCodableTests",
      "module_type" : "SwiftTarget",
      "name" : "AnyCodableTests",
      "path" : "Tests/AnyCodableTests",
      "sources" : [
        "AnyCodable+DecodableTests.swift",
        "AnyCodable+EncodableTests.swift",
        "AnyCodable+EquatableTests.swift",
        "AnyCodable+StringTests.swift"
      ],
      "target_dependencies" : [
        "AnyCodable"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AnyCodable",
      "module_type" : "SwiftTarget",
      "name" : "AnyCodable",
      "path" : "Sources/AnyCodable",
      "product_memberships" : [
        "Fluxor",
        "FluxorTestSupport"
      ],
      "sources" : [
        "AnyCodable.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.