The Swift Package Index logo.Swift Package Index

Build Information

Successful build of RedShot, reference master (d610ad), with Swift 6.2 for macOS (SPM) on 20 Jun 2025 21:48:18 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/OperatorFoundation/Redshot.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/OperatorFoundation/Redshot
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at d610adb Merge branch 'master' of https://github.com/OperatorFoundation/Redshot
Cloned https://github.com/OperatorFoundation/Redshot.git
Revision (git rev-parse @):
d610adbedaa5273f7cd8c928816e4e8c3edc01af
SUCCESS checkout https://github.com/OperatorFoundation/Redshot.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/OperatorFoundation/Redshot.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-1EA4D86E10B52AF.txt
[4/33] Emitting module Datable
[5/36] Compiling Datable UInt+Datable.swift
[6/36] Compiling Datable UInt+MaybeNetworkDatable.swift
[7/36] Compiling Datable UInt+Stringable.swift
[8/36] Compiling Datable Float+MaybeDatable.swift
[9/36] Compiling Datable Floatable.swift
[10/36] Compiling Datable Int+MaybeDatable.swift
[11/36] Compiling Datable Int+Stringable.swift
[12/36] Compiling Datable Intable.swift
[13/36] Compiling Datable MaybeDatable.swift
[14/36] Compiling Datable Arrayable.swift
[15/36] Compiling Datable CSVable.swift
[16/36] Compiling Datable Data+Arrayable.swift
[17/36] Compiling Datable Data+Datable.swift
[18/36] Compiling Datable String+Intable.swift
[19/36] Compiling Datable Stringable.swift
[20/36] Compiling Datable StringableArray+CSVable.swift
[21/36] Compiling Datable MaybeIntable.swift
[22/36] Compiling Datable MaybeNetworkIntable.swift
[23/36] Compiling Datable NetworkDatable.swift
[24/36] Compiling Datable Data+Stringable.swift
[25/36] Compiling Datable Datable.swift
[26/36] Compiling Datable DatableConfig.swift
[27/36] Compiling Datable NetworkIntable.swift
[28/36] Compiling Datable String+Arrayable.swift
[29/36] Compiling Datable String+Datable.swift
[30/36] Compiling Datable Double+MaybeDatable.swift
[31/36] Compiling Datable Double+Stringable.swift
[32/36] Compiling Datable File.swift
[33/36] Compiling Datable Data+ExpressibleByStringLiteral.swift
[34/36] Compiling Datable Data+Floatable.swift
[35/36] Compiling Datable Data+MaybeIntable.swift
[36/36] Compiling Datable Data+MaybeNetworkIntable.swift
[37/44] Compiling RedShot ResponseParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/RedShot/ResponseParser.swift:74:20: warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
 72 |             }
 73 |
 74 |             return Data(bytes: buffer)
    |                    `- warning: 'init(bytes:)' is deprecated: use `init(_:)` instead [#DeprecatedDeclaration]
 75 |
 76 |         case .simpleString:
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[38/44] Compiling RedShot RedisSocket.swift
[39/44] Compiling RedShot RedisSubscribe.swift
[40/44] Compiling RedShot RedisType.swift
[41/44] Compiling RedShot Redis.swift
/Users/admin/builder/spi-builder-workspace/Sources/RedShot/Redis.swift:88:34: warning: 'withUnsafeBytes' is deprecated: use `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead [#DeprecatedDeclaration]
 86 |
 87 |             let copyData = Data(data)
 88 |             let bytes = copyData.withUnsafeBytes {
    |                                  `- warning: 'withUnsafeBytes' is deprecated: use `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead [#DeprecatedDeclaration]
 89 |                 [UInt8](UnsafeBufferPointer(start: $0, count: data.count))
 90 |             }
/Users/admin/builder/spi-builder-workspace/Sources/RedShot/Redis.swift:160:30: warning: 'withUnsafeBytes' is deprecated: use `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead [#DeprecatedDeclaration]
158 |             }
159 |
160 |             let bytes = data.withUnsafeBytes {
    |                              `- warning: 'withUnsafeBytes' is deprecated: use `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead [#DeprecatedDeclaration]
161 |                 [UInt8](UnsafeBufferPointer(start: $0, count: data.count))
162 |             }
/Users/admin/builder/spi-builder-workspace/Sources/RedShot/Redis.swift:183:38: warning: 'withUnsafeBytes' is deprecated: use `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead [#DeprecatedDeclaration]
181 |                     }
182 |
183 |                     let bytes = data.withUnsafeBytes {
    |                                      `- warning: 'withUnsafeBytes' is deprecated: use `withUnsafeBytes<R>(_: (UnsafeRawBufferPointer) throws -> R) rethrows -> R` instead [#DeprecatedDeclaration]
184 |                         [UInt8](UnsafeBufferPointer(start: $0, count: data.count))
185 |                     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[42/44] Compiling RedShot RedisCommands.swift
[43/44] Compiling RedShot Constants.swift
[44/44] Emitting module RedShot
Build complete! (7.18s)
Fetching https://github.com/OperatorFoundation/Datable.git
[1/399] Fetching datable
Fetched https://github.com/OperatorFoundation/Datable.git from cache (0.74s)
Computing version for https://github.com/OperatorFoundation/Datable.git
Computed https://github.com/OperatorFoundation/Datable.git at 3.1.5 (1.24s)
Creating working copy for https://github.com/OperatorFoundation/Datable.git
Working copy of https://github.com/OperatorFoundation/Datable.git resolved at 3.1.5
Build complete.
{
  "dependencies" : [
    {
      "identity" : "datable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.2",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/OperatorFoundation/Datable.git"
    }
  ],
  "manifest_display_name" : "RedShot",
  "name" : "RedShot",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "RedShot",
      "targets" : [
        "RedShot"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RedShotTests",
      "module_type" : "SwiftTarget",
      "name" : "RedShotTests",
      "path" : "Tests/RedShotTests",
      "sources" : [
        "RedShotPerformanceTests.swift",
        "RedShotTests.swift"
      ],
      "target_dependencies" : [
        "RedShot"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RedShot",
      "module_type" : "SwiftTarget",
      "name" : "RedShot",
      "path" : "Sources/RedShot",
      "product_dependencies" : [
        "Datable"
      ],
      "product_memberships" : [
        "RedShot"
      ],
      "sources" : [
        "Constants.swift",
        "Redis.swift",
        "RedisCommands.swift",
        "RedisSocket.swift",
        "RedisSubscribe.swift",
        "RedisType.swift",
        "ResponseParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.