The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CacheStore, reference 4.0.0 (aa4e88), with Swift 6.2 for macOS (SPM) on 19 Jun 2025 20:38:26 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/0xOpenBytes/CacheStore.git
Reference: 4.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/0xOpenBytes/CacheStore
 * tag               4.0.0      -> FETCH_HEAD
HEAD is now at aa4e884 V4.0.0 (#25)
Cloned https://github.com/0xOpenBytes/CacheStore.git
Revision (git rev-parse @):
aa4e884551f3286f5e841894fd274c17120f7fb2
SUCCESS checkout https://github.com/0xOpenBytes/CacheStore.git at 4.0.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/0xOpenBytes/CacheStore.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/6] Write sources
[5/6] Write swift-version-1EA4D86E10B52AF.txt
[7/21] Emitting module XCTestDynamicOverlay
[8/21] Compiling XCTestDynamicOverlay XCTIsTesting.swift
[9/21] Compiling XCTestDynamicOverlay Unimplemented.swift
[10/21] Compiling XCTestDynamicOverlay XCTCurrentTestCase.swift
[11/21] Compiling XCTestDynamicOverlay XCTFail.swift
[12/21] Compiling XCTestDynamicOverlay Deprecations.swift
[13/21] Compiling XCTestDynamicOverlay GeneratePlaceholder.swift
[14/21] Compiling XCTestDynamicOverlay DefaultInitializable.swift
[15/21] Compiling XCTestDynamicOverlay RuntimeWarnings.swift
[16/45] Compiling t t.swift
[17/45] Compiling t t+Structure.swift
[18/45] Compiling t t+Factories.swift
[19/45] Compiling t t+Assertion.swift
[20/45] Emitting module t
[21/45] Compiling t t+Logging.swift
[22/47] Compiling c c.swift
[23/47] Emitting module c
[24/47] Compiling CustomDump AnyType.swift
[25/47] Compiling CustomDump Box.swift
[26/49] Emitting module CustomDump
[27/49] Compiling CustomDump String.swift
[28/49] Compiling CustomDump XCTAssertNoDifference.swift
[29/49] Compiling CustomDump CoreImage.swift
[30/49] Compiling CustomDump CoreLocation.swift
[31/49] Compiling CustomDump CoreMotion.swift
[32/49] Compiling CustomDump CustomDumpRepresentable.swift
[33/49] Compiling CustomDump CustomDumpStringConvertible.swift
[34/49] Compiling CustomDump UserNotifications.swift
[35/49] Compiling CustomDump UserNotificationsUI.swift
[36/49] Compiling CustomDump CustomDumpReflectable.swift
[37/49] Compiling CustomDump CollectionDifference.swift
[38/49] Compiling CustomDump Mirror.swift
[39/49] Compiling CustomDump Foundation.swift
[40/49] Compiling CustomDump GameKit.swift
[41/49] Compiling CustomDump KeyPath.swift
[42/49] Compiling CustomDump Diff.swift
[43/49] Compiling CustomDump Dump.swift
[44/49] Compiling CustomDump Swift.swift
[45/49] Compiling CustomDump SwiftUI.swift
[46/49] Compiling CustomDump UIKit.swift
[47/49] Compiling CustomDump Photos.swift
[48/49] Compiling CustomDump Speech.swift
[49/49] Compiling CustomDump StoreKit.swift
[50/59] Compiling CacheStore TestStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/TestStore.swift:131:13: warning: capture of non-sendable type 'Key.Type' in an isolated closure; this is an error in the Swift 6 language mode
129 |
130 |         Task {
131 |             nextAction = await effect.effect()
    |             `- warning: capture of non-sendable type 'Key.Type' in an isolated closure; this is an error in the Swift 6 language mode
132 |             sema.signal()
133 |         }
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/TestStore.swift:115:17: warning: capture of non-sendable type 'Key.Type' in an isolated closure; this is an error in the Swift 6 language mode
113 |
114 |     /// Receive an action from the effects **FIFO** queue
115 |     public func receive(
    |                 `- warning: capture of non-sendable type 'Key.Type' in an isolated closure; this is an error in the Swift 6 language mode
116 |         _ action: Action,
117 |         file: StaticString = #filePath,
[51/59] Compiling CacheStore StoreView.swift
[52/59] Compiling CacheStore ScopedStore.swift
[53/59] Compiling CacheStore StoreContent.swift
[54/59] Compiling CacheStore ScopedCacheStore.swift
[55/59] Compiling CacheStore Store+StoreContent.swift
[56/59] Compiling CacheStore ActionHandling.swift
[57/59] Compiling CacheStore CacheStore.swift
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/CacheStore/CacheStore.swift:194:25: warning: capture of non-sendable type 'Key.Type' in an isolated closure
192 |     ) -> Binding<Value> {
193 |         Binding(
194 |             get: { self.get(key) ?? fallback },
    |                         `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
195 |             set: { self.set(value: $0, forKey: key) }
196 |         )
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/CacheStore/CacheStore.swift:188:10: warning: capture of non-sendable type 'Key.Type' in an isolated closure
186 |
187 |     /// Creates a `Binding` for the given `Key`
188 |     func binding<Value>(
    |          `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
189 |         _ key: Key,
190 |         as: Value.Type = Value.self,
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/CacheStore/CacheStore.swift:195:25: warning: capture of non-sendable type 'Key.Type' in an isolated closure
193 |         Binding(
194 |             get: { self.get(key) ?? fallback },
195 |             set: { self.set(value: $0, forKey: key) }
    |                         `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
196 |         )
197 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/CacheStore/CacheStore.swift:188:10: warning: capture of non-sendable type 'Key.Type' in an isolated closure
186 |
187 |     /// Creates a `Binding` for the given `Key`
188 |     func binding<Value>(
    |          `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
189 |         _ key: Key,
190 |         as: Value.Type = Value.self,
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/CacheStore/CacheStore.swift:205:25: warning: capture of non-sendable type 'Key.Type' in an isolated closure
203 |     ) -> Binding<Value?> {
204 |         Binding(
205 |             get: { self.get(key) },
    |                         `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
206 |             set: { self.set(value: $0, forKey: key) }
207 |         )
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/CacheStore/CacheStore.swift:200:10: warning: capture of non-sendable type 'Key.Type' in an isolated closure
198 |
199 |     /// Creates a `Binding` for the given `Key` where the value is Optional
200 |     func optionalBinding<Value>(
    |          `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
201 |         _ key: Key,
202 |         as: Value.Type = Value.self
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/CacheStore/CacheStore.swift:206:25: warning: capture of non-sendable type 'Key.Type' in an isolated closure
204 |         Binding(
205 |             get: { self.get(key) },
206 |             set: { self.set(value: $0, forKey: key) }
    |                         `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
207 |         )
208 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/CacheStore/CacheStore.swift:200:10: warning: capture of non-sendable type 'Key.Type' in an isolated closure
198 |
199 |     /// Creates a `Binding` for the given `Key` where the value is Optional
200 |     func optionalBinding<Value>(
    |          `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
201 |         _ key: Key,
202 |         as: Value.Type = Value.self
[58/59] Compiling CacheStore Store.swift
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:153:17: warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
151 |
152 |     /// Creates a `ScopedStore`
153 |     public func scope<ScopedKey: Hashable, ScopedAction, ScopedDependency>(
    |                 `- warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
154 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
155 |         actionHandler: StoreActionHandler<ScopedKey, ScopedAction, ScopedDependency>,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:349:15: note: type alias declared here
347 |
348 |     /// This transformation uses two UniDirectionalTransformations to be able to transform `From` into `To` and `To` into `From`.
349 |     typealias BiDirectionalTransformation<From, To> = (
    |               `- note: type alias declared here
350 |         from: UniDirectionalTransformation<From, To>,
351 |         to: UniDirectionalTransformation<To, From>
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:153:17: warning: cannot use enum 'c' here; 'c' was not imported by this file
151 |
152 |     /// Creates a `ScopedStore`
153 |     public func scope<ScopedKey: Hashable, ScopedAction, ScopedDependency>(
    |                 `- warning: cannot use enum 'c' here; 'c' was not imported by this file
154 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
155 |         actionHandler: StoreActionHandler<ScopedKey, ScopedAction, ScopedDependency>,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:45:13: note: enum declared here
 43 |
 44 | /// Composition
 45 | public enum c {
    |             `- note: enum declared here
 46 |     /// `Error` that reports the missing keys
 47 |     public struct MissingRequiredKeysError<Key: Hashable>: LocalizedError {
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:196:17: warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
194 |
195 |     /// Creates an Actionless `ScopedStore`
196 |     public func actionlessScope<ScopedKey: Hashable, ScopedDependency>(
    |                 `- warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
197 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
198 |         dependencyTransformation: (Dependency) -> ScopedDependency,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:349:15: note: type alias declared here
347 |
348 |     /// This transformation uses two UniDirectionalTransformations to be able to transform `From` into `To` and `To` into `From`.
349 |     typealias BiDirectionalTransformation<From, To> = (
    |               `- note: type alias declared here
350 |         from: UniDirectionalTransformation<From, To>,
351 |         to: UniDirectionalTransformation<To, From>
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:196:17: warning: cannot use enum 'c' here; 'c' was not imported by this file
194 |
195 |     /// Creates an Actionless `ScopedStore`
196 |     public func actionlessScope<ScopedKey: Hashable, ScopedDependency>(
    |                 `- warning: cannot use enum 'c' here; 'c' was not imported by this file
197 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
198 |         dependencyTransformation: (Dependency) -> ScopedDependency,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:45:13: note: enum declared here
 43 |
 44 | /// Composition
 45 | public enum c {
    |             `- note: enum declared here
 46 |     /// `Error` that reports the missing keys
 47 |     public struct MissingRequiredKeysError<Key: Hashable>: LocalizedError {
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:251:10: warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
249 |
250 |     /// Creates a `ScopedStore`
251 |     func scope<ScopedKey: Hashable, ScopedAction>(
    |          `- warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
252 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
253 |         actionHandler: StoreActionHandler<ScopedKey, ScopedAction, Void>,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:349:15: note: type alias declared here
347 |
348 |     /// This transformation uses two UniDirectionalTransformations to be able to transform `From` into `To` and `To` into `From`.
349 |     typealias BiDirectionalTransformation<From, To> = (
    |               `- note: type alias declared here
350 |         from: UniDirectionalTransformation<From, To>,
351 |         to: UniDirectionalTransformation<To, From>
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:251:10: warning: cannot use enum 'c' here; 'c' was not imported by this file
249 |
250 |     /// Creates a `ScopedStore`
251 |     func scope<ScopedKey: Hashable, ScopedAction>(
    |          `- warning: cannot use enum 'c' here; 'c' was not imported by this file
252 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
253 |         actionHandler: StoreActionHandler<ScopedKey, ScopedAction, Void>,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:45:13: note: enum declared here
 43 |
 44 | /// Composition
 45 | public enum c {
    |             `- note: enum declared here
 46 |     /// `Error` that reports the missing keys
 47 |     public struct MissingRequiredKeysError<Key: Hashable>: LocalizedError {
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:267:10: warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
265 |
266 |     /// Creates a `ScopedStore`
267 |     func actionlessScope<ScopedKey: Hashable>(
    |          `- warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
268 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
269 |         defaultCache: [ScopedKey: Any] = [:]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:349:15: note: type alias declared here
347 |
348 |     /// This transformation uses two UniDirectionalTransformations to be able to transform `From` into `To` and `To` into `From`.
349 |     typealias BiDirectionalTransformation<From, To> = (
    |               `- note: type alias declared here
350 |         from: UniDirectionalTransformation<From, To>,
351 |         to: UniDirectionalTransformation<To, From>
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:267:10: warning: cannot use enum 'c' here; 'c' was not imported by this file
265 |
266 |     /// Creates a `ScopedStore`
267 |     func actionlessScope<ScopedKey: Hashable>(
    |          `- warning: cannot use enum 'c' here; 'c' was not imported by this file
268 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
269 |         defaultCache: [ScopedKey: Any] = [:]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:45:13: note: enum declared here
 43 |
 44 | /// Composition
 45 | public enum c {
    |             `- note: enum declared here
 46 |     /// `Error` that reports the missing keys
 47 |     public struct MissingRequiredKeysError<Key: Hashable>: LocalizedError {
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:217:25: warning: capture of non-sendable type 'Key.Type' in an isolated closure
215 |     ) -> Binding<Value> {
216 |         Binding(
217 |             get: { self.get(key) ?? fallback },
    |                         `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
218 |             set: { self.handle(action: using($0)) }
219 |         )
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:211:17: warning: capture of non-sendable type 'Key.Type' in an isolated closure
209 |
210 |     /// Creates a `Binding` for the given `Key` using an `Action` to set the value
211 |     public func binding<Value>(
    |                 `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
212 |         _ key: Key,
213 |         fallback: Value,
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:218:20: warning: capture of non-sendable type 'Key.Type' in an isolated closure
216 |         Binding(
217 |             get: { self.get(key) ?? fallback },
218 |             set: { self.handle(action: using($0)) }
    |                    `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
219 |         )
220 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:211:17: warning: capture of non-sendable type 'Key.Type' in an isolated closure
209 |
210 |     /// Creates a `Binding` for the given `Key` using an `Action` to set the value
211 |     public func binding<Value>(
    |                 `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
212 |         _ key: Key,
213 |         fallback: Value,
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:229:25: warning: capture of non-sendable type 'Key.Type' in an isolated closure
227 |     ) -> Binding<Value?> {
228 |         Binding(
229 |             get: { self.get(key) },
    |                         `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
230 |             set: { self.handle(action: using($0)) }
231 |         )
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:223:17: warning: capture of non-sendable type 'Key.Type' in an isolated closure
221 |
222 |     /// Creates a `Binding` for the given `Key`, where the value is Optional, using an `Action` to set the value
223 |     public func optionalBinding<Value>(
    |                 `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
224 |         _ key: Key,
225 |         as: Value.Type = Value.self,
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:230:20: warning: capture of non-sendable type 'Key.Type' in an isolated closure
228 |         Binding(
229 |             get: { self.get(key) },
230 |             set: { self.handle(action: using($0)) }
    |                    `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
231 |         )
232 |     }
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:223:17: warning: capture of non-sendable type 'Key.Type' in an isolated closure
221 |
222 |     /// Creates a `Binding` for the given `Key`, where the value is Optional, using an `Action` to set the value
223 |     public func optionalBinding<Value>(
    |                 `- warning: capture of non-sendable type 'Key.Type' in an isolated closure
224 |         _ key: Key,
225 |         as: Value.Type = Value.self,
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:302:43: warning: capture of non-sendable type 'Key.Type' in an isolated closure; this is an error in the Swift 6 language mode
300 |         if let actionEffect = actionEffect {
301 |             cancel(id: actionEffect.id)
302 |             let effectTask = Task { [weak self] in
    |                                           `- warning: capture of non-sendable type 'Key.Type' in an isolated closure; this is an error in the Swift 6 language mode
303 |                 defer { self?.cancel(id: actionEffect.id) }
304 |
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:311:21: warning: capture of non-sendable type 'Key.Type' in an isolated closure; this is an error in the Swift 6 language mode
309 |                 if Task.isCancelled { return }
310 |
311 |                 self?.handle(action: nextAction)
    |                     `- warning: capture of non-sendable type 'Key.Type' in an isolated closure; this is an error in the Swift 6 language mode
312 |             }
313 |             lock.lock()
[59/59] Emitting module CacheStore
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:153:17: warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
151 |
152 |     /// Creates a `ScopedStore`
153 |     public func scope<ScopedKey: Hashable, ScopedAction, ScopedDependency>(
    |                 `- warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
154 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
155 |         actionHandler: StoreActionHandler<ScopedKey, ScopedAction, ScopedDependency>,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:349:15: note: type alias declared here
347 |
348 |     /// This transformation uses two UniDirectionalTransformations to be able to transform `From` into `To` and `To` into `From`.
349 |     typealias BiDirectionalTransformation<From, To> = (
    |               `- note: type alias declared here
350 |         from: UniDirectionalTransformation<From, To>,
351 |         to: UniDirectionalTransformation<To, From>
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:153:17: warning: cannot use enum 'c' here; 'c' was not imported by this file
151 |
152 |     /// Creates a `ScopedStore`
153 |     public func scope<ScopedKey: Hashable, ScopedAction, ScopedDependency>(
    |                 `- warning: cannot use enum 'c' here; 'c' was not imported by this file
154 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
155 |         actionHandler: StoreActionHandler<ScopedKey, ScopedAction, ScopedDependency>,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:45:13: note: enum declared here
 43 |
 44 | /// Composition
 45 | public enum c {
    |             `- note: enum declared here
 46 |     /// `Error` that reports the missing keys
 47 |     public struct MissingRequiredKeysError<Key: Hashable>: LocalizedError {
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:196:17: warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
194 |
195 |     /// Creates an Actionless `ScopedStore`
196 |     public func actionlessScope<ScopedKey: Hashable, ScopedDependency>(
    |                 `- warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
197 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
198 |         dependencyTransformation: (Dependency) -> ScopedDependency,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:349:15: note: type alias declared here
347 |
348 |     /// This transformation uses two UniDirectionalTransformations to be able to transform `From` into `To` and `To` into `From`.
349 |     typealias BiDirectionalTransformation<From, To> = (
    |               `- note: type alias declared here
350 |         from: UniDirectionalTransformation<From, To>,
351 |         to: UniDirectionalTransformation<To, From>
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:196:17: warning: cannot use enum 'c' here; 'c' was not imported by this file
194 |
195 |     /// Creates an Actionless `ScopedStore`
196 |     public func actionlessScope<ScopedKey: Hashable, ScopedDependency>(
    |                 `- warning: cannot use enum 'c' here; 'c' was not imported by this file
197 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
198 |         dependencyTransformation: (Dependency) -> ScopedDependency,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:45:13: note: enum declared here
 43 |
 44 | /// Composition
 45 | public enum c {
    |             `- note: enum declared here
 46 |     /// `Error` that reports the missing keys
 47 |     public struct MissingRequiredKeysError<Key: Hashable>: LocalizedError {
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:251:10: warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
249 |
250 |     /// Creates a `ScopedStore`
251 |     func scope<ScopedKey: Hashable, ScopedAction>(
    |          `- warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
252 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
253 |         actionHandler: StoreActionHandler<ScopedKey, ScopedAction, Void>,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:349:15: note: type alias declared here
347 |
348 |     /// This transformation uses two UniDirectionalTransformations to be able to transform `From` into `To` and `To` into `From`.
349 |     typealias BiDirectionalTransformation<From, To> = (
    |               `- note: type alias declared here
350 |         from: UniDirectionalTransformation<From, To>,
351 |         to: UniDirectionalTransformation<To, From>
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:251:10: warning: cannot use enum 'c' here; 'c' was not imported by this file
249 |
250 |     /// Creates a `ScopedStore`
251 |     func scope<ScopedKey: Hashable, ScopedAction>(
    |          `- warning: cannot use enum 'c' here; 'c' was not imported by this file
252 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
253 |         actionHandler: StoreActionHandler<ScopedKey, ScopedAction, Void>,
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:45:13: note: enum declared here
 43 |
 44 | /// Composition
 45 | public enum c {
    |             `- note: enum declared here
 46 |     /// `Error` that reports the missing keys
 47 |     public struct MissingRequiredKeysError<Key: Hashable>: LocalizedError {
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:267:10: warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
265 |
266 |     /// Creates a `ScopedStore`
267 |     func actionlessScope<ScopedKey: Hashable>(
    |          `- warning: cannot use type alias 'BiDirectionalTransformation' here; 'c' was not imported by this file
268 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
269 |         defaultCache: [ScopedKey: Any] = [:]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:349:15: note: type alias declared here
347 |
348 |     /// This transformation uses two UniDirectionalTransformations to be able to transform `From` into `To` and `To` into `From`.
349 |     typealias BiDirectionalTransformation<From, To> = (
    |               `- note: type alias declared here
350 |         from: UniDirectionalTransformation<From, To>,
351 |         to: UniDirectionalTransformation<To, From>
/Users/admin/builder/spi-builder-workspace/Sources/CacheStore/Stores/Store/Store.swift:267:10: warning: cannot use enum 'c' here; 'c' was not imported by this file
265 |
266 |     /// Creates a `ScopedStore`
267 |     func actionlessScope<ScopedKey: Hashable>(
    |          `- warning: cannot use enum 'c' here; 'c' was not imported by this file
268 |         keyTransformation: BiDirectionalTransformation<Key?, ScopedKey?>,
269 |         defaultCache: [ScopedKey: Any] = [:]
/Users/admin/builder/spi-builder-workspace/.build/checkouts/c/Sources/c/c.swift:45:13: note: enum declared here
 43 |
 44 | /// Composition
 45 | public enum c {
    |             `- note: enum declared here
 46 |     /// `Error` that reports the missing keys
 47 |     public struct MissingRequiredKeysError<Key: Hashable>: LocalizedError {
Build complete! (23.02s)
Fetching https://github.com/0xOpenBytes/c
Fetching https://github.com/0xLeif/swift-custom-dump
[1/1379] Fetching swift-custom-dump
[84/1616] Fetching swift-custom-dump, c
Fetched https://github.com/0xOpenBytes/c from cache (0.76s)
Fetched https://github.com/0xLeif/swift-custom-dump from cache (0.76s)
Computing version for https://github.com/0xLeif/swift-custom-dump
Computed https://github.com/0xLeif/swift-custom-dump at 0.4.1 (1.30s)
Fetching https://github.com/pointfreeco/xctest-dynamic-overlay
[1/5467] Fetching xctest-dynamic-overlay
Fetched https://github.com/pointfreeco/xctest-dynamic-overlay from cache (1.34s)
Computing version for https://github.com/0xOpenBytes/c
Computed https://github.com/0xOpenBytes/c at 3.0.2 (1.88s)
Fetching https://github.com/0xOpenBytes/t
[1/368] Fetching t
Fetched https://github.com/0xOpenBytes/t from cache (0.83s)
Computing version for https://github.com/0xOpenBytes/t
Computed https://github.com/0xOpenBytes/t at 1.0.4 (1.37s)
Computing version for https://github.com/pointfreeco/xctest-dynamic-overlay
Computed https://github.com/pointfreeco/xctest-dynamic-overlay at 0.9.0 (0.53s)
Creating working copy for https://github.com/0xLeif/swift-custom-dump
Working copy of https://github.com/0xLeif/swift-custom-dump resolved at 0.4.1
Creating working copy for https://github.com/0xOpenBytes/t
Working copy of https://github.com/0xOpenBytes/t resolved at 1.0.4
Creating working copy for https://github.com/0xOpenBytes/c
Working copy of https://github.com/0xOpenBytes/c resolved at 3.0.2
Creating working copy for https://github.com/pointfreeco/xctest-dynamic-overlay
Working copy of https://github.com/pointfreeco/xctest-dynamic-overlay resolved at 0.9.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "c",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/0xOpenBytes/c"
    },
    {
      "identity" : "swift-custom-dump",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/0xLeif/swift-custom-dump"
    }
  ],
  "manifest_display_name" : "CacheStore",
  "name" : "CacheStore",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "CacheStore",
      "targets" : [
        "CacheStore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CacheStoreTests",
      "module_type" : "SwiftTarget",
      "name" : "CacheStoreTests",
      "path" : "Tests/CacheStoreTests",
      "sources" : [
        "CacheStoreTests.swift",
        "StoreContentTests.swift",
        "StoreTests.swift"
      ],
      "target_dependencies" : [
        "CacheStore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CacheStore",
      "module_type" : "SwiftTarget",
      "name" : "CacheStore",
      "path" : "Sources/CacheStore",
      "product_dependencies" : [
        "c",
        "CustomDump"
      ],
      "product_memberships" : [
        "CacheStore"
      ],
      "sources" : [
        "Actions/ActionHandling.swift",
        "Stores/CacheStore/CacheStore.swift",
        "Stores/CacheStore/ScopedCacheStore.swift",
        "Stores/Store/Content/Store+StoreContent.swift",
        "Stores/Store/Content/StoreContent.swift",
        "Stores/Store/Content/StoreView.swift",
        "Stores/Store/ScopedStore.swift",
        "Stores/Store/Store.swift",
        "Stores/Store/TestStore.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.