This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 SwiftyRedis with Swift 6.0 for iOS using Xcode 16.0.

Swift 6 data race errors: 73

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme SwiftyRedis -destination generic/platform=ios OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

public struct BgsaveOptions: OptionSet, ToRedisArgs {
              ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8708:23: note: annotate 'SCHEDULE' with '@MainActor' if property should only be accessed from the main actor
    public static let SCHEDULE = BgsaveOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8708:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let SCHEDULE = BgsaveOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8934:23: warning: static property 'REPLACE' is not concurrency-safe because non-'Sendable' type 'CopyOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let REPLACE = CopyOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8931:15: note: consider making struct 'CopyOptions' conform to the 'Sendable' protocol
public struct CopyOptions: OptionSet, ToRedisArgs {
              ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8934:23: note: annotate 'REPLACE' with '@MainActor' if property should only be accessed from the main actor
    public static let REPLACE = CopyOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8934:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let REPLACE = CopyOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8984:27: warning: static property 'FORCE' is not concurrency-safe because non-'Sendable' type 'FailoverTarget.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let FORCE = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8981:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet, ToRedisArgs {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8984:27: note: annotate 'FORCE' with '@MainActor' if property should only be accessed from the main actor
        public static let FORCE = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8984:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let FORCE = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8993:23: warning: static property 'ABORT' is not concurrency-safe because non-'Sendable' type 'FailoverOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ABORT = FailoverOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8990:15: note: consider making struct 'FailoverOptions' conform to the 'Sendable' protocol
public struct FailoverOptions: OptionSet, ToRedisArgs {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8993:23: note: annotate 'ABORT' with '@MainActor' if property should only be accessed from the main actor
    public static let ABORT = FailoverOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:8993:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ABORT = FailoverOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9046:23: warning: static property 'CH' is not concurrency-safe because non-'Sendable' type 'GeoaddOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let CH = GeoaddOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9043:15: note: consider making struct 'GeoaddOptions' conform to the 'Sendable' protocol
public struct GeoaddOptions: OptionSet, ToRedisArgs {
              ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9046:23: note: annotate 'CH' with '@MainActor' if property should only be accessed from the main actor
    public static let CH = GeoaddOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9046:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let CH = GeoaddOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9092:27: warning: static property 'ANY' is not concurrency-safe because non-'Sendable' type 'GeoradiusCountblock.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9089:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet, ToRedisArgs {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9092:27: note: annotate 'ANY' with '@MainActor' if property should only be accessed from the main actor
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9092:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9125:23: warning: static property 'WITHCOORD' is not concurrency-safe because non-'Sendable' type 'GeoradiusOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHCOORD = GeoradiusOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9122:15: note: consider making struct 'GeoradiusOptions' conform to the 'Sendable' protocol
public struct GeoradiusOptions: OptionSet, ToRedisArgs {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9125:23: note: annotate 'WITHCOORD' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHCOORD = GeoradiusOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9125:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHCOORD = GeoradiusOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9126:23: warning: static property 'WITHDIST' is not concurrency-safe because non-'Sendable' type 'GeoradiusOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHDIST = GeoradiusOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9122:15: note: consider making struct 'GeoradiusOptions' conform to the 'Sendable' protocol
public struct GeoradiusOptions: OptionSet, ToRedisArgs {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9126:23: note: annotate 'WITHDIST' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHDIST = GeoradiusOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9126:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHDIST = GeoradiusOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9127:23: warning: static property 'WITHHASH' is not concurrency-safe because non-'Sendable' type 'GeoradiusOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHHASH = GeoradiusOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9122:15: note: consider making struct 'GeoradiusOptions' conform to the 'Sendable' protocol
public struct GeoradiusOptions: OptionSet, ToRedisArgs {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9127:23: note: annotate 'WITHHASH' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHHASH = GeoradiusOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9127:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHHASH = GeoradiusOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9163:27: warning: static property 'ANY' is not concurrency-safe because non-'Sendable' type 'GeoradiusbymemberCountblock.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9160:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet, ToRedisArgs {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9163:27: note: annotate 'ANY' with '@MainActor' if property should only be accessed from the main actor
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9163:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9196:23: warning: static property 'WITHCOORD' is not concurrency-safe because non-'Sendable' type 'GeoradiusbymemberOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHCOORD = GeoradiusbymemberOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9193:15: note: consider making struct 'GeoradiusbymemberOptions' conform to the 'Sendable' protocol
public struct GeoradiusbymemberOptions: OptionSet, ToRedisArgs {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9196:23: note: annotate 'WITHCOORD' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHCOORD = GeoradiusbymemberOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9196:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHCOORD = GeoradiusbymemberOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9197:23: warning: static property 'WITHDIST' is not concurrency-safe because non-'Sendable' type 'GeoradiusbymemberOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHDIST = GeoradiusbymemberOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9193:15: note: consider making struct 'GeoradiusbymemberOptions' conform to the 'Sendable' protocol
public struct GeoradiusbymemberOptions: OptionSet, ToRedisArgs {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9197:23: note: annotate 'WITHDIST' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHDIST = GeoradiusbymemberOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9197:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHDIST = GeoradiusbymemberOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9198:23: warning: static property 'WITHHASH' is not concurrency-safe because non-'Sendable' type 'GeoradiusbymemberOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHHASH = GeoradiusbymemberOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9193:15: note: consider making struct 'GeoradiusbymemberOptions' conform to the 'Sendable' protocol
public struct GeoradiusbymemberOptions: OptionSet, ToRedisArgs {
              ^
                                                              , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9198:23: note: annotate 'WITHHASH' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHHASH = GeoradiusbymemberOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9198:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHHASH = GeoradiusbymemberOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9234:27: warning: static property 'ANY' is not concurrency-safe because non-'Sendable' type 'GeoradiusbymemberRoCountblock.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9231:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet, ToRedisArgs {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9234:27: note: annotate 'ANY' with '@MainActor' if property should only be accessed from the main actor
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9234:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9253:23: warning: static property 'WITHCOORD' is not concurrency-safe because non-'Sendable' type 'GeoradiusbymemberRoOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHCOORD = GeoradiusbymemberRoOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9250:15: note: consider making struct 'GeoradiusbymemberRoOptions' conform to the 'Sendable' protocol
public struct GeoradiusbymemberRoOptions: OptionSet, ToRedisArgs {
              ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9253:23: note: annotate 'WITHCOORD' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHCOORD = GeoradiusbymemberRoOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9253:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHCOORD = GeoradiusbymemberRoOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9254:23: warning: static property 'WITHDIST' is not concurrency-safe because non-'Sendable' type 'GeoradiusbymemberRoOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHDIST = GeoradiusbymemberRoOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9250:15: note: consider making struct 'GeoradiusbymemberRoOptions' conform to the 'Sendable' protocol
public struct GeoradiusbymemberRoOptions: OptionSet, ToRedisArgs {
              ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9254:23: note: annotate 'WITHDIST' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHDIST = GeoradiusbymemberRoOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9254:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHDIST = GeoradiusbymemberRoOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9255:23: warning: static property 'WITHHASH' is not concurrency-safe because non-'Sendable' type 'GeoradiusbymemberRoOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHHASH = GeoradiusbymemberRoOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9250:15: note: consider making struct 'GeoradiusbymemberRoOptions' conform to the 'Sendable' protocol
public struct GeoradiusbymemberRoOptions: OptionSet, ToRedisArgs {
              ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9255:23: note: annotate 'WITHHASH' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHHASH = GeoradiusbymemberRoOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9255:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHHASH = GeoradiusbymemberRoOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9291:27: warning: static property 'ANY' is not concurrency-safe because non-'Sendable' type 'GeoradiusRoCountblock.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9288:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet, ToRedisArgs {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9291:27: note: annotate 'ANY' with '@MainActor' if property should only be accessed from the main actor
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9291:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9310:23: warning: static property 'WITHCOORD' is not concurrency-safe because non-'Sendable' type 'GeoradiusRoOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHCOORD = GeoradiusRoOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9307:15: note: consider making struct 'GeoradiusRoOptions' conform to the 'Sendable' protocol
public struct GeoradiusRoOptions: OptionSet, ToRedisArgs {
              ^
                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9310:23: note: annotate 'WITHCOORD' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHCOORD = GeoradiusRoOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9310:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHCOORD = GeoradiusRoOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9311:23: warning: static property 'WITHDIST' is not concurrency-safe because non-'Sendable' type 'GeoradiusRoOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHDIST = GeoradiusRoOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9307:15: note: consider making struct 'GeoradiusRoOptions' conform to the 'Sendable' protocol
public struct GeoradiusRoOptions: OptionSet, ToRedisArgs {
              ^
                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9311:23: note: annotate 'WITHDIST' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHDIST = GeoradiusRoOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9311:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHDIST = GeoradiusRoOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9312:23: warning: static property 'WITHHASH' is not concurrency-safe because non-'Sendable' type 'GeoradiusRoOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHHASH = GeoradiusRoOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9307:15: note: consider making struct 'GeoradiusRoOptions' conform to the 'Sendable' protocol
public struct GeoradiusRoOptions: OptionSet, ToRedisArgs {
              ^
                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9312:23: note: annotate 'WITHHASH' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHHASH = GeoradiusRoOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9312:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHHASH = GeoradiusRoOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9437:27: warning: static property 'ANY' is not concurrency-safe because non-'Sendable' type 'GeosearchCountblock.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9434:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet, ToRedisArgs {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9437:27: note: annotate 'ANY' with '@MainActor' if property should only be accessed from the main actor
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9437:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9446:23: warning: static property 'WITHCOORD' is not concurrency-safe because non-'Sendable' type 'GeosearchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHCOORD = GeosearchOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9443:15: note: consider making struct 'GeosearchOptions' conform to the 'Sendable' protocol
public struct GeosearchOptions: OptionSet, ToRedisArgs {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9446:23: note: annotate 'WITHCOORD' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHCOORD = GeosearchOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9446:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHCOORD = GeosearchOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9447:23: warning: static property 'WITHDIST' is not concurrency-safe because non-'Sendable' type 'GeosearchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHDIST = GeosearchOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9443:15: note: consider making struct 'GeosearchOptions' conform to the 'Sendable' protocol
public struct GeosearchOptions: OptionSet, ToRedisArgs {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9447:23: note: annotate 'WITHDIST' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHDIST = GeosearchOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9447:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHDIST = GeosearchOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9448:23: warning: static property 'WITHHASH' is not concurrency-safe because non-'Sendable' type 'GeosearchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHHASH = GeosearchOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9443:15: note: consider making struct 'GeosearchOptions' conform to the 'Sendable' protocol
public struct GeosearchOptions: OptionSet, ToRedisArgs {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9448:23: note: annotate 'WITHHASH' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHHASH = GeosearchOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9448:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHHASH = GeosearchOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9573:27: warning: static property 'ANY' is not concurrency-safe because non-'Sendable' type 'GeosearchstoreCountblock.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9570:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet, ToRedisArgs {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9573:27: note: annotate 'ANY' with '@MainActor' if property should only be accessed from the main actor
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9573:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let ANY = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9582:23: warning: static property 'STOREDIST' is not concurrency-safe because non-'Sendable' type 'GeosearchstoreOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let STOREDIST = GeosearchstoreOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9579:15: note: consider making struct 'GeosearchstoreOptions' conform to the 'Sendable' protocol
public struct GeosearchstoreOptions: OptionSet, ToRedisArgs {
              ^
                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9582:23: note: annotate 'STOREDIST' with '@MainActor' if property should only be accessed from the main actor
    public static let STOREDIST = GeosearchstoreOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9582:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let STOREDIST = GeosearchstoreOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9666:27: warning: static property 'WITHVALUES' is not concurrency-safe because non-'Sendable' type 'HrandfieldOptions.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let WITHVALUES = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9663:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet, ToRedisArgs {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9666:27: note: annotate 'WITHVALUES' with '@MainActor' if property should only be accessed from the main actor
        public static let WITHVALUES = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9666:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let WITHVALUES = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9687:23: warning: static property 'LEN' is not concurrency-safe because non-'Sendable' type 'LcsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let LEN = LcsOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9684:15: note: consider making struct 'LcsOptions' conform to the 'Sendable' protocol
public struct LcsOptions: OptionSet, ToRedisArgs {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9687:23: note: annotate 'LEN' with '@MainActor' if property should only be accessed from the main actor
    public static let LEN = LcsOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9687:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let LEN = LcsOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9688:23: warning: static property 'IDX' is not concurrency-safe because non-'Sendable' type 'LcsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let IDX = LcsOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9684:15: note: consider making struct 'LcsOptions' conform to the 'Sendable' protocol
public struct LcsOptions: OptionSet, ToRedisArgs {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9688:23: note: annotate 'IDX' with '@MainActor' if property should only be accessed from the main actor
    public static let IDX = LcsOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9688:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let IDX = LcsOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9689:23: warning: static property 'WITHMATCHLEN' is not concurrency-safe because non-'Sendable' type 'LcsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHMATCHLEN = LcsOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9684:15: note: consider making struct 'LcsOptions' conform to the 'Sendable' protocol
public struct LcsOptions: OptionSet, ToRedisArgs {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9689:23: note: annotate 'WITHMATCHLEN' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHMATCHLEN = LcsOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9689:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHMATCHLEN = LcsOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9775:23: warning: static property 'COPY' is not concurrency-safe because non-'Sendable' type 'MigrateOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let COPY = MigrateOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9772:15: note: consider making struct 'MigrateOptions' conform to the 'Sendable' protocol
public struct MigrateOptions: OptionSet, ToRedisArgs {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9775:23: note: annotate 'COPY' with '@MainActor' if property should only be accessed from the main actor
    public static let COPY = MigrateOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9775:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let COPY = MigrateOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9776:23: warning: static property 'REPLACE' is not concurrency-safe because non-'Sendable' type 'MigrateOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let REPLACE = MigrateOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9772:15: note: consider making struct 'MigrateOptions' conform to the 'Sendable' protocol
public struct MigrateOptions: OptionSet, ToRedisArgs {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9776:23: note: annotate 'REPLACE' with '@MainActor' if property should only be accessed from the main actor
    public static let REPLACE = MigrateOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9776:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let REPLACE = MigrateOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9837:23: warning: static property 'REPLACE' is not concurrency-safe because non-'Sendable' type 'RestoreOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let REPLACE = RestoreOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9834:15: note: consider making struct 'RestoreOptions' conform to the 'Sendable' protocol
public struct RestoreOptions: OptionSet, ToRedisArgs {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9837:23: note: annotate 'REPLACE' with '@MainActor' if property should only be accessed from the main actor
    public static let REPLACE = RestoreOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9837:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let REPLACE = RestoreOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9838:23: warning: static property 'ABSTTL' is not concurrency-safe because non-'Sendable' type 'RestoreOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ABSTTL = RestoreOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9834:15: note: consider making struct 'RestoreOptions' conform to the 'Sendable' protocol
public struct RestoreOptions: OptionSet, ToRedisArgs {
              ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9838:23: note: annotate 'ABSTTL' with '@MainActor' if property should only be accessed from the main actor
    public static let ABSTTL = RestoreOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9838:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ABSTTL = RestoreOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9847:23: warning: static property 'REPLACE' is not concurrency-safe because non-'Sendable' type 'RestoreAskingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let REPLACE = RestoreAskingOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9844:15: note: consider making struct 'RestoreAskingOptions' conform to the 'Sendable' protocol
public struct RestoreAskingOptions: OptionSet, ToRedisArgs {
              ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9847:23: note: annotate 'REPLACE' with '@MainActor' if property should only be accessed from the main actor
    public static let REPLACE = RestoreAskingOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9847:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let REPLACE = RestoreAskingOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9848:23: warning: static property 'ABSTTL' is not concurrency-safe because non-'Sendable' type 'RestoreAskingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ABSTTL = RestoreAskingOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9844:15: note: consider making struct 'RestoreAskingOptions' conform to the 'Sendable' protocol
public struct RestoreAskingOptions: OptionSet, ToRedisArgs {
              ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9848:23: note: annotate 'ABSTTL' with '@MainActor' if property should only be accessed from the main actor
    public static let ABSTTL = RestoreAskingOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9848:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ABSTTL = RestoreAskingOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9891:23: warning: static property 'GET' is not concurrency-safe because non-'Sendable' type 'SetOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let GET = SetOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9888:15: note: consider making struct 'SetOptions' conform to the 'Sendable' protocol
public struct SetOptions: OptionSet, ToRedisArgs {
              ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9891:23: note: annotate 'GET' with '@MainActor' if property should only be accessed from the main actor
    public static let GET = SetOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9891:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let GET = SetOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9907:23: warning: static property 'NOW' is not concurrency-safe because non-'Sendable' type 'ShutdownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let NOW = ShutdownOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9904:15: note: consider making struct 'ShutdownOptions' conform to the 'Sendable' protocol
public struct ShutdownOptions: OptionSet, ToRedisArgs {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9907:23: note: annotate 'NOW' with '@MainActor' if property should only be accessed from the main actor
    public static let NOW = ShutdownOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9907:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let NOW = ShutdownOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9908:23: warning: static property 'FORCE' is not concurrency-safe because non-'Sendable' type 'ShutdownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let FORCE = ShutdownOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9904:15: note: consider making struct 'ShutdownOptions' conform to the 'Sendable' protocol
public struct ShutdownOptions: OptionSet, ToRedisArgs {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9908:23: note: annotate 'FORCE' with '@MainActor' if property should only be accessed from the main actor
    public static let FORCE = ShutdownOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9908:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let FORCE = ShutdownOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9909:23: warning: static property 'ABORT' is not concurrency-safe because non-'Sendable' type 'ShutdownOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ABORT = ShutdownOptions(rawValue: 1 << 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9904:15: note: consider making struct 'ShutdownOptions' conform to the 'Sendable' protocol
public struct ShutdownOptions: OptionSet, ToRedisArgs {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9909:23: note: annotate 'ABORT' with '@MainActor' if property should only be accessed from the main actor
    public static let ABORT = ShutdownOptions(rawValue: 1 << 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9909:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ABORT = ShutdownOptions(rawValue: 1 << 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9941:23: warning: static property 'ALPHA' is not concurrency-safe because non-'Sendable' type 'SortOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ALPHA = SortOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9938:15: note: consider making struct 'SortOptions' conform to the 'Sendable' protocol
public struct SortOptions: OptionSet, ToRedisArgs {
              ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9941:23: note: annotate 'ALPHA' with '@MainActor' if property should only be accessed from the main actor
    public static let ALPHA = SortOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9941:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ALPHA = SortOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9971:23: warning: static property 'ALPHA' is not concurrency-safe because non-'Sendable' type 'SortRoOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ALPHA = SortRoOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9968:15: note: consider making struct 'SortRoOptions' conform to the 'Sendable' protocol
public struct SortRoOptions: OptionSet, ToRedisArgs {
              ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9971:23: note: annotate 'ALPHA' with '@MainActor' if property should only be accessed from the main actor
    public static let ALPHA = SortRoOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:9971:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ALPHA = SortRoOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10040:23: warning: static property 'NOMKSTREAM' is not concurrency-safe because non-'Sendable' type 'XaddOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let NOMKSTREAM = XaddOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10037:15: note: consider making struct 'XaddOptions' conform to the 'Sendable' protocol
public struct XaddOptions: OptionSet, ToRedisArgs {
              ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10040:23: note: annotate 'NOMKSTREAM' with '@MainActor' if property should only be accessed from the main actor
    public static let NOMKSTREAM = XaddOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10040:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let NOMKSTREAM = XaddOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10048:23: warning: static property 'JUSTID' is not concurrency-safe because non-'Sendable' type 'XautoclaimOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let JUSTID = XautoclaimOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10045:15: note: consider making struct 'XautoclaimOptions' conform to the 'Sendable' protocol
public struct XautoclaimOptions: OptionSet, ToRedisArgs {
              ^
                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10048:23: note: annotate 'JUSTID' with '@MainActor' if property should only be accessed from the main actor
    public static let JUSTID = XautoclaimOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10048:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let JUSTID = XautoclaimOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10056:23: warning: static property 'FORCE' is not concurrency-safe because non-'Sendable' type 'XclaimOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let FORCE = XclaimOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10053:15: note: consider making struct 'XclaimOptions' conform to the 'Sendable' protocol
public struct XclaimOptions: OptionSet, ToRedisArgs {
              ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10056:23: note: annotate 'FORCE' with '@MainActor' if property should only be accessed from the main actor
    public static let FORCE = XclaimOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10056:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let FORCE = XclaimOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10057:23: warning: static property 'JUSTID' is not concurrency-safe because non-'Sendable' type 'XclaimOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let JUSTID = XclaimOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10053:15: note: consider making struct 'XclaimOptions' conform to the 'Sendable' protocol
public struct XclaimOptions: OptionSet, ToRedisArgs {
              ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10057:23: note: annotate 'JUSTID' with '@MainActor' if property should only be accessed from the main actor
    public static let JUSTID = XclaimOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10057:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let JUSTID = XclaimOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10124:23: warning: static property 'NOACK' is not concurrency-safe because non-'Sendable' type 'XreadgroupOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let NOACK = XreadgroupOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10121:15: note: consider making struct 'XreadgroupOptions' conform to the 'Sendable' protocol
public struct XreadgroupOptions: OptionSet, ToRedisArgs {
              ^
                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10124:23: note: annotate 'NOACK' with '@MainActor' if property should only be accessed from the main actor
    public static let NOACK = XreadgroupOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10124:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let NOACK = XreadgroupOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10203:23: warning: static property 'CH' is not concurrency-safe because non-'Sendable' type 'ZaddOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let CH = ZaddOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10200:15: note: consider making struct 'ZaddOptions' conform to the 'Sendable' protocol
public struct ZaddOptions: OptionSet, ToRedisArgs {
              ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10203:23: note: annotate 'CH' with '@MainActor' if property should only be accessed from the main actor
    public static let CH = ZaddOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10203:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let CH = ZaddOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10204:23: warning: static property 'INCR' is not concurrency-safe because non-'Sendable' type 'ZaddOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let INCR = ZaddOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10200:15: note: consider making struct 'ZaddOptions' conform to the 'Sendable' protocol
public struct ZaddOptions: OptionSet, ToRedisArgs {
              ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10204:23: note: annotate 'INCR' with '@MainActor' if property should only be accessed from the main actor
    public static let INCR = ZaddOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10204:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let INCR = ZaddOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10213:23: warning: static property 'WITHSCORES' is not concurrency-safe because non-'Sendable' type 'ZdiffOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHSCORES = ZdiffOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10210:15: note: consider making struct 'ZdiffOptions' conform to the 'Sendable' protocol
public struct ZdiffOptions: OptionSet, ToRedisArgs {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10213:23: note: annotate 'WITHSCORES' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHSCORES = ZdiffOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10213:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHSCORES = ZdiffOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10233:23: warning: static property 'WITHSCORES' is not concurrency-safe because non-'Sendable' type 'ZinterOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHSCORES = ZinterOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10230:15: note: consider making struct 'ZinterOptions' conform to the 'Sendable' protocol
public struct ZinterOptions: OptionSet, ToRedisArgs {
              ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10233:23: note: annotate 'WITHSCORES' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHSCORES = ZinterOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10233:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHSCORES = ZinterOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10274:27: warning: static property 'WITHSCORES' is not concurrency-safe because non-'Sendable' type 'ZrandmemberOptions.Options' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let WITHSCORES = Options(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10271:19: note: consider making struct 'Options' conform to the 'Sendable' protocol
    public struct Options: OptionSet, ToRedisArgs {
                  ^
                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10274:27: note: annotate 'WITHSCORES' with '@MainActor' if property should only be accessed from the main actor
        public static let WITHSCORES = Options(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10274:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let WITHSCORES = Options(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10305:23: warning: static property 'REV' is not concurrency-safe because non-'Sendable' type 'ZrangeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let REV = ZrangeOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10302:15: note: consider making struct 'ZrangeOptions' conform to the 'Sendable' protocol
public struct ZrangeOptions: OptionSet, ToRedisArgs {
              ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10305:23: note: annotate 'REV' with '@MainActor' if property should only be accessed from the main actor
    public static let REV = ZrangeOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10305:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let REV = ZrangeOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10306:23: warning: static property 'WITHSCORES' is not concurrency-safe because non-'Sendable' type 'ZrangeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHSCORES = ZrangeOptions(rawValue: 1 << 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10302:15: note: consider making struct 'ZrangeOptions' conform to the 'Sendable' protocol
public struct ZrangeOptions: OptionSet, ToRedisArgs {
              ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10306:23: note: annotate 'WITHSCORES' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHSCORES = ZrangeOptions(rawValue: 1 << 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10306:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHSCORES = ZrangeOptions(rawValue: 1 << 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10339:23: warning: static property 'WITHSCORES' is not concurrency-safe because non-'Sendable' type 'ZrangebyscoreOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHSCORES = ZrangebyscoreOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10336:15: note: consider making struct 'ZrangebyscoreOptions' conform to the 'Sendable' protocol
public struct ZrangebyscoreOptions: OptionSet, ToRedisArgs {
              ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10339:23: note: annotate 'WITHSCORES' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHSCORES = ZrangebyscoreOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10339:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHSCORES = ZrangebyscoreOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10369:23: warning: static property 'REV' is not concurrency-safe because non-'Sendable' type 'ZrangestoreOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let REV = ZrangestoreOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10366:15: note: consider making struct 'ZrangestoreOptions' conform to the 'Sendable' protocol
public struct ZrangestoreOptions: OptionSet, ToRedisArgs {
              ^
                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10369:23: note: annotate 'REV' with '@MainActor' if property should only be accessed from the main actor
    public static let REV = ZrangestoreOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10369:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let REV = ZrangestoreOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10375:23: warning: static property 'WITHSCORE' is not concurrency-safe because non-'Sendable' type 'ZrankOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHSCORE = ZrankOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10372:15: note: consider making struct 'ZrankOptions' conform to the 'Sendable' protocol
public struct ZrankOptions: OptionSet, ToRedisArgs {
              ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10375:23: note: annotate 'WITHSCORE' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHSCORE = ZrankOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10375:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHSCORE = ZrankOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10383:23: warning: static property 'WITHSCORES' is not concurrency-safe because non-'Sendable' type 'ZrevrangeOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHSCORES = ZrevrangeOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10380:15: note: consider making struct 'ZrevrangeOptions' conform to the 'Sendable' protocol
public struct ZrevrangeOptions: OptionSet, ToRedisArgs {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10383:23: note: annotate 'WITHSCORES' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHSCORES = ZrevrangeOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10383:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHSCORES = ZrevrangeOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10415:23: warning: static property 'WITHSCORES' is not concurrency-safe because non-'Sendable' type 'ZrevrangebyscoreOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHSCORES = ZrevrangebyscoreOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10412:15: note: consider making struct 'ZrevrangebyscoreOptions' conform to the 'Sendable' protocol
public struct ZrevrangebyscoreOptions: OptionSet, ToRedisArgs {
              ^
                                                             , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10415:23: note: annotate 'WITHSCORES' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHSCORES = ZrevrangebyscoreOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10415:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHSCORES = ZrevrangebyscoreOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10423:23: warning: static property 'WITHSCORE' is not concurrency-safe because non-'Sendable' type 'ZrevrankOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHSCORE = ZrevrankOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10420:15: note: consider making struct 'ZrevrankOptions' conform to the 'Sendable' protocol
public struct ZrevrankOptions: OptionSet, ToRedisArgs {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10423:23: note: annotate 'WITHSCORE' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHSCORE = ZrevrankOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10423:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHSCORE = ZrevrankOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10443:23: warning: static property 'WITHSCORES' is not concurrency-safe because non-'Sendable' type 'ZunionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHSCORES = ZunionOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10440:15: note: consider making struct 'ZunionOptions' conform to the 'Sendable' protocol
public struct ZunionOptions: OptionSet, ToRedisArgs {
              ^
                                                   , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10443:23: note: annotate 'WITHSCORES' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHSCORES = ZunionOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift:10443:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHSCORES = ZunionOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/containerless.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/function.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/latency.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/containerless.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/function.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/latency.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift:334:23: warning: static property 'WITHCODE' is not concurrency-safe because non-'Sendable' type 'FunctionListOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WITHCODE = FunctionListOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift:331:15: note: consider making struct 'FunctionListOptions' conform to the 'Sendable' protocol
public struct FunctionListOptions: OptionSet, ToRedisArgs {
              ^
                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift:334:23: note: annotate 'WITHCODE' with '@MainActor' if property should only be accessed from the main actor
    public static let WITHCODE = FunctionListOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift:334:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WITHCODE = FunctionListOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift:354:23: warning: static property 'REPLACE' is not concurrency-safe because non-'Sendable' type 'FunctionLoadOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let REPLACE = FunctionLoadOptions(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift:351:15: note: consider making struct 'FunctionLoadOptions' conform to the 'Sendable' protocol
public struct FunctionLoadOptions: OptionSet, ToRedisArgs {
              ^
                                                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift:354:23: note: annotate 'REPLACE' with '@MainActor' if property should only be accessed from the main actor
    public static let REPLACE = FunctionLoadOptions(rawValue: 1 << 0)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift:354:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let REPLACE = FunctionLoadOptions(rawValue: 1 << 0)
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-3 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/containerless.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/function.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/latency.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/containerless.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/function.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/latency.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftyRedis (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftCompile normal arm64 Compiling\ Connection.swift,\ Errors.swift,\ FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Connection.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Errors.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/FromRedisValue.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Connection.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Errors.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/FromRedisValue.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Connection.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Errors.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/FromRedisValue.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Connection.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Errors.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/FromRedisValue.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Connection.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Errors.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/FromRedisValue.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Connection.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Errors.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/FromRedisValue.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift:24:10: warning: associated value 'WithDescription' of 'Sendable'-conforming enum 'RedisError' has non-sendable type 'ErrorKind'; this is an error in the Swift 6 language mode
    case WithDescription(ErrorKind, String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift:76:13: note: consider making enum 'ErrorKind' conform to the 'Sendable' protocol
public enum ErrorKind: Equatable {
            ^
                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift:28:10: warning: associated value 'WithDescriptionAndDetail' of 'Sendable'-conforming enum 'RedisError' has non-sendable type 'ErrorKind'; this is an error in the Swift 6 language mode
    case WithDescriptionAndDetail(ErrorKind, String, String)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift:76:13: note: consider making enum 'ErrorKind' conform to the 'Sendable' protocol
public enum ErrorKind: Equatable {
            ^
                                , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-7 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Connection.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Errors.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/FromRedisValue.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Connection.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/Errors.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/FromRedisValue.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriver\ Compilation\ Requirements SwiftyRedis normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name SwiftyRedis -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios13.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-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis-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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ memory.swift,\ module.swift,\ object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/memory.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/module.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/object.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/memory.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/module.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/object.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/memory.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/module.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/object.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/memory.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/module.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/object.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/memory.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/module.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/object.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/memory.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/module.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/object.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/AsyncNetworking.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Cmd.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/acl.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/client.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/cluster.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/command.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/config.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/containerless.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/function.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/latency.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/memory.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/module.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/object.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/pubsub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/script.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/sentinel.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/slowlog.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xgroup.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/CodeGen/Commands/xinfo.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Connection.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/FromRedisValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/JSONValue.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Pipeline.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ProtocolSpec.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/PubSub.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ResponseValueParser.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Stream.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/ToRedisArgs.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Transaction.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftyRedis/Value.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/supplementaryOutputs-4 -target arm64-apple-ios13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftyRedis -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name iphoneos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/memory.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/module.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/object.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/memory.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/module.o -index-unit-output-path /SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/object.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling JSONValue.swift, Pipeline.swift, ProtocolSpec.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriverJobDiscovery normal arm64 Compiling ToRedisArgs.swift, Transaction.swift, Value.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncNetworking.swift, Client.swift, Cmd.swift, acl.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriverJobDiscovery normal arm64 Compiling slowlog.swift, xgroup.swift, xinfo.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncSemaphore.swift (in target 'Semaphore' from project 'Semaphore')
SwiftDriverJobDiscovery normal arm64 Compiling PubSub.swift, ResponseValueParser.swift, Stream.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriverJobDiscovery normal arm64 Compiling pubsub.swift, script.swift, sentinel.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriver\ Compilation Semaphore normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Semaphore' from project 'Semaphore')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Semaphore
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Semaphore -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.build/Objects-normal/arm64/Semaphore.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios13.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 -suppress-warnings -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-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.build/Objects-normal/arm64/Semaphore-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/Semaphore.build/Debug-iphoneos/Semaphore.build/Objects-normal/arm64/Semaphore.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/Semaphore.build/Debug-iphoneos/Semaphore.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.build/Objects-normal/arm64/Semaphore_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.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/Semaphore.build/Debug-iphoneos/Semaphore.build/Objects-normal/arm64/Semaphore-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Semaphore -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/SwiftyRedis-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis-Swift.h (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/SwiftyRedis-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.swiftmodule (in target 'SwiftyRedis' from project 'SwiftyRedis')
    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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.abi.json (in target 'SwiftyRedis' from project 'SwiftyRedis')
    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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.swiftdoc (in target 'SwiftyRedis' from project 'SwiftyRedis')
    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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.swiftsourceinfo (in target 'SwiftyRedis' from project 'SwiftyRedis')
    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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Semaphore.o normal (in target 'Semaphore' from project 'Semaphore')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Semaphore
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.build/Objects-normal/arm64/Semaphore.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.build/Objects-normal/arm64/Semaphore_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.build/Objects-normal/arm64/Semaphore.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Semaphore.build/Debug-iphoneos/Semaphore.build/Objects-normal/arm64/Semaphore_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Semaphore.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Semaphore.o (in target 'Semaphore' from project 'Semaphore')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Semaphore
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Semaphore.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.LinkFileList (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.LinkFileList
SwiftDriverJobDiscovery normal arm64 Compiling client.swift, cluster.swift, command.swift, config.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriverJobDiscovery normal arm64 Compiling memory.swift, module.swift, object.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriverJobDiscovery normal arm64 Compiling Connection.swift, Errors.swift, FromRedisValue.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriverJobDiscovery normal arm64 Compiling containerless.swift, function.swift, latency.swift (in target 'SwiftyRedis' from project 'SwiftyRedis')
SwiftDriver\ Compilation SwiftyRedis normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name SwiftyRedis -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -target arm64-apple-ios13.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-iphoneos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis-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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.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/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.o normal (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftyRedis.build/Debug-iphoneos/SwiftyRedis.build/Objects-normal/arm64/SwiftyRedis_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.o (in target 'SwiftyRedis' from project 'SwiftyRedis')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftyRedis.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'SwiftyRedis' from project 'SwiftyRedis')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Semaphore' from project 'Semaphore')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'SwiftyRedis' from project 'SwiftyRedis')
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "semaphore",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.0.7",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/groue/Semaphore"
    }
  ],
  "manifest_display_name" : "SwiftyRedis",
  "name" : "SwiftyRedis",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftyRedis",
      "targets" : [
        "SwiftyRedis"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftyRedisTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftyRedisTests",
      "path" : "Tests/SwiftyRedisTests",
      "sources" : [
        "ConnectionTests.swift",
        "PubSubConnectionTests.swift",
        "ResponseValueParserTests.swift",
        "TransactionTests.swift"
      ],
      "target_dependencies" : [
        "SwiftyRedis"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftyRedis",
      "module_type" : "SwiftTarget",
      "name" : "SwiftyRedis",
      "path" : "Sources/SwiftyRedis",
      "product_dependencies" : [
        "Semaphore"
      ],
      "product_memberships" : [
        "SwiftyRedis"
      ],
      "sources" : [
        "AsyncNetworking.swift",
        "Client.swift",
        "Cmd.swift",
        "CodeGen/Commands/acl.swift",
        "CodeGen/Commands/client.swift",
        "CodeGen/Commands/cluster.swift",
        "CodeGen/Commands/command.swift",
        "CodeGen/Commands/config.swift",
        "CodeGen/Commands/containerless.swift",
        "CodeGen/Commands/function.swift",
        "CodeGen/Commands/latency.swift",
        "CodeGen/Commands/memory.swift",
        "CodeGen/Commands/module.swift",
        "CodeGen/Commands/object.swift",
        "CodeGen/Commands/pubsub.swift",
        "CodeGen/Commands/script.swift",
        "CodeGen/Commands/sentinel.swift",
        "CodeGen/Commands/slowlog.swift",
        "CodeGen/Commands/xgroup.swift",
        "CodeGen/Commands/xinfo.swift",
        "Connection.swift",
        "Errors.swift",
        "FromRedisValue.swift",
        "JSONValue.swift",
        "Pipeline.swift",
        "ProtocolSpec.swift",
        "PubSub.swift",
        "ResponseValueParser.swift",
        "Stream.swift",
        "ToRedisArgs.swift",
        "Transaction.swift",
        "Value.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.