Build Information
Successful build of Engine, reference develop (25850b), with Swift 6.1 for macOS (SPM) on 15 Dec 2025 20:47:05 UTC.
Swift 6 data race errors: 5
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCapturesBuild Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/blackjacx/engine.git
Reference: develop
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/blackjacx/engine
* branch develop -> FETCH_HEAD
* [new branch] develop -> origin/develop
HEAD is now at 25850b4 Bump swift-actions/setup-swift from 2 to 3 in /.github/workflows
Cloned https://github.com/blackjacx/engine.git
Revision (git rev-parse @):
25850b4612e51faa77dd2701bc2c3a6543918560
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/blackjacx/engine.git at develop
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/blackjacx/engine.git
https://github.com/blackjacx/engine.git
{
"dependencies" : [
{
"identity" : "keychainaccess",
"requirement" : {
"range" : [
{
"lower_bound" : "4.2.2",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/kishikawakatsumi/KeychainAccess"
}
],
"manifest_display_name" : "Engine",
"name" : "Engine",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "Engine",
"targets" : [
"Engine"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "EngineTests",
"module_type" : "SwiftTarget",
"name" : "EngineTests",
"path" : "Tests/EngineTests",
"sources" : [
"Foundation/URLTests.swift",
"JWT/JWTTests.swift",
"PropertyWrapper/ClampingTests.swift",
"UIKit/UIColorTests.swift"
],
"target_dependencies" : [
"Engine"
],
"type" : "test"
},
{
"c99name" : "Engine",
"module_type" : "SwiftTarget",
"name" : "Engine",
"path" : "Sources/Engine",
"product_dependencies" : [
"KeychainAccess"
],
"product_memberships" : [
"Engine"
],
"sources" : [
"Engine.swift",
"Foundation/Bundle+Extensions.swift",
"Foundation/FileManager+Extensions.swift",
"Foundation/ProcessInfo+Extensions.swift",
"Foundation/String+Extensions.swift",
"Foundation/String+Random.swift",
"Foundation/URL+Extensions.swift",
"Foundation/URLRequest+Extensions.swift",
"JWT/JWT.swift",
"JWT/JWTClaims.swift",
"JWT/JWTHeader.swift",
"Keychain/Keychain.swift",
"Networking/Endpoint.swift",
"Networking/HTTPMethod.swift",
"Networking/Json.swift",
"Networking/LoggableError.swift",
"Networking/Network.swift",
"Networking/NetworkError.swift",
"Networking/OutputType.swift",
"Networking/Service.swift",
"Networking/models/DataWrapper.swift",
"Networking/models/EmptyResponse.swift",
"PropertyWrapper/Clamping.swift",
"PropertyWrapper/UserDefaults+PropertyWrapper.swift",
"UIKit/UIColor+Extensions.swift",
"UIKit/UIView+Extensions.swift",
"UIKit/UIViewController+Extensions.swift"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-2F0A5646E1D333AE.txt
[4/5] Compiling KeychainAccess Keychain.swift
[5/5] Emitting module KeychainAccess
[6/31] Compiling Engine OutputType.swift
[7/31] Compiling Engine Service.swift
[8/31] Compiling Engine DataWrapper.swift
[9/33] Compiling Engine JWTClaims.swift
[10/33] Compiling Engine JWTHeader.swift
[11/33] Compiling Engine Keychain.swift
[12/33] Compiling Engine UserDefaults+PropertyWrapper.swift
[13/33] Compiling Engine UIColor+Extensions.swift
[14/33] Emitting module Engine
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Engine.swift:12:23: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | struct Engine {
11 | /// Global keychain
12 | public static var keychain = Keychain()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Json.swift:12:23: warning: static property 'encoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public struct Json {
11 |
12 | public static var encoder: JSONEncoder = {
| |- warning: static property 'encoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'encoder' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'encoder' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let encoder = JSONEncoder()
14 | encoder.dateEncodingStrategy = .iso8601
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Json.swift:18:23: warning: static property 'decoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | }()
17 |
18 | public static var decoder: JSONDecoder = {
| |- warning: static property 'decoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decoder' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decoder' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | let decoder = JSONDecoder()
20 | decoder.dateDecodingStrategy = .iso8601
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Network.swift:20:23: warning: static property 'verbosityLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public struct Network {
19 |
20 | public static var verbosityLevel = 0
| |- warning: static property 'verbosityLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'verbosityLevel' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'verbosityLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static let shared = Network()
22 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Network.swift:21:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Network' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public typealias RequestResult<T: Decodable> = Result<T, NetworkError>
17 |
18 | public struct Network {
| `- note: consider making struct 'Network' conform to the 'Sendable' protocol
19 |
20 | public static var verbosityLevel = 0
21 | public static let shared = Network()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Network' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | private static let session = URLSession.shared
[15/33] Compiling Engine UIView+Extensions.swift
[16/33] Compiling Engine UIViewController+Extensions.swift
[17/33] Compiling Engine Engine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Engine.swift:12:23: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | struct Engine {
11 | /// Global keychain
12 | public static var keychain = Keychain()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
[18/33] Compiling Engine Bundle+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Engine.swift:12:23: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | struct Engine {
11 | /// Global keychain
12 | public static var keychain = Keychain()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
[19/33] Compiling Engine FileManager+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Engine.swift:12:23: warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | struct Engine {
11 | /// Global keychain
12 | public static var keychain = Keychain()
| |- warning: static property 'keychain' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'keychain' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'keychain' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | }
14 |
[20/33] Compiling Engine ProcessInfo+Extensions.swift
[21/33] Compiling Engine String+Extensions.swift
[22/33] Compiling Engine String+Random.swift
[23/33] Compiling Engine LoggableError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Network.swift:20:23: warning: static property 'verbosityLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public struct Network {
19 |
20 | public static var verbosityLevel = 0
| |- warning: static property 'verbosityLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'verbosityLevel' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'verbosityLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static let shared = Network()
22 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Network.swift:21:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Network' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public typealias RequestResult<T: Decodable> = Result<T, NetworkError>
17 |
18 | public struct Network {
| `- note: consider making struct 'Network' conform to the 'Sendable' protocol
19 |
20 | public static var verbosityLevel = 0
21 | public static let shared = Network()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Network' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | private static let session = URLSession.shared
[24/33] Compiling Engine Network.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Network.swift:20:23: warning: static property 'verbosityLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public struct Network {
19 |
20 | public static var verbosityLevel = 0
| |- warning: static property 'verbosityLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'verbosityLevel' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'verbosityLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static let shared = Network()
22 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Network.swift:21:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Network' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public typealias RequestResult<T: Decodable> = Result<T, NetworkError>
17 |
18 | public struct Network {
| `- note: consider making struct 'Network' conform to the 'Sendable' protocol
19 |
20 | public static var verbosityLevel = 0
21 | public static let shared = Network()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Network' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | private static let session = URLSession.shared
[25/33] Compiling Engine NetworkError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Network.swift:20:23: warning: static property 'verbosityLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | public struct Network {
19 |
20 | public static var verbosityLevel = 0
| |- warning: static property 'verbosityLevel' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'verbosityLevel' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'verbosityLevel' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | public static let shared = Network()
22 |
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Network.swift:21:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Network' may have shared mutable state; this is an error in the Swift 6 language mode
16 | public typealias RequestResult<T: Decodable> = Result<T, NetworkError>
17 |
18 | public struct Network {
| `- note: consider making struct 'Network' conform to the 'Sendable' protocol
19 |
20 | public static var verbosityLevel = 0
21 | public static let shared = Network()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Network' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
22 |
23 | private static let session = URLSession.shared
[26/33] Compiling Engine Endpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Json.swift:12:23: warning: static property 'encoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public struct Json {
11 |
12 | public static var encoder: JSONEncoder = {
| |- warning: static property 'encoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'encoder' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'encoder' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let encoder = JSONEncoder()
14 | encoder.dateEncodingStrategy = .iso8601
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Json.swift:18:23: warning: static property 'decoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | }()
17 |
18 | public static var decoder: JSONDecoder = {
| |- warning: static property 'decoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decoder' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decoder' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | let decoder = JSONDecoder()
20 | decoder.dateDecodingStrategy = .iso8601
[27/33] Compiling Engine HTTPMethod.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Json.swift:12:23: warning: static property 'encoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public struct Json {
11 |
12 | public static var encoder: JSONEncoder = {
| |- warning: static property 'encoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'encoder' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'encoder' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let encoder = JSONEncoder()
14 | encoder.dateEncodingStrategy = .iso8601
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Json.swift:18:23: warning: static property 'decoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | }()
17 |
18 | public static var decoder: JSONDecoder = {
| |- warning: static property 'decoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decoder' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decoder' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | let decoder = JSONDecoder()
20 | decoder.dateDecodingStrategy = .iso8601
[28/33] Compiling Engine Json.swift
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Json.swift:12:23: warning: static property 'encoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public struct Json {
11 |
12 | public static var encoder: JSONEncoder = {
| |- warning: static property 'encoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'encoder' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'encoder' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | let encoder = JSONEncoder()
14 | encoder.dateEncodingStrategy = .iso8601
/Users/admin/builder/spi-builder-workspace/Sources/Engine/Networking/Json.swift:18:23: warning: static property 'decoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | }()
17 |
18 | public static var decoder: JSONDecoder = {
| |- warning: static property 'decoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'decoder' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'decoder' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 | let decoder = JSONDecoder()
20 | decoder.dateDecodingStrategy = .iso8601
[29/33] Compiling Engine EmptyResponse.swift
[30/33] Compiling Engine Clamping.swift
[31/33] Compiling Engine URL+Extensions.swift
[32/33] Compiling Engine URLRequest+Extensions.swift
[33/33] Compiling Engine JWT.swift
Build complete! (12.74s)
Fetching https://github.com/kishikawakatsumi/KeychainAccess
[1/4386] Fetching keychainaccess
Fetched https://github.com/kishikawakatsumi/KeychainAccess from cache (1.41s)
Computing version for https://github.com/kishikawakatsumi/KeychainAccess
Computed https://github.com/kishikawakatsumi/KeychainAccess at 4.2.2 (4.69s)
Creating working copy for https://github.com/kishikawakatsumi/KeychainAccess
Working copy of https://github.com/kishikawakatsumi/KeychainAccess resolved at 4.2.2
Build complete.
{
"dependencies" : [
{
"identity" : "keychainaccess",
"requirement" : {
"range" : [
{
"lower_bound" : "4.2.2",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/kishikawakatsumi/KeychainAccess"
}
],
"manifest_display_name" : "Engine",
"name" : "Engine",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
}
],
"products" : [
{
"name" : "Engine",
"targets" : [
"Engine"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "EngineTests",
"module_type" : "SwiftTarget",
"name" : "EngineTests",
"path" : "Tests/EngineTests",
"sources" : [
"Foundation/URLTests.swift",
"JWT/JWTTests.swift",
"PropertyWrapper/ClampingTests.swift",
"UIKit/UIColorTests.swift"
],
"target_dependencies" : [
"Engine"
],
"type" : "test"
},
{
"c99name" : "Engine",
"module_type" : "SwiftTarget",
"name" : "Engine",
"path" : "Sources/Engine",
"product_dependencies" : [
"KeychainAccess"
],
"product_memberships" : [
"Engine"
],
"sources" : [
"Engine.swift",
"Foundation/Bundle+Extensions.swift",
"Foundation/FileManager+Extensions.swift",
"Foundation/ProcessInfo+Extensions.swift",
"Foundation/String+Extensions.swift",
"Foundation/String+Random.swift",
"Foundation/URL+Extensions.swift",
"Foundation/URLRequest+Extensions.swift",
"JWT/JWT.swift",
"JWT/JWTClaims.swift",
"JWT/JWTHeader.swift",
"Keychain/Keychain.swift",
"Networking/Endpoint.swift",
"Networking/HTTPMethod.swift",
"Networking/Json.swift",
"Networking/LoggableError.swift",
"Networking/Network.swift",
"Networking/NetworkError.swift",
"Networking/OutputType.swift",
"Networking/Service.swift",
"Networking/models/DataWrapper.swift",
"Networking/models/EmptyResponse.swift",
"PropertyWrapper/Clamping.swift",
"PropertyWrapper/UserDefaults+PropertyWrapper.swift",
"UIKit/UIColor+Extensions.swift",
"UIKit/UIView+Extensions.swift",
"UIKit/UIViewController+Extensions.swift"
],
"type" : "library"
}
],
"tools_version" : "5.10"
}
Done.