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 Shallows, reference master (3a9d67), with Swift 6.1 for watchOS using Xcode 16.3 on 26 Apr 2025 23:07:16 UTC.

Swift 6 data race errors: 21

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Shallows-Package -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:61:31: warning: stored property '_originalData' of 'Sendable'-conforming generic struct 'DecodingError' has non-sendable type 'StringPrinted'; this is an error in the Swift 6 language mode
    @StringPrinted public var originalData: Data
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:66:15: note: consider making struct 'StringPrinted' conform to the 'Sendable' protocol
public struct StringPrinted: CustomStringConvertible {
              ^
                                                    , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:24:54: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                filenameEncoder: Filename.Encoder = .base64) {
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'DiskStorage' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:89:20: note: class 'DiskStorage' does not conform to the 'Sendable' protocol
public final class DiskStorage : StorageProtocol {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:167:68: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                              filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:174:61: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                       filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:108:17: warning: capture of 'completion' with non-sendable type '(ShallowsResult<Data>) -> ()' (aka '(Result<Data, any Error>) -> ()') in a '@Sendable' closure
                completion(succeed(with: data))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:108:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completion(succeed(with: data))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:123:21: warning: capture of 'self' with non-sendable type 'DiskStorage' in a '@Sendable' closure
                try self.createDirectoryURLIfNotExisting(for: key)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:89:20: note: class 'DiskStorage' does not conform to the 'Sendable' protocol
public final class DiskStorage : StorageProtocol {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:128:21: warning: capture of 'completion' with non-sendable type '(ShallowsResult<Void>) -> ()' (aka '(Result<(), any Error>) -> ()') in a '@Sendable' closure
                    completion(.success)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:128:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completion(.success)
                    ^
SwiftCompile normal arm64 Compiling\ Shallows.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: warning: static property 'isEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var isEnabled = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: convert 'isEnabled' to a 'let' constant to make 'Sendable' shared state immutable
    public static var isEnabled = false
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: add '@MainActor' to make static property 'isEnabled' part of global actor 'MainActor'
    public static var isEnabled = false
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var isEnabled = false
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ NSCacheStorage.swift,\ ReadOnlyStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ReadOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:6:14: warning: associated value 'noValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
        case noValue(Key)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:3:35: note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
public final class NSCacheStorage<Key : NSObject, Value : AnyObject> : StorageProtocol {
                                  ^
                                                , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ReadOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Async.swift,\ Composition.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Composition.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:77:26: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                    Task {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:80:29: note: closure captures 'completion' which is accessible to code in the current task
                            completion(.success(newValue))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:97:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:21: note: closure captures non-Sendable 'self'
                    self.retrieve(forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:63: note: closure captures non-Sendable 'completion'
                    self.retrieve(forKey: newKey, completion: completion)
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:129:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:46: note: closure captures non-Sendable 'transform'
                    let newValue = try await transform(value)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:56: note: closure captures non-Sendable 'value'
                    let newValue = try await transform(value)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:21: note: closure captures non-Sendable 'self'
                    self.set(newValue, forKey: key, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:48: note: closure captures non-Sendable 'key'
                    self.set(newValue, forKey: key, completion: completion)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:65: note: closure captures non-Sendable 'completion'
                    self.set(newValue, forKey: key, completion: completion)
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:145:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:21: note: closure captures non-Sendable 'self'
                    self.set(value, forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:30: note: closure captures non-Sendable 'value'
                    self.set(value, forKey: newKey, completion: completion)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:65: note: closure captures non-Sendable 'completion'
                    self.set(value, forKey: newKey, completion: completion)
                                                                ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Composition.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:77:26: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                    Task {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:80:29: note: closure captures 'completion' which is accessible to code in the current task
                            completion(.success(newValue))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:97:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:21: note: closure captures non-Sendable 'self'
                    self.retrieve(forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:63: note: closure captures non-Sendable 'completion'
                    self.retrieve(forKey: newKey, completion: completion)
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:129:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:46: note: closure captures non-Sendable 'transform'
                    let newValue = try await transform(value)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:56: note: closure captures non-Sendable 'value'
                    let newValue = try await transform(value)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:21: note: closure captures non-Sendable 'self'
                    self.set(newValue, forKey: key, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:48: note: closure captures non-Sendable 'key'
                    self.set(newValue, forKey: key, completion: completion)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:65: note: closure captures non-Sendable 'completion'
                    self.set(newValue, forKey: key, completion: completion)
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:145:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:21: note: closure captures non-Sendable 'self'
                    self.set(value, forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:30: note: closure captures non-Sendable 'value'
                    self.set(value, forKey: newKey, completion: completion)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:65: note: closure captures non-Sendable 'completion'
                    self.set(value, forKey: newKey, completion: completion)
                                                                ^
SwiftCompile normal arm64 Compiling\ ShallowsResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ShallowsResult.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ShallowsResult.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Filename.swift,\ MemoryStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/MemoryStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: add '@MainActor' to make static property 'base64' part of global actor 'MainActor'
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: warning: static property 'base64URL' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: add '@MainActor' to make static property 'base64URL' part of global actor 'MainActor'
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: warning: static property 'noEncoding' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: add '@MainActor' to make static property 'noEncoding' part of global actor 'MainActor'
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/MemoryStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Storage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Storage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Storage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ Shallows (in target 'Shallows' from project 'Shallows')
EmitSwiftModule normal arm64 (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:61:31: warning: stored property '_originalData' of 'Sendable'-conforming generic struct 'DecodingError' has non-sendable type 'StringPrinted'; this is an error in the Swift 6 language mode
    @StringPrinted public var originalData: Data
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:66:15: note: consider making struct 'StringPrinted' conform to the 'Sendable' protocol
public struct StringPrinted: CustomStringConvertible {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:24:54: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                filenameEncoder: Filename.Encoder = .base64) {
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'DiskStorage' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:89:20: note: class 'DiskStorage' does not conform to the 'Sendable' protocol
public final class DiskStorage : StorageProtocol {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:167:68: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                              filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:174:61: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                       filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: add '@MainActor' to make static property 'base64' part of global actor 'MainActor'
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: warning: static property 'base64URL' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: add '@MainActor' to make static property 'base64URL' part of global actor 'MainActor'
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: warning: static property 'noEncoding' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: add '@MainActor' to make static property 'noEncoding' part of global actor 'MainActor'
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:6:14: warning: associated value 'noValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
        case noValue(Key)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:3:35: note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
public final class NSCacheStorage<Key : NSObject, Value : AnyObject> : StorageProtocol {
                                  ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: warning: static property 'isEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var isEnabled = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: convert 'isEnabled' to a 'let' constant to make 'Sendable' shared state immutable
    public static var isEnabled = false
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: add '@MainActor' to make static property 'isEnabled' part of global actor 'MainActor'
    public static var isEnabled = false
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var isEnabled = false
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Zip.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:57:13: warning: capture of 'self' with non-sendable type 'CompletionContainer<Left, Right>' in a '@Sendable' closure
            self.left = left
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:25: note: generic class 'CompletionContainer' does not conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:57:25: warning: capture of 'left' with non-sendable type 'Left' in a '@Sendable' closure
            self.left = left
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:45: note: consider making generic parameter 'Left' conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                                            ^
                                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:64:13: warning: capture of 'self' with non-sendable type 'CompletionContainer<Left, Right>' in a '@Sendable' closure
            self.right = right
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:25: note: generic class 'CompletionContainer' does not conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:64:26: warning: capture of 'right' with non-sendable type 'Right' in a '@Sendable' closure
            self.right = right
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:51: note: consider making generic parameter 'Right' conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                                                  ^
                                                       : Sendable
SwiftEmitModule normal armv7k Emitting\ module\ for\ Shallows (in target 'Shallows' from project 'Shallows')
EmitSwiftModule normal armv7k (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:61:31: warning: stored property '_originalData' of 'Sendable'-conforming generic struct 'DecodingError' has non-sendable type 'StringPrinted'; this is an error in the Swift 6 language mode
    @StringPrinted public var originalData: Data
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:66:15: note: consider making struct 'StringPrinted' conform to the 'Sendable' protocol
public struct StringPrinted: CustomStringConvertible {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:24:54: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                filenameEncoder: Filename.Encoder = .base64) {
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'DiskStorage' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:89:20: note: class 'DiskStorage' does not conform to the 'Sendable' protocol
public final class DiskStorage : StorageProtocol {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:167:68: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                              filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:174:61: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                       filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: add '@MainActor' to make static property 'base64' part of global actor 'MainActor'
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: warning: static property 'base64URL' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: add '@MainActor' to make static property 'base64URL' part of global actor 'MainActor'
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: warning: static property 'noEncoding' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: add '@MainActor' to make static property 'noEncoding' part of global actor 'MainActor'
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:6:14: warning: associated value 'noValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
        case noValue(Key)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:3:35: note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
public final class NSCacheStorage<Key : NSObject, Value : AnyObject> : StorageProtocol {
                                  ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: warning: static property 'isEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var isEnabled = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: convert 'isEnabled' to a 'let' constant to make 'Sendable' shared state immutable
    public static var isEnabled = false
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: add '@MainActor' to make static property 'isEnabled' part of global actor 'MainActor'
    public static var isEnabled = false
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var isEnabled = false
                      ^
    nonisolated(unsafe)
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Shallows (in target 'Shallows' from project 'Shallows')
EmitSwiftModule normal arm64_32 (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:61:31: warning: stored property '_originalData' of 'Sendable'-conforming generic struct 'DecodingError' has non-sendable type 'StringPrinted'; this is an error in the Swift 6 language mode
    @StringPrinted public var originalData: Data
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:66:15: note: consider making struct 'StringPrinted' conform to the 'Sendable' protocol
public struct StringPrinted: CustomStringConvertible {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:24:54: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                filenameEncoder: Filename.Encoder = .base64) {
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'DiskStorage' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:89:20: note: class 'DiskStorage' does not conform to the 'Sendable' protocol
public final class DiskStorage : StorageProtocol {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:167:68: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                              filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:174:61: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                       filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: add '@MainActor' to make static property 'base64' part of global actor 'MainActor'
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: warning: static property 'base64URL' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: add '@MainActor' to make static property 'base64URL' part of global actor 'MainActor'
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: warning: static property 'noEncoding' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: add '@MainActor' to make static property 'noEncoding' part of global actor 'MainActor'
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:6:14: warning: associated value 'noValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
        case noValue(Key)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:3:35: note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
public final class NSCacheStorage<Key : NSObject, Value : AnyObject> : StorageProtocol {
                                  ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: warning: static property 'isEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var isEnabled = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: convert 'isEnabled' to a 'let' constant to make 'Sendable' shared state immutable
    public static var isEnabled = false
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: add '@MainActor' to make static property 'isEnabled' part of global actor 'MainActor'
    public static var isEnabled = false
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var isEnabled = false
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for Shallows (in target 'Shallows' from project 'Shallows')
SwiftDriver\ Compilation\ Requirements Shallows normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Shallows -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Emitting module for Shallows (in target 'Shallows' from project 'Shallows')
SwiftDriver\ Compilation\ Requirements Shallows normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Shallows -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64_32 Compiling\ Shallows.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: warning: static property 'isEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var isEnabled = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: convert 'isEnabled' to a 'let' constant to make 'Sendable' shared state immutable
    public static var isEnabled = false
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: add '@MainActor' to make static property 'isEnabled' part of global actor 'MainActor'
    public static var isEnabled = false
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var isEnabled = false
                      ^
    nonisolated(unsafe)
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftmodule (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling Shallows.swift (in target 'Shallows' from project 'Shallows')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftdoc (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/armv7k-apple-watchos.swiftdoc
SwiftDriverJobDiscovery normal arm64 Compiling Storage.swift (in target 'Shallows' from project 'Shallows')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.abi.json (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftmodule (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftdoc (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.abi.json (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftsourceinfo (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftsourceinfo (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ Filename.swift,\ MemoryStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/MemoryStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: add '@MainActor' to make static property 'base64' part of global actor 'MainActor'
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: warning: static property 'base64URL' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: add '@MainActor' to make static property 'base64URL' part of global actor 'MainActor'
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: warning: static property 'noEncoding' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: add '@MainActor' to make static property 'noEncoding' part of global actor 'MainActor'
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/MemoryStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ Async.swift,\ Composition.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Composition.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:77:26: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                    Task {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:80:29: note: closure captures 'completion' which is accessible to code in the current task
                            completion(.success(newValue))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:97:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:21: note: closure captures non-Sendable 'self'
                    self.retrieve(forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:63: note: closure captures non-Sendable 'completion'
                    self.retrieve(forKey: newKey, completion: completion)
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:129:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:46: note: closure captures non-Sendable 'transform'
                    let newValue = try await transform(value)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:56: note: closure captures non-Sendable 'value'
                    let newValue = try await transform(value)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:21: note: closure captures non-Sendable 'self'
                    self.set(newValue, forKey: key, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:48: note: closure captures non-Sendable 'key'
                    self.set(newValue, forKey: key, completion: completion)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:65: note: closure captures non-Sendable 'completion'
                    self.set(newValue, forKey: key, completion: completion)
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:145:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:21: note: closure captures non-Sendable 'self'
                    self.set(value, forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:30: note: closure captures non-Sendable 'value'
                    self.set(value, forKey: newKey, completion: completion)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:65: note: closure captures non-Sendable 'completion'
                    self.set(value, forKey: newKey, completion: completion)
                                                                ^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Composition.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:77:26: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                    Task {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:80:29: note: closure captures 'completion' which is accessible to code in the current task
                            completion(.success(newValue))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:97:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:21: note: closure captures non-Sendable 'self'
                    self.retrieve(forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:63: note: closure captures non-Sendable 'completion'
                    self.retrieve(forKey: newKey, completion: completion)
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:129:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:46: note: closure captures non-Sendable 'transform'
                    let newValue = try await transform(value)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:56: note: closure captures non-Sendable 'value'
                    let newValue = try await transform(value)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:21: note: closure captures non-Sendable 'self'
                    self.set(newValue, forKey: key, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:48: note: closure captures non-Sendable 'key'
                    self.set(newValue, forKey: key, completion: completion)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:65: note: closure captures non-Sendable 'completion'
                    self.set(newValue, forKey: key, completion: completion)
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:145:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:21: note: closure captures non-Sendable 'self'
                    self.set(value, forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:30: note: closure captures non-Sendable 'value'
                    self.set(value, forKey: newKey, completion: completion)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:65: note: closure captures non-Sendable 'completion'
                    self.set(value, forKey: newKey, completion: completion)
                                                                ^
SwiftCompile normal armv7k Compiling\ Zip.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:57:13: warning: capture of 'self' with non-sendable type 'CompletionContainer<Left, Right>' in a '@Sendable' closure
            self.left = left
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:25: note: generic class 'CompletionContainer' does not conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:57:25: warning: capture of 'left' with non-sendable type 'Left' in a '@Sendable' closure
            self.left = left
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:45: note: consider making generic parameter 'Left' conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                                            ^
                                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:64:13: warning: capture of 'self' with non-sendable type 'CompletionContainer<Left, Right>' in a '@Sendable' closure
            self.right = right
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:25: note: generic class 'CompletionContainer' does not conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:64:26: warning: capture of 'right' with non-sendable type 'Right' in a '@Sendable' closure
            self.right = right
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:51: note: consider making generic parameter 'Right' conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                                                  ^
                                                       : Sendable
SwiftDriverJobDiscovery normal arm64 Compiling Zip.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k Compiling\ SyncStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:5:32: warning: capture of 'function' with non-sendable type '(In) -> ()' in a '@Sendable' closure
        queue.async(execute: { function(input) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:5:32: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async(execute: { function(input) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:5:41: warning: capture of 'input' with non-sendable type 'In' in a '@Sendable' closure
        queue.async(execute: { function(input) })
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:3:26: note: consider making generic parameter 'In' conform to the 'Sendable' protocol
internal func dispatched<In>(to queue: DispatchQueue, _ function: @escaping (In) -> ()) -> (In) -> () {
                         ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:32: warning: capture of 'function' with non-sendable type '(In1, In2) -> ()' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:32: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async(execute: { function(in1, in2) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:41: warning: capture of 'in1' with non-sendable type 'In1' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2) })
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:9:26: note: consider making generic parameter 'In1' conform to the 'Sendable' protocol
internal func dispatched<In1, In2>(to queue: DispatchQueue, _ function: @escaping (In1, In2) -> ()) -> (In1, In2) -> () {
                         ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:46: warning: capture of 'in2' with non-sendable type 'In2' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2) })
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:9:31: note: consider making generic parameter 'In2' conform to the 'Sendable' protocol
internal func dispatched<In1, In2>(to queue: DispatchQueue, _ function: @escaping (In1, In2) -> ()) -> (In1, In2) -> () {
                              ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:32: warning: capture of 'function' with non-sendable type '(In1, In2, In3) -> ()' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:32: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async(execute: { function(in1, in2, in3) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:41: warning: capture of 'in1' with non-sendable type 'In1' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:15:26: note: consider making generic parameter 'In1' conform to the 'Sendable' protocol
internal func dispatched<In1, In2, In3>(to queue: DispatchQueue, _ function: @escaping (In1, In2, In3) -> ()) -> (In1, In2, In3) -> () {
                         ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:46: warning: capture of 'in2' with non-sendable type 'In2' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:15:31: note: consider making generic parameter 'In2' conform to the 'Sendable' protocol
internal func dispatched<In1, In2, In3>(to queue: DispatchQueue, _ function: @escaping (In1, In2, In3) -> ()) -> (In1, In2, In3) -> () {
                              ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:51: warning: capture of 'in3' with non-sendable type 'In3' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:15:36: note: consider making generic parameter 'In3' conform to the 'Sendable' protocol
internal func dispatched<In1, In2, In3>(to queue: DispatchQueue, _ function: @escaping (In1, In2, In3) -> ()) -> (In1, In2, In3) -> () {
                                   ^
                                      : Sendable
SwiftDriverJobDiscovery normal arm64 Compiling ShallowsResult.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 Compiling\ Zip.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:57:13: warning: capture of 'self' with non-sendable type 'CompletionContainer<Left, Right>' in a '@Sendable' closure
            self.left = left
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:25: note: generic class 'CompletionContainer' does not conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:57:25: warning: capture of 'left' with non-sendable type 'Left' in a '@Sendable' closure
            self.left = left
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:45: note: consider making generic parameter 'Left' conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                                            ^
                                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:64:13: warning: capture of 'self' with non-sendable type 'CompletionContainer<Left, Right>' in a '@Sendable' closure
            self.right = right
            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:25: note: generic class 'CompletionContainer' does not conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:64:26: warning: capture of 'right' with non-sendable type 'Right' in a '@Sendable' closure
            self.right = right
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Zip.swift:43:51: note: consider making generic parameter 'Right' conform to the 'Sendable' protocol
fileprivate final class CompletionContainer<Left, Right> {
                                                  ^
                                                       : Sendable
SwiftDriverJobDiscovery normal arm64 Compiling Filename.swift, MemoryStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 Compiling\ NSCacheStorage.swift,\ ReadOnlyStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ReadOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:6:14: warning: associated value 'noValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
        case noValue(Key)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:3:35: note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
public final class NSCacheStorage<Key : NSObject, Value : AnyObject> : StorageProtocol {
                                  ^
                                                , Sendable
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ReadOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling NSCacheStorage.swift, ReadOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k Compiling\ WriteOnlyStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/WriteOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/WriteOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Async.swift, Composition.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k Compiling\ DiskExtensions.swift,\ DiskStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:61:31: warning: stored property '_originalData' of 'Sendable'-conforming generic struct 'DecodingError' has non-sendable type 'StringPrinted'; this is an error in the Swift 6 language mode
    @StringPrinted public var originalData: Data
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:66:15: note: consider making struct 'StringPrinted' conform to the 'Sendable' protocol
public struct StringPrinted: CustomStringConvertible {
              ^
                                                    , Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:24:54: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                filenameEncoder: Filename.Encoder = .base64) {
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'DiskStorage' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:89:20: note: class 'DiskStorage' does not conform to the 'Sendable' protocol
public final class DiskStorage : StorageProtocol {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:167:68: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                              filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:174:61: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                       filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:108:17: warning: capture of 'completion' with non-sendable type '(ShallowsResult<Data>) -> ()' (aka '(Result<Data, any Error>) -> ()') in a '@Sendable' closure
                completion(succeed(with: data))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:108:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completion(succeed(with: data))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:123:21: warning: capture of 'self' with non-sendable type 'DiskStorage' in a '@Sendable' closure
                try self.createDirectoryURLIfNotExisting(for: key)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:89:20: note: class 'DiskStorage' does not conform to the 'Sendable' protocol
public final class DiskStorage : StorageProtocol {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:128:21: warning: capture of 'completion' with non-sendable type '(ShallowsResult<Void>) -> ()' (aka '(Result<(), any Error>) -> ()') in a '@Sendable' closure
                    completion(.success)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:128:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completion(.success)
                    ^
SwiftDriverJobDiscovery normal arm64 Compiling DiskExtensions.swift, DiskStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 Compiling\ Storage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Storage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Storage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling WriteOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 Compiling\ ShallowsResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ShallowsResult.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ShallowsResult.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling Zip.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k Compiling\ Filename.swift,\ MemoryStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/MemoryStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: warning: static property 'base64' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: add '@MainActor' to make static property 'base64' part of global actor 'MainActor'
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64: Encoder = Encoder(encode: { $0.base64Encoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: warning: static property 'base64URL' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: add '@MainActor' to make static property 'base64URL' part of global actor 'MainActor'
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:59:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let base64URL: Encoder = Encoder(encode: { $0.base64URLEncoded() })
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: warning: static property 'noEncoding' is not concurrency-safe because non-'Sendable' type 'Filename.Encoder' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:49:19: note: consider making struct 'Encoder' conform to the 'Sendable' protocol
    public struct Encoder {
                  ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: add '@MainActor' to make static property 'noEncoding' part of global actor 'MainActor'
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/Filename.swift:60:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let noEncoding: Encoder = Encoder(encode: { $0.rawValue })
                          ^
        nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/MemoryStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling SyncStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k Compiling\ Shallows.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: warning: static property 'isEnabled' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var isEnabled = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: convert 'isEnabled' to a 'let' constant to make 'Sendable' shared state immutable
    public static var isEnabled = false
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: add '@MainActor' to make static property 'isEnabled' part of global actor 'MainActor'
    public static var isEnabled = false
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Shallows.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var isEnabled = false
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Emitting module for Shallows (in target 'Shallows' from project 'Shallows')
SwiftDriver\ Compilation\ Requirements Shallows normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Shallows -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling DiskExtensions.swift, DiskStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k Compiling\ NSCacheStorage.swift,\ ReadOnlyStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ReadOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:6:14: warning: associated value 'noValue' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
        case noValue(Key)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/NSCacheStorage.swift:3:35: note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
public final class NSCacheStorage<Key : NSObject, Value : AnyObject> : StorageProtocol {
                                  ^
                                                , Sendable
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ReadOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Shallows-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows-Swift.h (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Shallows-Swift.h
SwiftDriverJobDiscovery normal armv7k Compiling Shallows.swift (in target 'Shallows' from project 'Shallows')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftmodule (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftdoc (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.abi.json (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftsourceinfo (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ SyncStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:5:32: warning: capture of 'function' with non-sendable type '(In) -> ()' in a '@Sendable' closure
        queue.async(execute: { function(input) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:5:32: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async(execute: { function(input) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:5:41: warning: capture of 'input' with non-sendable type 'In' in a '@Sendable' closure
        queue.async(execute: { function(input) })
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:3:26: note: consider making generic parameter 'In' conform to the 'Sendable' protocol
internal func dispatched<In>(to queue: DispatchQueue, _ function: @escaping (In) -> ()) -> (In) -> () {
                         ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:32: warning: capture of 'function' with non-sendable type '(In1, In2) -> ()' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:32: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async(execute: { function(in1, in2) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:41: warning: capture of 'in1' with non-sendable type 'In1' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2) })
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:9:26: note: consider making generic parameter 'In1' conform to the 'Sendable' protocol
internal func dispatched<In1, In2>(to queue: DispatchQueue, _ function: @escaping (In1, In2) -> ()) -> (In1, In2) -> () {
                         ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:46: warning: capture of 'in2' with non-sendable type 'In2' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2) })
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:9:31: note: consider making generic parameter 'In2' conform to the 'Sendable' protocol
internal func dispatched<In1, In2>(to queue: DispatchQueue, _ function: @escaping (In1, In2) -> ()) -> (In1, In2) -> () {
                              ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:32: warning: capture of 'function' with non-sendable type '(In1, In2, In3) -> ()' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:32: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async(execute: { function(in1, in2, in3) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:41: warning: capture of 'in1' with non-sendable type 'In1' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:15:26: note: consider making generic parameter 'In1' conform to the 'Sendable' protocol
internal func dispatched<In1, In2, In3>(to queue: DispatchQueue, _ function: @escaping (In1, In2, In3) -> ()) -> (In1, In2, In3) -> () {
                         ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:46: warning: capture of 'in2' with non-sendable type 'In2' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:15:31: note: consider making generic parameter 'In2' conform to the 'Sendable' protocol
internal func dispatched<In1, In2, In3>(to queue: DispatchQueue, _ function: @escaping (In1, In2, In3) -> ()) -> (In1, In2, In3) -> () {
                              ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:51: warning: capture of 'in3' with non-sendable type 'In3' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:15:36: note: consider making generic parameter 'In3' conform to the 'Sendable' protocol
internal func dispatched<In1, In2, In3>(to queue: DispatchQueue, _ function: @escaping (In1, In2, In3) -> ()) -> (In1, In2, In3) -> () {
                                   ^
                                      : Sendable
SwiftCompile normal armv7k Compiling\ Storage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Storage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Storage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling Filename.swift, MemoryStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 Compiling\ WriteOnlyStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/WriteOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/WriteOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling SyncStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 Compiling\ WriteOnlyStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/WriteOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/WriteOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Shallows.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 Compiling\ DiskExtensions.swift,\ DiskStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:61:31: warning: stored property '_originalData' of 'Sendable'-conforming generic struct 'DecodingError' has non-sendable type 'StringPrinted'; this is an error in the Swift 6 language mode
    @StringPrinted public var originalData: Data
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskExtensions.swift:66:15: note: consider making struct 'StringPrinted' conform to the 'Sendable' protocol
public struct StringPrinted: CustomStringConvertible {
              ^
                                                    , Sendable
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:24:54: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                filenameEncoder: Filename.Encoder = .base64) {
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: warning: static property 'main' is not concurrency-safe because non-'Sendable' type 'DiskStorage' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:89:20: note: class 'DiskStorage' does not conform to the 'Sendable' protocol
public final class DiskStorage : StorageProtocol {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: add '@MainActor' to make static property 'main' part of global actor 'MainActor'
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:162:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let main = DiskStorage(creatingDirectories: true)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:167:68: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                              filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:174:61: warning: 'base64' is deprecated: for any new storages, please use .base64URL
                       filenameEncoder: Filename.Encoder = .base64) -> DiskFolderStorage {
                                                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:108:17: warning: capture of 'completion' with non-sendable type '(ShallowsResult<Data>) -> ()' (aka '(Result<Data, any Error>) -> ()') in a '@Sendable' closure
                completion(succeed(with: data))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:108:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                completion(succeed(with: data))
                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:123:21: warning: capture of 'self' with non-sendable type 'DiskStorage' in a '@Sendable' closure
                try self.createDirectoryURLIfNotExisting(for: key)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:89:20: note: class 'DiskStorage' does not conform to the 'Sendable' protocol
public final class DiskStorage : StorageProtocol {
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:128:21: warning: capture of 'completion' with non-sendable type '(ShallowsResult<Void>) -> ()' (aka '(Result<(), any Error>) -> ()') in a '@Sendable' closure
                    completion(.success)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/DiskStorage/DiskStorage.swift:128:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                    completion(.success)
                    ^
SwiftDriverJobDiscovery normal arm64_32 Compiling Storage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 Compiling\ SyncStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:5:32: warning: capture of 'function' with non-sendable type '(In) -> ()' in a '@Sendable' closure
        queue.async(execute: { function(input) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:5:32: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async(execute: { function(input) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:5:41: warning: capture of 'input' with non-sendable type 'In' in a '@Sendable' closure
        queue.async(execute: { function(input) })
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:3:26: note: consider making generic parameter 'In' conform to the 'Sendable' protocol
internal func dispatched<In>(to queue: DispatchQueue, _ function: @escaping (In) -> ()) -> (In) -> () {
                         ^
                           : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:32: warning: capture of 'function' with non-sendable type '(In1, In2) -> ()' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:32: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async(execute: { function(in1, in2) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:41: warning: capture of 'in1' with non-sendable type 'In1' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2) })
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:9:26: note: consider making generic parameter 'In1' conform to the 'Sendable' protocol
internal func dispatched<In1, In2>(to queue: DispatchQueue, _ function: @escaping (In1, In2) -> ()) -> (In1, In2) -> () {
                         ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:11:46: warning: capture of 'in2' with non-sendable type 'In2' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2) })
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:9:31: note: consider making generic parameter 'In2' conform to the 'Sendable' protocol
internal func dispatched<In1, In2>(to queue: DispatchQueue, _ function: @escaping (In1, In2) -> ()) -> (In1, In2) -> () {
                              ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:32: warning: capture of 'function' with non-sendable type '(In1, In2, In3) -> ()' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:32: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        queue.async(execute: { function(in1, in2, in3) })
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:41: warning: capture of 'in1' with non-sendable type 'In1' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:15:26: note: consider making generic parameter 'In1' conform to the 'Sendable' protocol
internal func dispatched<In1, In2, In3>(to queue: DispatchQueue, _ function: @escaping (In1, In2, In3) -> ()) -> (In1, In2, In3) -> () {
                         ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:46: warning: capture of 'in2' with non-sendable type 'In2' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:15:31: note: consider making generic parameter 'In2' conform to the 'Sendable' protocol
internal func dispatched<In1, In2, In3>(to queue: DispatchQueue, _ function: @escaping (In1, In2, In3) -> ()) -> (In1, In2, In3) -> () {
                              ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:17:51: warning: capture of 'in3' with non-sendable type 'In3' in a '@Sendable' closure
        queue.async(execute: { function(in1, in2, in3) })
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/SyncStorage.swift:15:36: note: consider making generic parameter 'In3' conform to the 'Sendable' protocol
internal func dispatched<In1, In2, In3>(to queue: DispatchQueue, _ function: @escaping (In1, In2, In3) -> ()) -> (In1, In2, In3) -> () {
                                   ^
                                      : Sendable
SwiftDriverJobDiscovery normal armv7k Compiling NSCacheStorage.swift, ReadOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k Compiling\ Async.swift,\ Composition.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Composition.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:77:26: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                    Task {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:80:29: note: closure captures 'completion' which is accessible to code in the current task
                            completion(.success(newValue))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:97:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:21: note: closure captures non-Sendable 'self'
                    self.retrieve(forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:63: note: closure captures non-Sendable 'completion'
                    self.retrieve(forKey: newKey, completion: completion)
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:129:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:46: note: closure captures non-Sendable 'transform'
                    let newValue = try await transform(value)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:56: note: closure captures non-Sendable 'value'
                    let newValue = try await transform(value)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:21: note: closure captures non-Sendable 'self'
                    self.set(newValue, forKey: key, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:48: note: closure captures non-Sendable 'key'
                    self.set(newValue, forKey: key, completion: completion)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:65: note: closure captures non-Sendable 'completion'
                    self.set(newValue, forKey: key, completion: completion)
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:145:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:21: note: closure captures non-Sendable 'self'
                    self.set(value, forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:30: note: closure captures non-Sendable 'value'
                    self.set(value, forKey: newKey, completion: completion)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:65: note: closure captures non-Sendable 'completion'
                    self.set(value, forKey: newKey, completion: completion)
                                                                ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/Composition.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:12:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
                continuation.resume(with: result)
                ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:26:30: note: task-isolated 'result' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
                continuation.resume(with: result)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:77:26: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                    Task {
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:80:29: note: closure captures 'completion' which is accessible to code in the current task
                            completion(.success(newValue))
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:97:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:99:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:21: note: closure captures non-Sendable 'self'
                    self.retrieve(forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:100:63: note: closure captures non-Sendable 'completion'
                    self.retrieve(forKey: newKey, completion: completion)
                                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:129:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:46: note: closure captures non-Sendable 'transform'
                    let newValue = try await transform(value)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:131:56: note: closure captures non-Sendable 'value'
                    let newValue = try await transform(value)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:21: note: closure captures non-Sendable 'self'
                    self.set(newValue, forKey: key, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:48: note: closure captures non-Sendable 'key'
                    self.set(newValue, forKey: key, completion: completion)
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:132:65: note: closure captures non-Sendable 'completion'
                    self.set(newValue, forKey: key, completion: completion)
                                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:145:18: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
            Task {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:44: note: closure captures non-Sendable 'transform'
                    let newKey = try await transform(key)
                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:147:54: note: closure captures non-Sendable 'key'
                    let newKey = try await transform(key)
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:21: note: closure captures non-Sendable 'self'
                    self.set(value, forKey: newKey, completion: completion)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:30: note: closure captures non-Sendable 'value'
                    self.set(value, forKey: newKey, completion: completion)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Shallows/Async.swift:148:65: note: closure captures non-Sendable 'completion'
                    self.set(value, forKey: newKey, completion: completion)
                                                                ^
SwiftDriverJobDiscovery normal armv7k Compiling Storage.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k Compiling\ ShallowsResult.swift /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ShallowsResult.swift (in target 'Shallows' from project 'Shallows')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Shallows/ShallowsResult.swift (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling WriteOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftDriver\ Compilation Shallows normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Shallows -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling WriteOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Binary/Shallows.o normal arm64 (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Binary/Shallows.o
SwiftDriverJobDiscovery normal arm64_32 Compiling Zip.swift (in target 'Shallows' from project 'Shallows')
SwiftDriverJobDiscovery normal arm64_32 Compiling SyncStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftDriverJobDiscovery normal armv7k Compiling ShallowsResult.swift (in target 'Shallows' from project 'Shallows')
SwiftDriverJobDiscovery normal armv7k Compiling Async.swift, Composition.swift (in target 'Shallows' from project 'Shallows')
SwiftDriver\ Compilation Shallows normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Shallows -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Binary/Shallows.o normal armv7k (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Binary/Shallows.o
SwiftDriverJobDiscovery normal arm64_32 Compiling Filename.swift, MemoryStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftDriverJobDiscovery normal arm64_32 Compiling DiskExtensions.swift, DiskStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftDriverJobDiscovery normal arm64_32 Compiling ShallowsResult.swift (in target 'Shallows' from project 'Shallows')
SwiftDriverJobDiscovery normal arm64_32 Compiling Async.swift, Composition.swift (in target 'Shallows' from project 'Shallows')
SwiftDriverJobDiscovery normal arm64_32 Compiling NSCacheStorage.swift, ReadOnlyStorage.swift (in target 'Shallows' from project 'Shallows')
SwiftDriver\ Compilation Shallows normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Shallows -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos5.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Binary/Shallows.o normal arm64_32 (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Binary/Shallows.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.o normal arm64\ armv7k\ arm64_32 (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Binary/Shallows.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Binary/Shallows.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Binary/Shallows.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.o
ExtractAppIntentsMetadata (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Shallows --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 5.0 --bundle-identifier spi-builder-workspace.Shallows --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.appintents --target-triple arm64-apple-watchos5.0 --target-triple armv7k-apple-watchos5.0 --target-triple arm64_32-apple-watchos5.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Shallows.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Shallows.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 16:07:15.036 appintentsmetadataprocessor[746:4295] Starting appintentsmetadataprocessor export
2025-04-26 16:07:15.077 appintentsmetadataprocessor[746:4295] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.o (in target 'Shallows' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Shallows.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ShallowsDynamic.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/empty-ShallowsDynamic.plist (in target 'ShallowsDynamic' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/empty-ShallowsDynamic.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform watchos -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ShallowsDynamic.framework/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/armv7k/Binary/ShallowsDynamic normal armv7k (in target 'ShallowsDynamic' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos5.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/armv7k/ShallowsDynamic.LinkFileList -install_name @rpath/ShallowsDynamic.framework/ShallowsDynamic -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/armv7k/ShallowsDynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/armv7k/ShallowsDynamic_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/armv7k/Binary/ShallowsDynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/armv7k/Shallows.swiftmodule
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64/Binary/ShallowsDynamic normal arm64 (in target 'ShallowsDynamic' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos5.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64/ShallowsDynamic.LinkFileList -install_name @rpath/ShallowsDynamic.framework/ShallowsDynamic -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64/ShallowsDynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64/ShallowsDynamic_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64/Binary/ShallowsDynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64/Shallows.swiftmodule
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64_32/Binary/ShallowsDynamic normal arm64_32 (in target 'ShallowsDynamic' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos5.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64_32/ShallowsDynamic.LinkFileList -install_name @rpath/ShallowsDynamic.framework/ShallowsDynamic -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64_32/ShallowsDynamic_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64_32/ShallowsDynamic_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64_32/Binary/ShallowsDynamic -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/Shallows.build/Objects-normal/arm64_32/Shallows.swiftmodule
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ShallowsDynamic.framework/ShallowsDynamic normal arm64\ armv7k\ arm64_32 (in target 'ShallowsDynamic' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64/Binary/ShallowsDynamic /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/armv7k/Binary/ShallowsDynamic /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Shallows.build/Debug-watchos/ShallowsDynamic\ product.build/Objects-normal/arm64_32/Binary/ShallowsDynamic -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ShallowsDynamic.framework/ShallowsDynamic
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos/ShallowsDynamic.framework/ShallowsDynamic.tbd (in target 'ShallowsDynamic' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ShallowsDynamic.framework/ShallowsDynamic -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos/ShallowsDynamic.framework/ShallowsDynamic.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ShallowsDynamic.framework (in target 'ShallowsDynamic' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ShallowsDynamic.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ShallowsDynamic.framework (in target 'ShallowsDynamic' from project 'Shallows')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ShallowsDynamic.framework
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Shallows",
  "name" : "Shallows",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Shallows",
      "targets" : [
        "Shallows"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ShallowsStatic",
      "targets" : [
        "Shallows"
      ],
      "type" : {
        "library" : [
          "static"
        ]
      }
    },
    {
      "name" : "ShallowsDynamic",
      "targets" : [
        "Shallows"
      ],
      "type" : {
        "library" : [
          "dynamic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ShallowsTests",
      "module_type" : "SwiftTarget",
      "name" : "ShallowsTests",
      "path" : "Tests/ShallowsTests",
      "sources" : [
        "AdditionalSpec.swift",
        "CompositionSpec.swift",
        "DiskStorageSpec.swift",
        "MemoryStorageSpec.swift",
        "ResultSpec.swift",
        "Spectre/Case.swift",
        "Spectre/Context.swift",
        "Spectre/Expectation.swift",
        "Spectre/Failure.swift",
        "Spectre/Global.swift",
        "Spectre/GlobalContext.swift",
        "Spectre/Reporter.swift",
        "Spectre/Reporters.swift",
        "TestExtensions.swift",
        "XCTest.swift",
        "ZipSpec.swift"
      ],
      "target_dependencies" : [
        "Shallows"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Shallows",
      "module_type" : "SwiftTarget",
      "name" : "Shallows",
      "path" : "Sources/Shallows",
      "product_memberships" : [
        "Shallows",
        "ShallowsStatic",
        "ShallowsDynamic"
      ],
      "sources" : [
        "Async.swift",
        "Composition.swift",
        "DiskStorage/DiskExtensions.swift",
        "DiskStorage/DiskStorage.swift",
        "DiskStorage/Filename.swift",
        "MemoryStorage.swift",
        "NSCacheStorage.swift",
        "ReadOnlyStorage.swift",
        "Shallows.swift",
        "ShallowsResult.swift",
        "Storage.swift",
        "SyncStorage.swift",
        "WriteOnlyStorage.swift",
        "Zip.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.