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 DockerSwift with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 2

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Containers/ContainerAttachEndpoint.swift:74:27: warning: capture of 'self' with non-sendable type 'ContainerAttachEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  5 |
  6 | /// Attach to a container via Websocket
  7 | final class ContainerAttachEndpoint {
    |             `- note: class 'ContainerAttachEndpoint' does not conform to the 'Sendable' protocol
  8 |     typealias Body = NoBody
  9 |     typealias Response = ContainerAttach
    :
 72 |                 try await WebSocket.connect(
 73 |                     scheme: scheme == "https" ? "wss" : "ws",
 74 |                     host: self.dockerClient.daemonURL.host ?? self.dockerClient.daemonURL.path,
    |                           `- warning: capture of 'self' with non-sendable type 'ContainerAttachEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 75 |                     port: self.dockerClient.daemonURL.port ?? (self.dockerClient.daemonURL.scheme == "https" ? 2376 : 2375),
 76 |                     path: "\(self.dockerClient.daemonURL.path)/\(self.dockerClient.apiVersion)/\(self.path)",
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Containers/ContainerAttachEndpoint.swift:74:63: warning: implicit capture of 'self' requires that 'ContainerAttachEndpoint' conforms to `Sendable`; this is an error in the Swift 6 language mode
  5 |
  6 | /// Attach to a container via Websocket
  7 | final class ContainerAttachEndpoint {
    |             `- note: class 'ContainerAttachEndpoint' does not conform to the 'Sendable' protocol
  8 |     typealias Body = NoBody
  9 |     typealias Response = ContainerAttach
    :
 72 |                 try await WebSocket.connect(
 73 |                     scheme: scheme == "https" ? "wss" : "ws",
 74 |                     host: self.dockerClient.daemonURL.host ?? self.dockerClient.daemonURL.path,
    |                                                               `- warning: implicit capture of 'self' requires that 'ContainerAttachEndpoint' conforms to `Sendable`; this is an error in the Swift 6 language mode
 75 |                     port: self.dockerClient.daemonURL.port ?? (self.dockerClient.daemonURL.scheme == "https" ? 2376 : 2375),
 76 |                     path: "\(self.dockerClient.daemonURL.path)/\(self.dockerClient.apiVersion)/\(self.path)",
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Containers/ContainerAttachEndpoint.swift:75:64: warning: implicit capture of 'self' requires that 'ContainerAttachEndpoint' conforms to `Sendable`; this is an error in the Swift 6 language mode
  5 |
  6 | /// Attach to a container via Websocket
  7 | final class ContainerAttachEndpoint {
    |             `- note: class 'ContainerAttachEndpoint' does not conform to the 'Sendable' protocol
  8 |     typealias Body = NoBody
  9 |     typealias Response = ContainerAttach
    :
 73 |                     scheme: scheme == "https" ? "wss" : "ws",
 74 |                     host: self.dockerClient.daemonURL.host ?? self.dockerClient.daemonURL.path,
 75 |                     port: self.dockerClient.daemonURL.port ?? (self.dockerClient.daemonURL.scheme == "https" ? 2376 : 2375),
    |                                                                `- warning: implicit capture of 'self' requires that 'ContainerAttachEndpoint' conforms to `Sendable`; this is an error in the Swift 6 language mode
 76 |                     path: "\(self.dockerClient.daemonURL.path)/\(self.dockerClient.apiVersion)/\(self.path)",
 77 |                     query: self.query,
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Containers/ContainerAttachEndpoint.swift:83:21: warning: capture of 'self' with non-sendable type 'ContainerAttachEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  5 |
  6 | /// Attach to a container via Websocket
  7 | final class ContainerAttachEndpoint {
    |             `- note: class 'ContainerAttachEndpoint' does not conform to the 'Sendable' protocol
  8 |     typealias Body = NoBody
  9 |     typealias Response = ContainerAttach
    :
 81 |                 ) { ws async in
 82 |
 83 |                     self.ws = ws
    |                     `- warning: capture of 'self' with non-sendable type 'ContainerAttachEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 84 |                     ws.onBinary { ws, buffer in
 85 |                         guard let rawData = String(data: Data(buffer: buffer), encoding: .utf8) else {
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Containers/GetContainerLogsEndpoint.swift:63:104: warning: capture of 'self' with non-sendable type 'GetContainerLogsEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 3 | import Foundation
 4 |
 5 | class GetContainerLogsEndpoint: StreamingEndpoint {
   |       `- note: class 'GetContainerLogsEndpoint' does not conform to the 'Sendable' protocol
 6 |     typealias Body = NoBody
 7 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
   :
61 |                         if tty {
62 |                             do {
63 |                                 for entry in try DockerStream.getEntryTty(buffer: &buffer, timestamps: timestamps) {
   |                                                                                                        `- warning: capture of 'self' with non-sendable type 'GetContainerLogsEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
64 |                                     continuation.yield(entry)
65 |                                 }
[1073/1180] Compiling DockerSwift InspectVolumeEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1074/1180] Compiling DockerSwift ListVolumesEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1075/1180] Compiling DockerSwift PruneVolumesEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1076/1180] Compiling DockerSwift RemoveVolumeEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1077/1180] Compiling DockerSwift BetterCodable+WeirdDockerStrategy.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1078/1180] Compiling DockerSwift DockerStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1079/1180] Compiling DockerSwift HTTPClient+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1080/1180] Compiling DockerSwift HTTPClient+ExecuteOnSocket.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1081/1180] Compiling DockerSwift Helper+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1082/1180] Compiling DockerSwift OptionalWrapper.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1083/1180] Compiling DockerSwift UInt64.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1084/1180] Compiling DockerSwift BuildStreamOutput.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1085/1180] Compiling DockerSwift Buildconfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1086/1180] Compiling DockerSwift Config.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1087/1180] Compiling DockerSwift ConfigSpec.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:69:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 67 |                 return String(data: bodyData, encoding: .utf8) as! T
 68 |             }
 69 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:82:24: warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 80 |                 throw BodyError.noBodyData
 81 |             }
 82 |             return try map(string)
    |                        |- warning: capture of 'map' with non-sendable type '(String) throws -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                        `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
 83 |         }
 84 |     }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Helper/HTTPClient+Codable.swift:99:24: warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 97 |             }
 98 |
 99 |             return try decoder.decode(type, from: bodyData)
    |                        `- warning: capture of 'decoder' with non-sendable type 'any Decoder' in a `@Sendable` closure; this is an error in the Swift 6 language mode
100 |         }
101 |     }
    :
127 | }
128 |
129 | public protocol Decoder {
    |                 `- note: protocol 'Decoder' does not conform to the 'Sendable' protocol
