The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of swift-standard-clients, reference 0.1.1 (397f90), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 07:22:15 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/capturecontext/swift-standard-clients.git
Reference: 0.1.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/capturecontext/swift-standard-clients
 * tag               0.1.1      -> FETCH_HEAD
HEAD is now at 397f905 feat: StandardClients(+Live) products
Cloned https://github.com/capturecontext/swift-standard-clients.git
Revision (git rev-parse @):
397f90502948a0acb2d0442ec4c70fec5f87a677
SUCCESS checkout https://github.com/capturecontext/swift-standard-clients.git at 0.1.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/capturecontext/swift-standard-clients.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/47] Write sources
[16/47] Write swift-version-1EA4D86E10B52AF.txt
[18/94] Emitting module Prelude
[19/98] Compiling Prelude Compose.swift
[20/98] Compiling Prelude Pipe.swift
[21/98] Compiling Prelude KeyPath.swift
[22/98] Compiling Prelude Match.swift
[23/98] Compiling Prelude Never.swift
[24/98] Compiling Prelude Sequence.swift
[25/98] Compiling Prelude Set.swift
[26/98] Compiling Prelude String.swift
[27/98] Compiling Prelude Pack.swift
[28/98] Compiling Prelude Scope.swift
[29/98] Compiling Prelude Equatable.swift
[30/98] Compiling Prelude Filterable.swift
[31/98] Compiling Prelude Endo.swift
[32/98] Compiling Prelude Func.swift
[33/98] Compiling Prelude Function.swift
[34/98] Compiling Prelude And.swift
[35/98] Compiling Prelude Equal.swift
[36/98] Compiling Prelude Or.swift
[37/98] Compiling Prelude Xor.swift
[38/98] Compiling Prelude Cast.swift
[39/98] Compiling Prelude Operators+Impl.swift
[40/98] Compiling Prelude Operators.swift
[41/98] Compiling Prelude PrecedenceGroups.swift
[42/98] Compiling Prelude Optional.swift
[43/98] Compiling Prelude Parallel.swift
[44/98] Compiling Prelude Hole.swift
[45/98] Compiling Prelude IO.swift
[46/98] Compiling Prelude Monoid.swift
[47/98] Compiling Prelude NearSemiring.swift
[48/98] Compiling DataRepresentable DataRepresentable.swift
/Users/admin/builder/spi-builder-workspace/Sources/DataRepresentable/DataRepresentable.swift:50:24: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
48 |   public var dataRepresentation: Data {
49 |     var value = self
50 |     return Data(bytes: &value, count: MemoryLayout<Self>.size)
   |                        `- warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
51 |   }
52 |
[49/98] Emitting module DataRepresentable
[50/98] Compiling DataRepresentable AnyDataRepresenable.swift
[50/98] Write Objects.LinkFileList
[51/98] Archiving libDataRepresentable.a
[53/98] Compiling Prelude Collection.swift
[54/98] Compiling Prelude Comparable.swift
[55/98] Compiling Prelude Comparator.swift
[56/98] Compiling Prelude Const.swift
[57/98] Compiling Prelude Curry.swift
[58/98] Compiling Prelude Tuple.swift
[59/98] Compiling Prelude Unit.swift
[60/98] Compiling Prelude Alt.swift
[61/98] Compiling Prelude Array.swift
[62/98] Compiling Prelude CommutativeRing.swift
[63/98] Compiling Prelude EuclideanRing.swift
[64/98] Compiling Prelude Field.swift
[65/98] Compiling Prelude FreeNearSemiring.swift
[66/98] Compiling Prelude HeytingAlgebra.swift
[67/98] Compiling Prelude Plus.swift
[68/98] Compiling Prelude Ring.swift
[69/98] Compiling Prelude Semigroup.swift
[70/98] Compiling Prelude Semiring.swift
[71/117] Compiling HapticEngineClient HapticEngineClient.swift
[72/117] Compiling HapticEngineClient HapticEngineClientOperations.swift
[73/117] Compiling HapticEngineClient HapticFeedback.swift
[74/117] Emitting module HapticEngineClient
[74/117] Write Objects.LinkFileList
[75/117] Archiving libHapticEngineClient.a
[77/117] Compiling IDFAPermissionsClient IDFAPermissionsClientOperations.swift
[78/117] Emitting module IDFAPermissionsClient
[79/117] Compiling IDFAPermissionsClient IDFAPermissionsClient.swift
[79/117] Write Objects.LinkFileList
[81/117] Compiling CacheClient CacheClientOperations.swift
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:9:22: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 7 |
 8 | extension CacheClient.Operations {
 9 |   public struct Save<Key: Hashable, Value>: Function {
   |                      `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |     public typealias Input = (Key, Value, Int?)
11 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:27: note: 'Key' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                           `- note: 'Key' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:9:37: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 7 |
 8 | extension CacheClient.Operations {
 9 |   public struct Save<Key: Hashable, Value>: Function {
   |                                     `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |     public typealias Input = (Key, Value, Int?)
11 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:42: note: 'Value' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                                          `- note: 'Value' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:23:22: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |   }
22 |
23 |   public struct Load<Key: Hashable, Value>: Function {
   |                      `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |     public typealias Input = Key
25 |     public typealias Output = Value?
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:27: note: 'Key' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                           `- note: 'Key' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:23:37: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |   }
22 |
23 |   public struct Load<Key: Hashable, Value>: Function {
   |                                     `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |     public typealias Input = Key
25 |     public typealias Output = Value?
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:42: note: 'Value' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                                          `- note: 'Value' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:37:24: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
35 |   }
36 |
37 |   public struct Remove<Key: Hashable, Value>: Function {
   |                        `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
38 |     public typealias Input = Key
39 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:27: note: 'Key' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                           `- note: 'Key' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:37:39: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
35 |   }
36 |
37 |   public struct Remove<Key: Hashable, Value>: Function {
   |                                       `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
38 |     public typealias Input = Key
39 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:42: note: 'Value' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                                          `- note: 'Value' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:51:33: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
49 |   }
50 |
51 |   public struct RemoveAllValues<Key: Hashable, Value>: Function {
   |                                 `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
52 |     public typealias Input = Void
53 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:27: note: 'Key' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                           `- note: 'Key' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:51:48: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
49 |   }
50 |
51 |   public struct RemoveAllValues<Key: Hashable, Value>: Function {
   |                                                `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
52 |     public typealias Input = Void
53 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:42: note: 'Value' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                                          `- note: 'Value' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
[82/117] Compiling CacheClient CacheClient.swift
[83/117] Emitting module CacheClient
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:9:22: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 7 |
 8 | extension CacheClient.Operations {
 9 |   public struct Save<Key: Hashable, Value>: Function {
   |                      `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |     public typealias Input = (Key, Value, Int?)
11 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:27: note: 'Key' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                           `- note: 'Key' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:9:37: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 7 |
 8 | extension CacheClient.Operations {
 9 |   public struct Save<Key: Hashable, Value>: Function {
   |                                     `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
10 |     public typealias Input = (Key, Value, Int?)
11 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:42: note: 'Value' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                                          `- note: 'Value' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:23:22: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |   }
22 |
23 |   public struct Load<Key: Hashable, Value>: Function {
   |                      `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |     public typealias Input = Key
25 |     public typealias Output = Value?
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:27: note: 'Key' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                           `- note: 'Key' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:23:37: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
21 |   }
22 |
23 |   public struct Load<Key: Hashable, Value>: Function {
   |                                     `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |     public typealias Input = Key
25 |     public typealias Output = Value?
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:42: note: 'Value' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                                          `- note: 'Value' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:37:24: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
35 |   }
36 |
37 |   public struct Remove<Key: Hashable, Value>: Function {
   |                        `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
38 |     public typealias Input = Key
39 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:27: note: 'Key' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                           `- note: 'Key' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:37:39: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
35 |   }
36 |
37 |   public struct Remove<Key: Hashable, Value>: Function {
   |                                       `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
38 |     public typealias Input = Key
39 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:42: note: 'Value' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                                          `- note: 'Value' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:51:33: warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
49 |   }
50 |
51 |   public struct RemoveAllValues<Key: Hashable, Value>: Function {
   |                                 `- warning: generic parameter 'Key' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
52 |     public typealias Input = Void
53 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:27: note: 'Key' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                           `- note: 'Key' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClientOperations.swift:51:48: warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
49 |   }
50 |
51 |   public struct RemoveAllValues<Key: Hashable, Value>: Function {
   |                                                `- warning: generic parameter 'Value' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
52 |     public typealias Input = Void
53 |     public typealias Output = Void
/Users/admin/builder/spi-builder-workspace/Sources/CacheClient/CacheClient.swift:3:42: note: 'Value' previously declared here
 1 | import Foundation
 2 |
 3 | public struct CacheClient<Key: Hashable, Value> {
   |                                          `- note: 'Value' previously declared here
 4 |   public init(
 5 |     saveValue: Operations.Save<Key, Value>,
[83/120] Write Objects.LinkFileList
[85/121] Compiling UserDefaultsClient UserDefaultsClient.swift
[86/121] Emitting module UserDefaultsClient
[87/121] Compiling UserDefaultsClient UserDefaultsClientOperations.swift
[88/121] Compiling NotificationsPermissionsClient NotificationsPermissionsClientOperations.swift
[88/121] Archiving libIDFAPermissionsClient.a
[89/121] Write Objects.LinkFileList
[90/121] Archiving libCacheClient.a
[92/121] Emitting module KeychainClient
[93/121] Compiling KeychainClient KeychainClientOperations.swift
[94/121] Compiling KeychainClient KeychainClient.swift
[94/121] Write Objects.LinkFileList
[95/121] Archiving libUserDefaultsClient.a
[96/121] Archiving libKeychainClient.a
[98/142] Emitting module NotificationsPermissionsClient
[99/142] Compiling NotificationsPermissionsClient NotificationsPermissionsClient.swift
[99/142] Write Objects.LinkFileList
[100/142] Archiving libNotificationsPermissionsClient.a
[102/142] Compiling HapticEngineClientLive HapticEngineClientLive.swift
[103/149] Compiling HapticEngineClientLive HapticFeedback.swift
[104/149] Emitting module HapticEngineClientLive
[105/149] Compiling HapticEngineClientLive Exports.swift
[105/149] Write Objects.LinkFileList
[106/149] Archiving libHapticEngineClientLive.a
[108/149] Compiling MemoryCacheClient MemoryCacheClient.swift
[109/149] Compiling UserDefaultsClientLive Exports.swift
[110/149] Compiling UserDefaultsClientLive UserDefaultsClientLive.swift
[111/149] Emitting module UserDefaultsClientLive
[111/149] Write Objects.LinkFileList
[113/149] Compiling KeychainClientLive KeychainClientAccessPolicy.swift
[114/149] Compiling KeychainClientLive NSLocking+.swift
[115/150] Emitting module StandardClients
[116/150] Compiling StandardClients Exports.swift
[116/150] Archiving libUserDefaultsClientLive.a
[117/150] Write Objects.LinkFileList
[118/150] Archiving libStandardClients.a
[120/150] Compiling KeychainClientLive Keychain+AccessOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/KeychainClientLive/Keychain/Keychain+AccessOptions.swift:87:16: warning: 'kSecAttrAccessibleAlways' was deprecated in macOS 10.14: Use an accessibility level that provides some user protection, such as kSecAttrAccessibleAfterFirstUnlock [#DeprecatedDeclaration]
85 |         return kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly
86 |       case .accessibleAlways:
87 |         return kSecAttrAccessibleAlways
   |                `- warning: 'kSecAttrAccessibleAlways' was deprecated in macOS 10.14: Use an accessibility level that provides some user protection, such as kSecAttrAccessibleAfterFirstUnlock [#DeprecatedDeclaration]
88 |       case .accessibleAlwaysThisDeviceOnly:
89 |         return kSecAttrAccessibleAlwaysThisDeviceOnly
/Users/admin/builder/spi-builder-workspace/Sources/KeychainClientLive/Keychain/Keychain+AccessOptions.swift:89:16: warning: 'kSecAttrAccessibleAlwaysThisDeviceOnly' was deprecated in macOS 10.14: Use an accessibility level that provides some user protection, such as kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly [#DeprecatedDeclaration]
87 |         return kSecAttrAccessibleAlways
88 |       case .accessibleAlwaysThisDeviceOnly:
89 |         return kSecAttrAccessibleAlwaysThisDeviceOnly
   |                `- warning: 'kSecAttrAccessibleAlwaysThisDeviceOnly' was deprecated in macOS 10.14: Use an accessibility level that provides some user protection, such as kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly [#DeprecatedDeclaration]
90 |       }
91 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[121/150] Compiling KeychainClientLive Keychain+Constants.swift
[122/150] Compiling KeychainClientLive Keychain+OperationResult.swift
[123/150] Compiling KeychainClientLive Keychain+Error.swift
[124/150] Compiling KeychainClientLive Exports.swift
[125/150] Compiling KeychainClientLive CoreFoundation+.swift
[126/150] Emitting module KeychainClientLive
[127/150] Compiling KeychainClientLive Keychain.swift
[128/150] Compiling IDFAPermissionsClientLive Exports.swift
[129/150] Compiling IDFAPermissionsClientLive IDFAPermissionsClientLive.swift
[130/150] Compiling IDFAPermissionsClientLive AuthorizationStatus.swift
[131/150] Emitting module IDFAPermissionsClientLive
[131/150] Write Objects.LinkFileList
[132/150] Archiving libIDFAPermissionsClientLive.a
[134/150] Compiling KeychainClientLive KeychainClientLive.swift
[134/150] Write Objects.LinkFileList
[136/150] Compiling MemoryCacheClient MemoryCache.swift
[137/150] Compiling MemoryCacheClient Exports.swift
[138/150] Emitting module MemoryCacheClient
[138/150] Write Objects.LinkFileList
[139/150] Archiving libKeychainClientLive.a
[140/150] Archiving libMemoryCacheClient.a
[142/150] Compiling NotificationsPermissionsClientLive AuthorizationStatus.swift
[143/150] Emitting module NotificationsPermissionsClientLive
[144/150] Compiling NotificationsPermissionsClientLive Exports.swift
[145/150] Compiling NotificationsPermissionsClientLive AuthorizationOptions.swift
[146/150] Compiling NotificationsPermissionsClientLive NotificationsPermissionsClientLive.swift
[146/150] Write Objects.LinkFileList
[147/150] Archiving libNotificationsPermissionsClientLive.a
[149/152] Compiling StandardClientsLive Exports.swift
[150/152] Emitting module StandardClientsLive
[150/152] Write Objects.LinkFileList
[151/152] Archiving libStandardClientsLive.a
Build complete! (13.10s)
Fetching https://github.com/capturecontext/swift-prelude.git
[1/1959] Fetching swift-prelude
Fetched https://github.com/capturecontext/swift-prelude.git from cache (0.90s)
Computing version for https://github.com/capturecontext/swift-prelude.git
Computed https://github.com/capturecontext/swift-prelude.git at 0.0.3 (1.44s)
Creating working copy for https://github.com/capturecontext/swift-prelude.git
Working copy of https://github.com/capturecontext/swift-prelude.git resolved at 0.0.3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-prelude",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.0.1",
            "upper_bound" : "0.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/capturecontext/swift-prelude.git"
    }
  ],
  "manifest_display_name" : "swift-standard-clients",
  "name" : "swift-standard-clients",
  "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" : "StandardClients",
      "targets" : [
        "StandardClients"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "StandardClientsLive",
      "targets" : [
        "StandardClientsLive"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "CacheClient",
      "targets" : [
        "CacheClient"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "MemoryCacheClient",
      "targets" : [
        "MemoryCacheClient"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "DataRepresentable",
      "targets" : [
        "DataRepresentable"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "HapticEngineClient",
      "targets" : [
        "HapticEngineClient"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "HapticEngineClientLive",
      "targets" : [
        "HapticEngineClientLive"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "IDFAPermissionsClient",
      "targets" : [
        "IDFAPermissionsClient"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "IDFAPermissionsClientLive",
      "targets" : [
        "IDFAPermissionsClientLive"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "KeychainClient",
      "targets" : [
        "KeychainClient"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "KeychainClientLive",
      "targets" : [
        "KeychainClientLive"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "NotificationsPermissionsClient",
      "targets" : [
        "NotificationsPermissionsClient"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "NotificationsPermissionsClientLive",
      "targets" : [
        "NotificationsPermissionsClientLive"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "UserDefaultsClient",
      "targets" : [
        "UserDefaultsClient"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "UserDefaultsClientLive",
      "targets" : [
        "UserDefaultsClientLive"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "UserDefaultsClientLive",
      "module_type" : "SwiftTarget",
      "name" : "UserDefaultsClientLive",
      "path" : "Sources/UserDefaultsClientLive",
      "product_memberships" : [
        "StandardClientsLive",
        "UserDefaultsClientLive"
      ],
      "sources" : [
        "Exports.swift",
        "UserDefaultsClientLive.swift"
      ],
      "target_dependencies" : [
        "UserDefaultsClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "UserDefaultsClient",
      "module_type" : "SwiftTarget",
      "name" : "UserDefaultsClient",
      "path" : "Sources/UserDefaultsClient",
      "product_dependencies" : [
        "Prelude"
      ],
      "product_memberships" : [
        "StandardClients",
        "StandardClientsLive",
        "UserDefaultsClient",
        "UserDefaultsClientLive"
      ],
      "sources" : [
        "UserDefaultsClient.swift",
        "UserDefaultsClientOperations.swift"
      ],
      "target_dependencies" : [
        "DataRepresentable"
      ],
      "type" : "library"
    },
    {
      "c99name" : "StandardClientsLive",
      "module_type" : "SwiftTarget",
      "name" : "StandardClientsLive",
      "path" : "Sources/StandardClientsLive",
      "product_memberships" : [
        "StandardClientsLive"
      ],
      "sources" : [
        "Exports.swift"
      ],
      "target_dependencies" : [
        "MemoryCacheClient",
        "HapticEngineClientLive",
        "IDFAPermissionsClientLive",
        "KeychainClientLive",
        "NotificationsPermissionsClientLive",
        "UserDefaultsClientLive"
      ],
      "type" : "library"
    },
    {
      "c99name" : "StandardClients",
      "module_type" : "SwiftTarget",
      "name" : "StandardClients",
      "path" : "Sources/StandardClients",
      "product_memberships" : [
        "StandardClients"
      ],
      "sources" : [
        "Exports.swift"
      ],
      "target_dependencies" : [
        "CacheClient",
        "HapticEngineClient",
        "IDFAPermissionsClient",
        "KeychainClient",
        "NotificationsPermissionsClient",
        "UserDefaultsClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "NotificationsPermissionsClientLive",
      "module_type" : "SwiftTarget",
      "name" : "NotificationsPermissionsClientLive",
      "path" : "Sources/NotificationsPermissionsClientLive",
      "product_memberships" : [
        "StandardClientsLive",
        "NotificationsPermissionsClientLive"
      ],
      "sources" : [
        "AuthorizationOptions.swift",
        "AuthorizationStatus.swift",
        "Exports.swift",
        "NotificationsPermissionsClientLive.swift"
      ],
      "target_dependencies" : [
        "NotificationsPermissionsClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "NotificationsPermissionsClient",
      "module_type" : "SwiftTarget",
      "name" : "NotificationsPermissionsClient",
      "path" : "Sources/NotificationsPermissionsClient",
      "product_dependencies" : [
        "Prelude"
      ],
      "product_memberships" : [
        "StandardClients",
        "StandardClientsLive",
        "NotificationsPermissionsClient",
        "NotificationsPermissionsClientLive"
      ],
      "sources" : [
        "NotificationsPermissionsClient.swift",
        "NotificationsPermissionsClientOperations.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "MemoryCacheClient",
      "module_type" : "SwiftTarget",
      "name" : "MemoryCacheClient",
      "path" : "Sources/MemoryCacheClient",
      "product_memberships" : [
        "StandardClientsLive",
        "MemoryCacheClient"
      ],
      "sources" : [
        "Exports.swift",
        "MemoryCache.swift",
        "MemoryCacheClient.swift"
      ],
      "target_dependencies" : [
        "CacheClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "KeychainClientLive",
      "module_type" : "SwiftTarget",
      "name" : "KeychainClientLive",
      "path" : "Sources/KeychainClientLive",
      "product_memberships" : [
        "StandardClientsLive",
        "KeychainClientLive"
      ],
      "sources" : [
        "Exports.swift",
        "Keychain/CoreFoundation+.swift",
        "Keychain/Keychain+AccessOptions.swift",
        "Keychain/Keychain+Constants.swift",
        "Keychain/Keychain+Error.swift",
        "Keychain/Keychain+OperationResult.swift",
        "Keychain/Keychain.swift",
        "Keychain/NSLocking+.swift",
        "KeychainClientAccessPolicy.swift",
        "KeychainClientLive.swift"
      ],
      "target_dependencies" : [
        "KeychainClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "KeychainClient",
      "module_type" : "SwiftTarget",
      "name" : "KeychainClient",
      "path" : "Sources/KeychainClient",
      "product_dependencies" : [
        "Prelude"
      ],
      "product_memberships" : [
        "StandardClients",
        "StandardClientsLive",
        "KeychainClient",
        "KeychainClientLive"
      ],
      "sources" : [
        "KeychainClient.swift",
        "KeychainClientOperations.swift"
      ],
      "target_dependencies" : [
        "DataRepresentable"
      ],
      "type" : "library"
    },
    {
      "c99name" : "IDFAPermissionsClientLive",
      "module_type" : "SwiftTarget",
      "name" : "IDFAPermissionsClientLive",
      "path" : "Sources/IDFAPermissionsClientLive",
      "product_memberships" : [
        "StandardClientsLive",
        "IDFAPermissionsClientLive"
      ],
      "sources" : [
        "AuthorizationStatus.swift",
        "Exports.swift",
        "IDFAPermissionsClientLive.swift"
      ],
      "target_dependencies" : [
        "IDFAPermissionsClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "IDFAPermissionsClient",
      "module_type" : "SwiftTarget",
      "name" : "IDFAPermissionsClient",
      "path" : "Sources/IDFAPermissionsClient",
      "product_dependencies" : [
        "Prelude"
      ],
      "product_memberships" : [
        "StandardClients",
        "StandardClientsLive",
        "IDFAPermissionsClient",
        "IDFAPermissionsClientLive"
      ],
      "sources" : [
        "IDFAPermissionsClient.swift",
        "IDFAPermissionsClientOperations.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HapticEngineClientLive",
      "module_type" : "SwiftTarget",
      "name" : "HapticEngineClientLive",
      "path" : "Sources/HapticEngineClientLive",
      "product_memberships" : [
        "StandardClientsLive",
        "HapticEngineClientLive"
      ],
      "sources" : [
        "Exports.swift",
        "HapticEngineClientLive.swift",
        "HapticFeedback.swift"
      ],
      "target_dependencies" : [
        "HapticEngineClient"
      ],
      "type" : "library"
    },
    {
      "c99name" : "HapticEngineClient",
      "module_type" : "SwiftTarget",
      "name" : "HapticEngineClient",
      "path" : "Sources/HapticEngineClient",
      "product_dependencies" : [
        "Prelude"
      ],
      "product_memberships" : [
        "StandardClients",
        "StandardClientsLive",
        "HapticEngineClient",
        "HapticEngineClientLive"
      ],
      "sources" : [
        "HapticEngineClient.swift",
        "HapticEngineClientOperations.swift",
        "HapticFeedback.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DataRepresentableTests",
      "module_type" : "SwiftTarget",
      "name" : "DataRepresentableTests",
      "path" : "Tests/DataRepresentableTests",
      "sources" : [
        "DataRepresentableTests.swift"
      ],
      "target_dependencies" : [
        "DataRepresentable"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DataRepresentable",
      "module_type" : "SwiftTarget",
      "name" : "DataRepresentable",
      "path" : "Sources/DataRepresentable",
      "product_memberships" : [
        "StandardClients",
        "StandardClientsLive",
        "CacheClient",
        "MemoryCacheClient",
        "DataRepresentable",
        "KeychainClient",
        "KeychainClientLive",
        "UserDefaultsClient",
        "UserDefaultsClientLive"
      ],
      "sources" : [
        "AnyDataRepresenable.swift",
        "DataRepresentable.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CacheClient",
      "module_type" : "SwiftTarget",
      "name" : "CacheClient",
      "path" : "Sources/CacheClient",
      "product_dependencies" : [
        "Prelude"
      ],
      "product_memberships" : [
        "StandardClients",
        "StandardClientsLive",
        "CacheClient",
        "MemoryCacheClient"
      ],
      "sources" : [
        "CacheClient.swift",
        "CacheClientOperations.swift"
      ],
      "target_dependencies" : [
        "DataRepresentable"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.