The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of DeepSeekKit, reference master (4d5758), with Swift 5.10 for Linux on 13 Jul 2025 11:15:51 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/guitaripod/DeepSeekKit.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/guitaripod/DeepSeekKit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 4d5758f Update GitHub username from marcusziade to guitaripod
Cloned https://github.com/guitaripod/DeepSeekKit.git
Revision (git rev-parse @):
4d5758f6a3c4e724eaa83dab8d91ef579d9a3bb3
SUCCESS checkout https://github.com/guitaripod/DeepSeekKit.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.10
Building package at path:  $PWD
https://github.com/guitaripod/DeepSeekKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-5.10-latest: Pulling from finestructure/spi-images
Digest: sha256:c30bb8beee7254e839cc0142f4ae78578b8fc8e8159324cc3637097cc1b395b6
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.10-latest
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/apple/swift-argument-parser
[1/2094] Fetching swift-docc-plugin
[2095/17618] Fetching swift-docc-plugin, swift-argument-parser
Fetched https://github.com/apple/swift-docc-plugin from cache (0.64s)
[2174/15524] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (3.47s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.5 (1.37s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3425] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.42s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.39s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.6.1 (0.85s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.6.1
[1/1] Compiling plugin GenerateDoccReference
[2/2] Compiling plugin GenerateManual
[3/3] Compiling plugin Swift-DocC
[4/4] Compiling plugin Swift-DocC Preview
Building for debugging...
[4/15] Write sources
[8/15] Write swift-version-24593BA9C3E375BF.txt
[10/42] Emitting module DeepSeekKit
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:28:16: warning: stored property 'baseURL' of 'Sendable'-conforming class 'DeepSeekClient' has non-sendable type 'URL'
    public let baseURL: URL
               ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Models/Tool.swift:70:16: warning: stored property 'parameters' of 'Sendable'-conforming struct 'FunctionDefinition' has non-sendable type '[String : Any]'
    public let parameters: [String: Any]
               ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:8:17: warning: stored property 'session' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'URLSession'
    private let session: URLSession
                ^
FoundationNetworking.URLSession:1:12: note: class 'URLSession' does not conform to the 'Sendable' protocol
open class URLSession : NSObject {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:3:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
import FoundationNetworking
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:9:17: warning: stored property 'decoder' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'JSONDecoder'
    private let decoder: JSONDecoder
                ^
Foundation.JSONDecoder:1:12: note: class 'JSONDecoder' does not conform to the 'Sendable' protocol
open class JSONDecoder {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:10:17: warning: stored property 'encoder' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'JSONEncoder'
    private let encoder: JSONEncoder
                ^
Foundation.JSONEncoder:1:12: note: class 'JSONEncoder' does not conform to the 'Sendable' protocol
open class JSONEncoder {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/BalanceService.swift:6:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'BalanceService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/ChatService.swift:24:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'ChatService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/ModelService.swift:6:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'ModelService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:38:17: warning: stored property 'decoder' of 'Sendable'-conforming class 'CURLStreamingHandler' has non-sendable type 'JSONDecoder'
    private let decoder: JSONDecoder
                ^
Foundation.JSONDecoder:1:12: note: class 'JSONDecoder' does not conform to the 'Sendable' protocol
open class JSONDecoder {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:2:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[11/45] Emitting module ArgumentParserToolInfo
[12/45] Compiling ArgumentParserToolInfo ToolInfo.swift
[13/46] Wrapping AST for ArgumentParserToolInfo for debugging
[15/90] Compiling ArgumentParser UsageGenerator.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:38:17: warning: stored property 'decoder' of 'Sendable'-conforming class 'CURLStreamingHandler' has non-sendable type 'JSONDecoder'
    private let decoder: JSONDecoder
                ^
Foundation.JSONDecoder:1:12: note: class 'JSONDecoder' does not conform to the 'Sendable' protocol
open class JSONDecoder {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:2:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:76:31: warning: capture of 'baseURL' with non-sendable type 'URL' in a `@Sendable` closure
                    let url = baseURL.appendingPathComponent("chat/completions")
                              ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
[16/90] Compiling ArgumentParser InputKey.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:38:17: warning: stored property 'decoder' of 'Sendable'-conforming class 'CURLStreamingHandler' has non-sendable type 'JSONDecoder'
    private let decoder: JSONDecoder
                ^
Foundation.JSONDecoder:1:12: note: class 'JSONDecoder' does not conform to the 'Sendable' protocol
open class JSONDecoder {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:2:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:76:31: warning: capture of 'baseURL' with non-sendable type 'URL' in a `@Sendable` closure
                    let url = baseURL.appendingPathComponent("chat/completions")
                              ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
[17/90] Compiling ArgumentParser InputOrigin.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:38:17: warning: stored property 'decoder' of 'Sendable'-conforming class 'CURLStreamingHandler' has non-sendable type 'JSONDecoder'
    private let decoder: JSONDecoder
                ^
Foundation.JSONDecoder:1:12: note: class 'JSONDecoder' does not conform to the 'Sendable' protocol
open class JSONDecoder {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:2:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Streaming/CURLStreamingHandler.swift:76:31: warning: capture of 'baseURL' with non-sendable type 'URL' in a `@Sendable` closure
                    let url = baseURL.appendingPathComponent("chat/completions")
                              ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
[18/90] Compiling ArgumentParser BashCompletionsGenerator.swift
[19/90] Compiling ArgumentParser CompletionsGenerator.swift
[20/90] Compiling ArgumentParser FishCompletionsGenerator.swift
[21/90] Compiling ArgumentParser ZshCompletionsGenerator.swift
[22/90] Compiling ArgumentParser SwiftExtensions.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/BalanceService.swift:6:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'BalanceService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/ChatService.swift:24:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'ChatService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/ModelService.swift:6:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'ModelService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
[23/90] Compiling ArgumentParser SplitArguments.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/BalanceService.swift:6:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'BalanceService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/ChatService.swift:24:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'ChatService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/ModelService.swift:6:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'ModelService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
[24/90] Compiling ArgumentParser DumpHelpGenerator.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/BalanceService.swift:6:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'BalanceService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/ChatService.swift:24:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'ChatService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
/host/spi-builder-workspace/Sources/DeepSeekKit/Services/ModelService.swift:6:17: warning: stored property 'requestBuilder' of 'Sendable'-conforming class 'ModelService' has non-sendable type 'RequestBuilder'
    private let requestBuilder: RequestBuilder
                ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/RequestBuilder.swift:7:8: note: consider making struct 'RequestBuilder' conform to the 'Sendable' protocol
struct RequestBuilder {
       ^
                      : Sendable
[25/90] Compiling ArgumentParser HelpCommand.swift
[26/90] Compiling ArgumentParser HelpGenerator.swift
[27/90] Compiling ArgumentParser MessageInfo.swift
[28/90] Compiling ArgumentParser Mutex.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:28:16: warning: stored property 'baseURL' of 'Sendable'-conforming class 'DeepSeekClient' has non-sendable type 'URL'
    public let baseURL: URL
               ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[29/90] Compiling ArgumentParser Platform.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:28:16: warning: stored property 'baseURL' of 'Sendable'-conforming class 'DeepSeekClient' has non-sendable type 'URL'
    public let baseURL: URL
               ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[30/90] Compiling ArgumentParser SequenceExtensions.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:28:16: warning: stored property 'baseURL' of 'Sendable'-conforming class 'DeepSeekClient' has non-sendable type 'URL'
    public let baseURL: URL
               ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[31/90] Compiling ArgumentParser StringExtensions.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:28:16: warning: stored property 'baseURL' of 'Sendable'-conforming class 'DeepSeekClient' has non-sendable type 'URL'
    public let baseURL: URL
               ^
Foundation.URL:1:15: note: struct 'URL' does not conform to the 'Sendable' protocol
public struct URL : ReferenceConvertible, Equatable {
              ^
/host/spi-builder-workspace/Sources/DeepSeekKit/DeepSeekClient.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[32/90] Compiling ArgumentParser CompletionKind.swift
[33/90] Compiling ArgumentParser Errors.swift
[34/90] Compiling ArgumentParser Flag.swift
[35/90] Compiling ArgumentParser NameSpecification.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/Models/Tool.swift:70:16: warning: stored property 'parameters' of 'Sendable'-conforming struct 'FunctionDefinition' has non-sendable type '[String : Any]'
    public let parameters: [String: Any]
               ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:8:17: warning: stored property 'session' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'URLSession'
    private let session: URLSession
                ^
FoundationNetworking.URLSession:1:12: note: class 'URLSession' does not conform to the 'Sendable' protocol
open class URLSession : NSObject {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:3:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
import FoundationNetworking
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:9:17: warning: stored property 'decoder' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'JSONDecoder'
    private let decoder: JSONDecoder
                ^
Foundation.JSONDecoder:1:12: note: class 'JSONDecoder' does not conform to the 'Sendable' protocol
open class JSONDecoder {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:10:17: warning: stored property 'encoder' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'JSONEncoder'
    private let encoder: JSONEncoder
                ^
Foundation.JSONEncoder:1:12: note: class 'JSONEncoder' does not conform to the 'Sendable' protocol
open class JSONEncoder {
           ^
[36/90] Compiling ArgumentParser Option.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/Models/Tool.swift:70:16: warning: stored property 'parameters' of 'Sendable'-conforming struct 'FunctionDefinition' has non-sendable type '[String : Any]'
    public let parameters: [String: Any]
               ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:8:17: warning: stored property 'session' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'URLSession'
    private let session: URLSession
                ^
FoundationNetworking.URLSession:1:12: note: class 'URLSession' does not conform to the 'Sendable' protocol
open class URLSession : NSObject {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:3:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
import FoundationNetworking
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:9:17: warning: stored property 'decoder' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'JSONDecoder'
    private let decoder: JSONDecoder
                ^
Foundation.JSONDecoder:1:12: note: class 'JSONDecoder' does not conform to the 'Sendable' protocol
open class JSONDecoder {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:10:17: warning: stored property 'encoder' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'JSONEncoder'
    private let encoder: JSONEncoder
                ^
Foundation.JSONEncoder:1:12: note: class 'JSONEncoder' does not conform to the 'Sendable' protocol
open class JSONEncoder {
           ^
[37/90] Compiling ArgumentParser CollectionExtensions.swift
/host/spi-builder-workspace/Sources/DeepSeekKit/Models/Tool.swift:70:16: warning: stored property 'parameters' of 'Sendable'-conforming struct 'FunctionDefinition' has non-sendable type '[String : Any]'
    public let parameters: [String: Any]
               ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:8:17: warning: stored property 'session' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'URLSession'
    private let session: URLSession
                ^
FoundationNetworking.URLSession:1:12: note: class 'URLSession' does not conform to the 'Sendable' protocol
open class URLSession : NSObject {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:3:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
import FoundationNetworking
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:9:17: warning: stored property 'decoder' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'JSONDecoder'
    private let decoder: JSONDecoder
                ^
Foundation.JSONDecoder:1:12: note: class 'JSONDecoder' does not conform to the 'Sendable' protocol
open class JSONDecoder {
           ^
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:1:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/Sources/DeepSeekKit/Networking/URLSessionNetworking.swift:10:17: warning: stored property 'encoder' of 'Sendable'-conforming class 'URLSessionNetworking' has non-sendable type 'JSONEncoder'
    private let encoder: JSONEncoder
                ^
Foundation.JSONEncoder:1:12: note: class 'JSONEncoder' does not conform to the 'Sendable' protocol
open class JSONEncoder {
           ^
[38/90] Compiling ArgumentParser Argument.swift
[39/90] Compiling ArgumentParser ArgumentDiscussion.swift
[40/90] Compiling ArgumentParser ArgumentHelp.swift
[41/90] Compiling ArgumentParser ArgumentVisibility.swift
[48/91] Compiling ArgumentParser OptionGroup.swift
[49/91] Compiling ArgumentParser AsyncParsableCommand.swift
[50/91] Compiling ArgumentParser CommandConfiguration.swift
[51/91] Compiling ArgumentParser CommandGroup.swift
[52/91] Compiling ArgumentParser EnumerableFlag.swift
[53/91] Compiling ArgumentParser ExpressibleByArgument.swift
[54/97] Wrapping AST for DeepSeekKit for debugging
[56/97] Emitting module ArgumentParser
[57/97] Compiling ArgumentParser Tree.swift
[58/97] Compiling ArgumentParser CodingKeyValidator.swift
[59/97] Compiling ArgumentParser NonsenseFlagsValidator.swift
[60/97] Compiling ArgumentParser ParsableArgumentsValidation.swift
[61/97] Compiling ArgumentParser PositionalArgumentsValidator.swift
[62/97] Compiling ArgumentParser UniqueNamesValidator.swift
[65/97] Compiling ArgumentParser Name.swift
[66/97] Compiling ArgumentParser Parsed.swift
[67/97] Compiling ArgumentParser ParsedValues.swift
[68/97] Compiling ArgumentParser ParserError.swift
[88/97] Compiling ArgumentParser ParsableArguments.swift
[89/97] Compiling ArgumentParser ParsableCommand.swift
[90/97] Compiling ArgumentParser ArgumentDecoder.swift
[91/97] Compiling ArgumentParser ArgumentDefinition.swift
[92/97] Compiling ArgumentParser ArgumentSet.swift
[93/97] Compiling ArgumentParser CommandParser.swift
[94/98] Wrapping AST for ArgumentParser for debugging
[96/108] Compiling DeepSeekCLI DeepSeekCLI.swift
[97/109] Compiling DeepSeekCLI Reasoning.swift
[98/109] Compiling DeepSeekCLI JSONMode.swift
[99/109] Compiling DeepSeekCLI Models.swift
[100/109] Compiling DeepSeekCLI Stream.swift
[101/109] Emitting module DeepSeekCLI
[102/109] Compiling DeepSeekCLI Complete.swift
[103/109] Compiling DeepSeekCLI FunctionCall.swift
[104/109] Compiling DeepSeekCLI Balance.swift
[105/109] Compiling DeepSeekCLI Chat.swift
[106/109] Compiling DeepSeekCLI TestAll.swift
[107/110] Wrapping AST for DeepSeekCLI for debugging
[108/110] Write Objects.LinkFileList
[109/110] Linking deepseek-cli
Build complete! (35.90s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.5.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    },
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.3",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "DeepSeekKit",
  "name" : "DeepSeekKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    }
  ],
  "products" : [
    {
      "name" : "DeepSeekKit",
      "targets" : [
        "DeepSeekKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "deepseek-cli",
      "targets" : [
        "DeepSeekCLI"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "DeepSeekKitTests",
      "module_type" : "SwiftTarget",
      "name" : "DeepSeekKitTests",
      "path" : "Tests/DeepSeekKitTests",
      "sources" : [
        "Builders/FunctionBuilderTests.swift",
        "Errors/DeepSeekErrorTests.swift",
        "Models/ChatCompletionRequestTests.swift",
        "Models/ChatMessageTests.swift",
        "Models/CompletionRequestTests.swift",
        "Models/ResponseTests.swift",
        "Models/ToolTests.swift",
        "Networking/RequestBuilderTests.swift"
      ],
      "target_dependencies" : [
        "DeepSeekKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DeepSeekKit",
      "module_type" : "SwiftTarget",
      "name" : "DeepSeekKit",
      "path" : "Sources/DeepSeekKit",
      "product_memberships" : [
        "DeepSeekKit",
        "deepseek-cli"
      ],
      "sources" : [
        "Core/BalanceServiceProtocol.swift",
        "Core/ChatServiceProtocol.swift",
        "Core/DeepSeekProtocol.swift",
        "Core/ModelServiceProtocol.swift",
        "Core/NetworkingProtocol.swift",
        "DeepSeekClient.swift",
        "DeepSeekKit.swift",
        "Errors/DeepSeekError.swift",
        "Extensions/ChatMessage+Convenience.swift",
        "Extensions/FunctionBuilder.swift",
        "Models/BalanceResponse.swift",
        "Models/ChatCompletionChunk.swift",
        "Models/ChatCompletionRequest.swift",
        "Models/ChatCompletionResponse.swift",
        "Models/ChatMessage.swift",
        "Models/CompletionRequest.swift",
        "Models/CompletionResponse.swift",
        "Models/Model.swift",
        "Models/Tool.swift",
        "Networking/RequestBuilder.swift",
        "Networking/URLSessionNetworking.swift",
        "Services/BalanceService.swift",
        "Services/ChatService.swift",
        "Services/ModelService.swift",
        "Streaming/CURLStreamingHandler.swift",
        "Streaming/StreamingHandler.swift",
        "Streaming/URLSessionStreamingHandler.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "DeepSeekCLI",
      "module_type" : "SwiftTarget",
      "name" : "DeepSeekCLI",
      "path" : "Sources/DeepSeekCLI",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "deepseek-cli"
      ],
      "sources" : [
        "Commands/Balance.swift",
        "Commands/Chat.swift",
        "Commands/Complete.swift",
        "Commands/FunctionCall.swift",
        "Commands/JSONMode.swift",
        "Commands/Models.swift",
        "Commands/Reasoning.swift",
        "Commands/Stream.swift",
        "DeepSeekCLI.swift",
        "TestAll.swift"
      ],
      "target_dependencies" : [
        "DeepSeekKit"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.9"
}
basic-5.10-latest: Pulling from finestructure/spi-images
Digest: sha256:c30bb8beee7254e839cc0142f4ae78578b8fc8e8159324cc3637097cc1b395b6
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.10-latest
Done.