130 |     func decode<T>(_ type: T.Type, from: Data) throws -> T where T : Decodable
131 | }
[1088/1180] Compiling DockerSwift StartContainerEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1089/1180] Compiling DockerSwift StopContainerEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1090/1180] Compiling DockerSwift UpdateContainerEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1091/1180] Compiling DockerSwift WaitContainerEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1092/1180] Compiling DockerSwift Endpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1093/1180] Compiling DockerSwift Filter.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1094/1180] Compiling DockerSwift BuildEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1095/1180] Compiling DockerSwift CommitContainerEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1096/1180] Compiling DockerSwift GetImageHistoryEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1097/1180] Compiling DockerSwift InspectImageEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1098/1180] Compiling DockerSwift ListImagesEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1099/1180] Compiling DockerSwift PruneImagesEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1100/1180] Compiling DockerSwift PullImageEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1101/1180] Compiling DockerSwift PushImageEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1102/1180] Compiling DockerSwift RemoveImageEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1103/1180] Compiling DockerSwift TagImageEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:80:45: warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 43 |
 44 | /// A Docker API endpoint that returns  a progressive stream of JSON objects separated by line returns
 45 | class JSONStreamingEndpoint<T>: StreamingEndpoint where T: Codable {
    |       `- note: generic class 'JSONStreamingEndpoint' does not conform to the 'Sendable' protocol
 46 |     internal init(path: String, method: HTTPMethod = .GET) {
 47 |         self.path = path
    :
 78 |                         }
 79 |                         do {
 80 |                             let model = try decoder.decode(T.self, from: splat.first!)
    |                                             `- warning: capture of 'self' with non-sendable type 'JSONStreamingEndpoint<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 81 |                             continuation.yield(model)
 82 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Images/BuildEndpoint.swift:86:45: warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
  3 | import Foundation
  4 |
  5 | struct BuildEndpoint: UploadEndpoint {
    |        `- note: consider making struct 'BuildEndpoint' conform to the 'Sendable' protocol
  6 |     var body: Body?
  7 |
    :
 84 |                             let model: BuildStreamOutput!
 85 |                             do {
 86 |                                 model = try decoder.decode(BuildStreamOutput.self, from: streamItem)
    |                                             `- warning: capture of 'self' with non-sendable type 'BuildEndpoint' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 87 |                             }
 88 |                             catch(let error) {
[1104/1180] Compiling DockerSwift Image.swift
[1105/1180] Compiling DockerSwift ImageLayer.swift
[1106/1180] Compiling DockerSwift ImageSummary.swift
[1107/1180] Compiling DockerSwift LogEntry.swift
[1108/1180] Compiling DockerSwift MessageResponse.swift
[1109/1180] Compiling DockerSwift ContainerConnect.swift
[1110/1180] Compiling DockerSwift IPAM.swift
[1111/1180] Compiling DockerSwift Network.swift
[1112/1180] Compiling DockerSwift NetworkSpec.swift
[1113/1180] Compiling DockerSwift Plugin.swift
[1114/1180] Compiling DockerSwift PluginPrivilege.swift
[1115/1180] Compiling DockerSwift RegistryAuth.swift
[1116/1180] Compiling DockerSwift Secret.swift
[1117/1180] Compiling DockerSwift SecretSpec.swift
[1118/1180] Compiling DockerSwift Service.swift
[1119/1180] Compiling DockerSwift Container.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1120/1180] Compiling DockerSwift ContainerAttach.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1121/1180] Compiling DockerSwift ContainerConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1122/1180] Compiling DockerSwift ContainerFsChange.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1123/1180] Compiling DockerSwift ContainerHostConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1124/1180] Compiling DockerSwift ContainerSpec.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1125/1180] Compiling DockerSwift ContainerStats.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1126/1180] Compiling DockerSwift ContainerSummary.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1127/1180] Compiling DockerSwift ContainerTop.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1128/1180] Compiling DockerSwift ContainerUpdate.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1129/1180] Compiling DockerSwift ExposedPortSpec.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1130/1180] Compiling DockerSwift DockerError.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1131/1180] Compiling DockerSwift DockerScope.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1132/1180] Compiling DockerSwift DriverConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1133/1180] Compiling DockerSwift Identifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:273:14: warning: 'kernelMemory' is deprecated
271 |         self.ipcMode = ipcMode
272 |         self.isolation = isolation
273 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
274 |         self.kernelMemoryTcp = kernelMemoryTcp
275 |         self.links = links
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:590:56: warning: expected member name or constructor call after type name; this will be an error in Swift 6
588 |
589 |         public func encode(to encoder: Encoder) throws {
590 |             var container = encoder.container(keyedBy: Self.CodingKeys)
    |                                                        |    |- note: add arguments after the type to construct a value of the type
    |                                                        |    `- note: use '.self' to reference the type object
    |                                                        `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
591 |             try container.encode("\(self.hostPort)", forKey: .hostPort)
592 |             try container.encode(self.hostIp, forKey: .hostIp)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerHostConfig.swift:596:60: warning: expected member name or constructor call after type name; this will be an error in Swift 6
594 |
595 |         public init(from decoder: Swift.Decoder) throws {
596 |             let container = try decoder.container(keyedBy: Self.CodingKeys)
    |                                                            |    |- note: add arguments after the type to construct a value of the type
    |                                                            |    `- note: use '.self' to reference the type object
    |                                                            `- warning: expected member name or constructor call after type name; this will be an error in Swift 6
597 |             self.hostIp = try container.decode(String.self, forKey: .hostIp)
598 |             let portString = try? container.decode(String.self, forKey: .hostPort)
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Models/Container/ContainerUpdate.swift:128:14: warning: 'kernelMemory' is deprecated
126 |         self.deviceCgroupRules = deviceCgroupRules
127 |         self.`init` = `init`
128 |         self.kernelMemory = kernelMemory
    |              `- warning: 'kernelMemory' is deprecated
129 |         self.kernelMemoryTcp = kernelMemoryTcp
130 |         self.memoryLimit = memoryLimit
[1134/1180] Emitting module DockerSwift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1135/1180] Compiling DockerSwift DockerClient+Config.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1136/1180] Compiling DockerSwift DockerClient+Container.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1137/1180] Compiling DockerSwift DockerClient+Image.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1138/1180] Compiling DockerSwift DockerClient+Network.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1139/1180] Compiling DockerSwift DockerClient+Node.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1140/1180] Compiling DockerSwift DockerClient+Plugin.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1141/1180] Compiling DockerSwift DockerClient+Registry.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1142/1180] Compiling DockerSwift DockerClient+Secret.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1143/1180] Compiling DockerSwift DockerClient+Service.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1144/1180] Compiling DockerSwift DockerClient+Swarm.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1145/1180] Compiling DockerSwift DockerClient+System.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1146/1180] Compiling DockerSwift DockerClient+Task.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1147/1180] Compiling DockerSwift DockerClient+Volume.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1148/1180] Compiling DockerSwift DockerClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1149/1180] Compiling DockerSwift CreateConfigEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1150/1180] Compiling DockerSwift InspectConfigEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1151/1180] Compiling DockerSwift InstallPluginEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1152/1180] Compiling DockerSwift ListPluginsEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1153/1180] Compiling DockerSwift RemovePluginEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1154/1180] Compiling DockerSwift UpgradePluginEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1155/1180] Compiling DockerSwift RegistryLoginEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1156/1180] Compiling DockerSwift CreateSecretEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1157/1180] Compiling DockerSwift InspectSecretEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1158/1180] Compiling DockerSwift ListSecretsEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1159/1180] Compiling DockerSwift RemoveSecretEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1160/1180] Compiling DockerSwift UpdateSecretEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1161/1180] Compiling DockerSwift CreateServiceEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1162/1180] Compiling DockerSwift GetServiceLogsEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1163/1180] Compiling DockerSwift InspectServiceEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1164/1180] Compiling DockerSwift ListServicesEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1165/1180] Compiling DockerSwift RemoveServiceEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:51:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 49 |     }
 50 |
 51 |     private (set) internal var path: String
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
/Users/admin/builder/spi-builder-workspace/Sources/DockerSwift/Endpoints/Endpoint.swift:53:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 51 |     private (set) internal var path: String
 52 |
 53 |     private (set) internal var method: HTTPMethod = .GET
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 54 |
 55 |     typealias Response = AsyncThrowingStream<ByteBuffer, Error>
[1166/1180] Compiling DockerSwift ServiceEndpointSpec.swift
[1167/1180] Compiling DockerSwift ServiceRestartPolicy.swift
[1168/1180] Compiling DockerSwift ServiceSpec.swift
[1169/1180] Compiling DockerSwift SwarmConfig.swift
[1170/1180] Compiling DockerSwift SwarmJoin.swift
[1171/1180] Compiling DockerSwift SwarmNode.swift
[1172/1180] Compiling DockerSwift SwarmTask.swift
[1173/1180] Compiling DockerSwift DataUsageInformation.swift
[1174/1180] Compiling DockerSwift DockerEvent.swift
[1175/1180] Compiling DockerSwift DockerVersion.swift
[1176/1180] Compiling DockerSwift SystemInformation.swift
[1177/1180] Compiling DockerSwift UnixSignal.swift
[1178/1180] Compiling DockerSwift PrunedVolumes.swift
[1179/1180] Compiling DockerSwift Volume.swift
[1180/1180] Compiling DockerSwift VolumeSpec.swift
Build complete! (94.71s)
Fetching https://github.com/vapor/websocket-kit.git
Fetching https://github.com/marksands/BetterCodable.git
Fetching https://github.com/swift-server/async-http-client.git
Fetching https://github.com/apple/swift-nio.git
[1/2473] Fetching websocket-kit
[26/3065] Fetching websocket-kit, bettercodable
[1130/15729] Fetching websocket-kit, bettercodable, async-http-client
[14971/81257] Fetching websocket-kit, bettercodable, async-http-client, swift-nio
Fetched https://github.com/swift-server/async-http-client.git from cache (1.50s)
[3721/68593] Fetching websocket-kit, bettercodable, swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (3.76s)
Fetched https://github.com/marksands/BetterCodable.git from cache (3.76s)
Fetched https://github.com/vapor/websocket-kit.git from cache (3.76s)
Computing version for https://github.com/marksands/BetterCodable.git
Computed https://github.com/marksands/BetterCodable.git at 0.4.0 (0.96s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.65.0 (0.70s)
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-atomics.git
[1/1563] Fetching swift-atomics
[33/5081] Fetching swift-atomics, swift-system
[721/18942] Fetching swift-atomics, swift-system, swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (2.01s)
Fetched https://github.com/apple/swift-system.git from cache (2.01s)
Fetched https://github.com/apple/swift-atomics.git from cache (2.01s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.2.0 (0.58s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.3.0 (0.51s)
Computing version for https://github.com/swift-server/async-http-client.git
Computed https://github.com/swift-server/async-http-client.git at 1.21.1 (0.53s)
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-algorithms
Fetching https://github.com/apple/swift-nio-extras.git
Fetching https://github.com/apple/swift-nio-transport-services.git
Fetching https://github.com/apple/swift-nio-http2.git
Fetching https://github.com/apple/swift-nio-ssl.git
[1/2105] Fetching swift-nio-transport-services
[44/7333] Fetching swift-nio-transport-services, swift-algorithms
[149/10686] Fetching swift-nio-transport-services, swift-algorithms, swift-log
[250/20919] Fetching swift-nio-transport-services, swift-algorithms, swift-log, swift-nio-http2
[251/25752] Fetching swift-nio-transport-services, swift-algorithms, swift-log, swift-nio-http2, swift-nio-extras
[993/38020] Fetching swift-nio-transport-services, swift-algorithms, swift-log, swift-nio-http2, swift-nio-extras, swift-nio-ssl
Fetched https://github.com/apple/swift-log.git from cache (1.29s)
Fetched https://github.com/apple/swift-nio-transport-services.git from cache (1.29s)
Fetched https://github.com/apple/swift-nio-extras.git from cache (1.29s)
[9607/27729] Fetching swift-algorithms, swift-nio-http2, swift-nio-ssl
Fetched https://github.com/apple/swift-nio-ssl.git from cache (1.81s)
Fetched https://github.com/apple/swift-nio-http2.git from cache (1.81s)
Fetched https://github.com/apple/swift-algorithms from cache (1.81s)
Computing version for https://github.com/apple/swift-algorithms
Computed https://github.com/apple/swift-algorithms at 1.2.0 (0.68s)
Fetching https://github.com/apple/swift-numerics.git
[1/5472] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (1.23s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.2 (0.75s)
Computing version for https://github.com/apple/swift-nio-transport-services.git
Computed https://github.com/apple/swift-nio-transport-services.git at 1.21.0 (0.55s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.1.0 (0.90s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.5.4 (0.66s)
Computing version for https://github.com/apple/swift-nio-ssl.git
Computed https://github.com/apple/swift-nio-ssl.git at 2.26.0 (0.74s)
Computing version for https://github.com/apple/swift-nio-extras.git
Computed https://github.com/apple/swift-nio-extras.git at 1.22.0 (0.71s)
Fetching https://github.com/apple/swift-http-types
[1/414] Fetching swift-http-types
Fetched https://github.com/apple/swift-http-types from cache (0.95s)
Computing version for https://github.com/apple/swift-http-types
Computed https://github.com/apple/swift-http-types at 1.1.0 (0.68s)
Computing version for https://github.com/apple/swift-nio-http2.git
Computed https://github.com/apple/swift-nio-http2.git at 1.31.0 (0.53s)
Computing version for https://github.com/vapor/websocket-kit.git
Computed https://github.com/vapor/websocket-kit.git at 2.15.0 (0.71s)
Creating working copy for https://github.com/apple/swift-nio-transport-services.git
Working copy of https://github.com/apple/swift-nio-transport-services.git resolved at 1.21.0
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.65.0
Creating working copy for https://github.com/apple/swift-nio-http2.git
Working copy of https://github.com/apple/swift-nio-http2.git resolved at 1.31.0
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.1.0
Creating working copy for https://github.com/marksands/BetterCodable.git
Working copy of https://github.com/marksands/BetterCodable.git resolved at 0.4.0
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.2
Creating working copy for https://github.com/apple/swift-nio-extras.git
Working copy of https://github.com/apple/swift-nio-extras.git resolved at 1.22.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.5.4
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.2.0
Creating working copy for https://github.com/apple/swift-algorithms
Working copy of https://github.com/apple/swift-algorithms resolved at 1.2.0
Creating working copy for https://github.com/vapor/websocket-kit.git
Working copy of https://github.com/vapor/websocket-kit.git resolved at 2.15.0
Creating working copy for https://github.com/swift-server/async-http-client.git
Working copy of https://github.com/swift-server/async-http-client.git resolved at 1.21.1
Creating working copy for https://github.com/apple/swift-nio-ssl.git
Working copy of https://github.com/apple/swift-nio-ssl.git resolved at 2.26.0
Creating working copy for https://github.com/apple/swift-http-types
Working copy of https://github.com/apple/swift-http-types resolved at 1.1.0
warning: 'swift-algorithms': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-algorithms/Sources/Algorithms/Documentation.docc
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.62.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    },
    {
      "identity" : "async-http-client",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.19.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swift-server/async-http-client.git"
    },
    {
      "identity" : "websocket-kit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.6.1",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/vapor/websocket-kit.git"
    },
    {
      "identity" : "bettercodable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/marksands/BetterCodable.git"
    }
  ],
  "manifest_display_name" : "DockerSwift",
  "name" : "DockerSwift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "DockerSwift",
      "targets" : [
        "DockerSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "DockerSwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "DockerSwiftTests",
      "path" : "Tests/DockerSwiftTests",
      "sources" : [
        "ConfigAndSecretTests.swift",
        "ContainerTests.swift",
        "ImageTests.swift",
        "NetworkTests.swift",
        "NodeTests.swift",
        "PluginTests.swift",
        "ServiceTests.swift",
        "SwarmTests.swift",
        "SystemTests.swift",
        "TaskTests.swift",
        "Utils/DockerClient+Testable.swift",
        "VolumeTests.swift"
      ],
      "target_dependencies" : [
        "DockerSwift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DockerSwift",
      "module_type" : "SwiftTarget",
      "name" : "DockerSwift",
      "path" : "Sources/DockerSwift",
      "product_dependencies" : [
        "NIO",
        "AsyncHTTPClient",
        "WebSocketKit",
        "BetterCodable"
      ],
      "product_memberships" : [
        "DockerSwift"
      ],
      "sources" : [
        "APIs/DockerClient+Config.swift",
        "APIs/DockerClient+Container.swift",
        "APIs/DockerClient+Image.swift",
        "APIs/DockerClient+Network.swift",
        "APIs/DockerClient+Node.swift",
        "APIs/DockerClient+Plugin.swift",
        "APIs/DockerClient+Registry.swift",
        "APIs/DockerClient+Secret.swift",
        "APIs/DockerClient+Service.swift",
        "APIs/DockerClient+Swarm.swift",
        "APIs/DockerClient+System.swift",
        "APIs/DockerClient+Task.swift",
        "APIs/DockerClient+Volume.swift",
        "APIs/DockerClient.swift",
        "Endpoints/Configs/CreateConfigEndpoint.swift",
        "Endpoints/Configs/InspectConfigEndpoint.swift",
        "Endpoints/Configs/ListConfigsEndpoint.swift",
        "Endpoints/Configs/RemoveConfigEndpoint.swift",
        "Endpoints/Configs/UpdateConfigEndpoint.swift",
        "Endpoints/Containers/ContainerAttachEndpoint.swift",
        "Endpoints/Containers/ContainerTopEndpoint.swift",
        "Endpoints/Containers/CreateContainerEndpoint.swift",
        "Endpoints/Containers/GetContainerChangesEndpoint.swift",
        "Endpoints/Containers/GetContainerLogsEndpoint.swift",
        "Endpoints/Containers/GetContainerStatsEndpoint.swift",
        "Endpoints/Containers/InspectContainerEndpoint.swift",
        "Endpoints/Containers/KillContainerEndpoint.swift",
        "Endpoints/Containers/ListContainersEndpoint.swift",
        "Endpoints/Containers/PauseUnpauseContainerEndpoint.swift",
        "Endpoints/Containers/PruneContainersEndpoint.swift",
        "Endpoints/Containers/RemoveContainerEndpoint.swift",
        "Endpoints/Containers/RenameContainerEndpoint.swift",
        "Endpoints/Containers/StartContainerEndpoint.swift",
        "Endpoints/Containers/StopContainerEndpoint.swift",
        "Endpoints/Containers/UpdateContainerEndpoint.swift",
        "Endpoints/Containers/WaitContainerEndpoint.swift",
        "Endpoints/Endpoint.swift",
        "Endpoints/Filter.swift",
        "Endpoints/Images/BuildEndpoint.swift",
        "Endpoints/Images/CommitContainerEndpoint.swift",
        "Endpoints/Images/GetImageHistoryEndpoint.swift",
        "Endpoints/Images/InspectImageEndpoint.swift",
        "Endpoints/Images/ListImagesEndpoint.swift",
        "Endpoints/Images/PruneImagesEndpoint.swift",
        "Endpoints/Images/PullImageEndpoint.swift",
        "Endpoints/Images/PushImageEndpoint.swift",
        "Endpoints/Images/RemoveImageEndpoint.swift",
        "Endpoints/Images/TagImageEndpoint.swift",
        "Endpoints/Networks/ConnectContainerEndpoint.swift",
        "Endpoints/Networks/CreateNetworkEndpoint.swift",
        "Endpoints/Networks/DisconnectContainerEndpoint.swift",
        "Endpoints/Networks/InspectNetworkEndpoint.swift",
        "Endpoints/Networks/ListNetworksEndpoint.swift",
        "Endpoints/Networks/PruneNetworksEndpoint.swift",
        "Endpoints/Networks/RemoveNetworkEndpoint.swift",
        "Endpoints/Nodes/DeleteNodeEndpoint.swift",
        "Endpoints/Nodes/InspectNodeEndpoint.swift",
        "Endpoints/Nodes/ListNodesEndpoint.swift",
        "Endpoints/Nodes/UpdateNodeEndpoint.swift",
        "Endpoints/Plugin/ConfigurePluginEndpoint.swift",
        "Endpoints/Plugin/EnableDisablePluginEndpoint.swift",
        "Endpoints/Plugin/GetPluginPrivilegesEndpoint.swift",
        "Endpoints/Plugin/InspectPluginEndpoint.swift",
        "Endpoints/Plugin/InstallPluginEndpoint.swift",
        "Endpoints/Plugin/ListPluginsEndpoint.swift",
        "Endpoints/Plugin/RemovePluginEndpoint.swift",
        "Endpoints/Plugin/UpgradePluginEndpoint.swift",
        "Endpoints/Registries/RegistryLoginEndpoint.swift",
        "Endpoints/Secrets/CreateSecretEndpoint.swift",
        "Endpoints/Secrets/InspectSecretEndpoint.swift",
        "Endpoints/Secrets/ListSecretsEndpoint.swift",
        "Endpoints/Secrets/RemoveSecretEndpoint.swift",
        "Endpoints/Secrets/UpdateSecretEndpoint.swift",
        "Endpoints/Services/CreateServiceEndpoint.swift",
        "Endpoints/Services/GetServiceLogsEndpoint.swift",
        "Endpoints/Services/InspectServiceEndpoint.swift",
        "Endpoints/Services/ListServicesEndpoint.swift",
        "Endpoints/Services/RemoveServiceEndpoint.swift",
        "Endpoints/Services/UpdateServiceEndpoint.swift",
        "Endpoints/Swarm/InitSwarmEndpoint.swift",
        "Endpoints/Swarm/InspectSwarmEndpoint.swift",
        "Endpoints/Swarm/JoinSwarmEndpoint.swift",
        "Endpoints/Swarm/LeaveSwarmEndpoint.swift",
        "Endpoints/Swarm/UpdateSwarmEndpoint.swift",
        "Endpoints/System/DiskUsageInformationEndpoint.swift",
        "Endpoints/System/GetEventsEndpoint.swift",
        "Endpoints/System/PingEndpoint.swift",
        "Endpoints/System/SystemInformationEndpoint.swift",
        "Endpoints/System/VersionEndpoint.swift",
        "Endpoints/Tasks/GetTaskLogsEndpoint.swift",
        "Endpoints/Tasks/InspectTaskEndpoint.swift",
        "Endpoints/Tasks/ListTasksEndpoint.swift",
        "Endpoints/Volumes/CreateVolumeEndpoint.swift",
        "Endpoints/Volumes/InspectVolumeEndpoint.swift",
        "Endpoints/Volumes/ListVolumesEndpoint.swift",
        "Endpoints/Volumes/PruneVolumesEndpoint.swift",
        "Endpoints/Volumes/RemoveVolumeEndpoint.swift",
        "Helper/BetterCodable+WeirdDockerStrategy.swift",
        "Helper/DockerStream.swift",
        "Helper/HTTPClient+Codable.swift",
        "Helper/HTTPClient+ExecuteOnSocket.swift",
        "Helper/Helper+Codable.swift",
        "Helper/OptionalWrapper.swift",
        "Helper/UInt64.swift",
        "Models/Build/BuildStreamOutput.swift",
        "Models/Build/Buildconfig.swift",
        "Models/Config/Config.swift",
        "Models/Config/ConfigSpec.swift",
        "Models/Container/Container.swift",
        "Models/Container/ContainerAttach.swift",
        "Models/Container/ContainerConfig.swift",
        "Models/Container/ContainerFsChange.swift",
        "Models/Container/ContainerHostConfig.swift",
        "Models/Container/ContainerSpec.swift",
        "Models/Container/ContainerStats.swift",
        "Models/Container/ContainerSummary.swift",
        "Models/Container/ContainerTop.swift",
        "Models/Container/ContainerUpdate.swift",
        "Models/Container/ExposedPortSpec.swift",
        "Models/DockerError.swift",
        "Models/DockerScope.swift",
        "Models/DriverConfig.swift",
        "Models/Identifier.swift",
        "Models/Image/Image.swift",
        "Models/Image/ImageLayer.swift",
        "Models/Image/ImageSummary.swift",
        "Models/LogEntry.swift",
        "Models/MessageResponse.swift",
        "Models/Network/ContainerConnect.swift",
        "Models/Network/IPAM.swift",
        "Models/Network/Network.swift",
        "Models/Network/NetworkSpec.swift",
        "Models/Plugins/Plugin.swift",
        "Models/Plugins/PluginPrivilege.swift",
        "Models/Registry/RegistryAuth.swift",
        "Models/Secret/Secret.swift",
        "Models/Secret/SecretSpec.swift",
        "Models/Service/Service.swift",
        "Models/Service/ServiceEndpointSpec.swift",
        "Models/Service/ServiceRestartPolicy.swift",
        "Models/Service/ServiceSpec.swift",
        "Models/Swarm/SwarmConfig.swift",
        "Models/Swarm/SwarmJoin.swift",
        "Models/Swarm/SwarmNode.swift",
        "Models/Swarm/SwarmTask.swift",
        "Models/System/DataUsageInformation.swift",
        "Models/System/DockerEvent.swift",
        "Models/System/DockerVersion.swift",
        "Models/System/SystemInformation.swift",
        "Models/UnixSignal.swift",
        "Models/Volume/PrunedVolumes.swift",
        "Models/Volume/Volume.swift",
        "Models/Volume/VolumeSpec.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.