The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SMBClient, reference 0.3.1 (e636c2), with Swift 6.2 (beta) for macOS (SPM) on 22 Jun 2025 19:20:30 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/kishikawakatsumi/SMBClient.git
Reference: 0.3.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/kishikawakatsumi/SMBClient
 * tag               0.3.1      -> FETCH_HEAD
HEAD is now at e636c2b Merge pull request #176 from kishikawakatsumi/anonymous
Cloned https://github.com/kishikawakatsumi/SMBClient.git
Revision (git rev-parse @):
e636c2b2458930770932a36d311ec9d478575b90
SUCCESS checkout https://github.com/kishikawakatsumi/SMBClient.git at 0.3.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/kishikawakatsumi/SMBClient.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/75] Compiling SMBClient FileInternalInformation.swift
[4/75] Compiling SMBClient FileModeInformation.swift
[5/75] Compiling SMBClient FileNameInformation.swift
[6/75] Compiling SMBClient FilePositionInformation.swift
[7/75] Compiling SMBClient FileRenameInformation.swift
[8/75] Compiling SMBClient FileStandardInformation.swift
[9/75] Compiling SMBClient InfoType.swift
[10/75] Compiling SMBClient SecurityDescriptor.swift
[11/83] Compiling SMBClient FileFsDeviceInformation.swift
[12/83] Compiling SMBClient FileFsLabelInformation.swift
[13/83] Compiling SMBClient FileFsSizeInformation.swift
[14/83] Compiling SMBClient FileFsVolumeInformation.swift
[15/83] Compiling SMBClient FileSystemInfoClass.swift
[16/83] Compiling SMBClient Header+CustomDebugStringConvertible.swift
[17/83] Compiling SMBClient Header.swift
[18/83] Compiling SMBClient IOCtl+CustomDebugStringConvertible.swift
[19/83] Compiling SMBClient IOCtl.swift
[20/83] Compiling SMBClient Logoff+CustomDebugStringConvertible.swift
[21/83] Compiling SMBClient Logoff.swift
[22/83] Compiling SMBClient Message.swift
[23/83] Compiling SMBClient Negotiate+CustomDebugStringConvertible.swift
[24/83] Compiling SMBClient Negotiate.swift
[25/83] Compiling SMBClient QueryDirectory+CustomDebugStringConvertible.swift
[26/83] Compiling SMBClient QueryDirectory.swift
[27/83] Compiling SMBClient Crypto.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:108:9: warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
106 |         }
107 |
108 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
109 |           switch result {
110 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[28/83] Compiling SMBClient NTLM.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:108:9: warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
106 |         }
107 |
108 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
109 |           switch result {
110 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[29/83] Compiling SMBClient ByteReader.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:108:9: warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
106 |         }
107 |
108 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
109 |           switch result {
110 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[30/83] Compiling SMBClient Connection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:108:9: warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
106 |         }
107 |
108 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
109 |           switch result {
110 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[31/83] Compiling SMBClient DCERPC.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:108:9: warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
106 |         }
107 |
108 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
109 |           switch result {
110 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[32/83] Compiling SMBClient NetShareEnum.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:108:9: warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
106 |         }
107 |
108 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
109 |           switch result {
110 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[33/83] Compiling SMBClient FileProxy.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:108:9: warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
106 |         }
107 |
108 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
109 |           switch result {
110 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[34/83] Compiling SMBClient FileReader.swift
/Users/admin/builder/spi-builder-workspace/Sources/SMBClient/Connection.swift:108:9: warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
  2 | import Network
  3 |
  4 | public class Connection {
    |              `- note: class 'Connection' does not conform to the 'Sendable' protocol
  5 |   let host: String
  6 |   var onDisconnected: (Error) -> Void
    :
106 |         }
107 |
108 |         self.receive() { (result) in
    |         `- warning: capture of 'self' with non-sendable type 'Connection' in a '@Sendable' closure [#SendableClosureCaptures]
109 |           switch result {
110 |           case .success(let data):
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[35/83] Compiling SMBClient TreeConnect+CustomDebugStringConvertible.swift
[36/83] Compiling SMBClient TreeConnect.swift
[37/83] Compiling SMBClient TreeDisconnect+CustomDebugStringConvertible.swift
[38/83] Compiling SMBClient TreeDisconnect.swift
[39/83] Compiling SMBClient Write+CustomDebugStringConvertible.swift
[40/83] Compiling SMBClient Write.swift
[41/83] Compiling SMBClient BinaryConvertible.swift
[42/83] Compiling SMBClient Data.swift
[43/83] Compiling SMBClient FileAllInformation.swift
[44/83] Compiling SMBClient FileBasicInformation.swift
[45/83] Compiling SMBClient FileDirectoryInformation.swift
[46/83] Compiling SMBClient FileDispositionInformation.swift
[47/83] Compiling SMBClient FileEaInformation.swift
[48/83] Compiling SMBClient FileIdBothDirectoryInformation.swift
[49/83] Compiling SMBClient FileInfoClass.swift
[50/83] Compiling SMBClient FileInformationClass.swift
[51/83] Compiling SMBClient Create.swift
[52/83] Compiling SMBClient Echo+CustomDebugStringConvertible.swift
[53/83] Compiling SMBClient Echo.swift
[54/83] Compiling SMBClient ErrorResponse.swift
[55/83] Compiling SMBClient NTStatus.swift
[56/83] Compiling SMBClient FileAttributes.swift
[57/83] Compiling SMBClient FileAccessInformation.swift
[58/83] Compiling SMBClient FileAlignmentInformation.swift
[59/83] Compiling SMBClient QueryInfo+CustomDebugStringConvertible.swift
[60/83] Compiling SMBClient QueryInfo.swift
[61/83] Compiling SMBClient Read+CustomDebugStringConvertible.swift
[62/83] Compiling SMBClient Read.swift
[63/83] Compiling SMBClient SessionSetup+CustomDebugStringConvertible.swift
[64/83] Compiling SMBClient SessionSetup.swift
[65/83] Compiling SMBClient SetInfo+CustomDebugStringConvertible.swift
[66/83] Compiling SMBClient SetInfo.swift
[67/83] Emitting module SMBClient
[68/83] Compiling SMBClient FileTime.swift
[69/83] Compiling SMBClient FileWriter.swift
[70/83] Compiling SMBClient AccessMask.swift
[71/83] Compiling SMBClient DirectoryAccessMask.swift
[72/83] Compiling SMBClient FilePipePrinterAccessMask.swift
[73/83] Compiling SMBClient Close+CustomDebugStringConvertible.swift
[74/83] Compiling SMBClient Close.swift
[75/83] Compiling SMBClient Create+CustomDebugStringConvertible.swift
[76/83] Compiling SMBClient Pathname.swift
[77/83] Compiling SMBClient Semaphore.swift
[78/83] Compiling SMBClient String.swift
[79/83] Compiling SMBClient UUID.swift
[80/83] Compiling SMBClient SMBClient.swift
[81/83] Compiling SMBClient Session.swift
[82/83] Compiling SMBClient Transport.swift
[83/83] Compiling SMBClient TreeAccessor.swift
Build complete! (6.41s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SMBClient",
  "name" : "SMBClient",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "SMBClient",
      "targets" : [
        "SMBClient"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SMBClientTests",
      "module_type" : "SwiftTarget",
      "name" : "SMBClientTests",
      "path" : "Tests/SMBClientTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SMBClientTests/Fixtures",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "CryptoTests.swift",
        "SMBClientTests.swift",
        "SessionTests.swift"
      ],
      "target_dependencies" : [
        "SMBClient"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SMBClient",
      "module_type" : "SwiftTarget",
      "name" : "SMBClient",
      "path" : "Sources/SMBClient",
      "product_memberships" : [
        "SMBClient"
      ],
      "sources" : [
        "Auth/Crypto.swift",
        "Auth/NTLM.swift",
        "ByteReader.swift",
        "Connection.swift",
        "DCERPC/DCERPC.swift",
        "DCERPC/NetShareEnum.swift",
        "FileProxy.swift",
        "FileReader.swift",
        "FileTime.swift",
        "FileWriter.swift",
        "Messages/AccessMask/AccessMask.swift",
        "Messages/AccessMask/DirectoryAccessMask.swift",
        "Messages/AccessMask/FilePipePrinterAccessMask.swift",
        "Messages/Close+CustomDebugStringConvertible.swift",
        "Messages/Close.swift",
        "Messages/Create+CustomDebugStringConvertible.swift",
        "Messages/Create.swift",
        "Messages/Echo+CustomDebugStringConvertible.swift",
        "Messages/Echo.swift",
        "Messages/Errors/ErrorResponse.swift",
        "Messages/Errors/NTStatus.swift",
        "Messages/FileAttributes.swift",
        "Messages/FileInformationClasses/FileAccessInformation.swift",
        "Messages/FileInformationClasses/FileAlignmentInformation.swift",
        "Messages/FileInformationClasses/FileAllInformation.swift",
        "Messages/FileInformationClasses/FileBasicInformation.swift",
        "Messages/FileInformationClasses/FileDirectoryInformation.swift",
        "Messages/FileInformationClasses/FileDispositionInformation.swift",
        "Messages/FileInformationClasses/FileEaInformation.swift",
        "Messages/FileInformationClasses/FileIdBothDirectoryInformation.swift",
        "Messages/FileInformationClasses/FileInfoClass.swift",
        "Messages/FileInformationClasses/FileInformationClass.swift",
        "Messages/FileInformationClasses/FileInternalInformation.swift",
        "Messages/FileInformationClasses/FileModeInformation.swift",
        "Messages/FileInformationClasses/FileNameInformation.swift",
        "Messages/FileInformationClasses/FilePositionInformation.swift",
        "Messages/FileInformationClasses/FileRenameInformation.swift",
        "Messages/FileInformationClasses/FileStandardInformation.swift",
        "Messages/FileInformationClasses/InfoType.swift",
        "Messages/FileInformationClasses/SecurityDescriptor.swift",
        "Messages/FileSystemInformationClasses/FileFsDeviceInformation.swift",
        "Messages/FileSystemInformationClasses/FileFsLabelInformation.swift",
        "Messages/FileSystemInformationClasses/FileFsSizeInformation.swift",
        "Messages/FileSystemInformationClasses/FileFsVolumeInformation.swift",
        "Messages/FileSystemInformationClasses/FileSystemInfoClass.swift",
        "Messages/Header+CustomDebugStringConvertible.swift",
        "Messages/Header.swift",
        "Messages/IOCtl+CustomDebugStringConvertible.swift",
        "Messages/IOCtl.swift",
        "Messages/Logoff+CustomDebugStringConvertible.swift",
        "Messages/Logoff.swift",
        "Messages/Message.swift",
        "Messages/Negotiate+CustomDebugStringConvertible.swift",
        "Messages/Negotiate.swift",
        "Messages/QueryDirectory+CustomDebugStringConvertible.swift",
        "Messages/QueryDirectory.swift",
        "Messages/QueryInfo+CustomDebugStringConvertible.swift",
        "Messages/QueryInfo.swift",
        "Messages/Read+CustomDebugStringConvertible.swift",
        "Messages/Read.swift",
        "Messages/SessionSetup+CustomDebugStringConvertible.swift",
        "Messages/SessionSetup.swift",
        "Messages/SetInfo+CustomDebugStringConvertible.swift",
        "Messages/SetInfo.swift",
        "Messages/TreeConnect+CustomDebugStringConvertible.swift",
        "Messages/TreeConnect.swift",
        "Messages/TreeDisconnect+CustomDebugStringConvertible.swift",
        "Messages/TreeDisconnect.swift",
        "Messages/Write+CustomDebugStringConvertible.swift",
        "Messages/Write.swift",
        "Misc/BinaryConvertible.swift",
        "Misc/Data.swift",
        "Misc/Pathname.swift",
        "Misc/Semaphore.swift",
        "Misc/String.swift",
        "Misc/UUID.swift",
        "SMBClient.swift",
        "Session.swift",
        "Transport.swift",
        "TreeAccessor.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.