The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Engine, reference 0.3.1 (ddb630), with Swift 6.1 for macOS (SPM) on 24 Feb 2026 15:33:06 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 InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/blackjacx/engine.git
Reference: 0.3.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/blackjacx/engine
 * tag               0.3.1      -> FETCH_HEAD
HEAD is now at ddb6304 Merge branch 'release/0.3.1'
Cloned https://github.com/blackjacx/engine.git
Revision (git rev-parse @):
ddb6304b943a7af3033aaae3f11f2008b51bcee7
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/blackjacx/engine.git at 0.3.1
========================================
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] Emitting module KeychainAccess
[5/5] Compiling KeychainAccess Keychain.swift
[6/31] 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
[7/33] Compiling Engine UIView+Extensions.swift
[8/33] Compiling Engine UIViewController+Extensions.swift
[9/33] Compiling Engine EmptyResponse.swift
[10/33] Compiling Engine Clamping.swift
[11/33] Compiling Engine ProcessInfo+Extensions.swift
[12/33] Compiling Engine String+Extensions.swift
[13/33] Compiling Engine String+Random.swift
[14/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
[15/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
[16/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
[17/33] Compiling Engine OutputType.swift
[18/33] Compiling Engine Service.swift
[19/33] Compiling Engine DataWrapper.swift
[20/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
[21/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
[22/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
[23/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 |
[24/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 |
[25/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 |
[26/33] Compiling Engine UserDefaults+PropertyWrapper.swift
[27/33] Compiling Engine UIColor+Extensions.swift
[28/33] Compiling Engine JWTClaims.swift
[29/33] Compiling Engine JWTHeader.swift
[30/33] Compiling Engine Keychain.swift
[31/33] Compiling Engine URL+Extensions.swift
[32/33] Compiling Engine URLRequest+Extensions.swift
[33/33] Compiling Engine JWT.swift
Build complete! (12.73s)
Fetching https://github.com/kishikawakatsumi/KeychainAccess
[1/4387] Fetching keychainaccess
Fetched https://github.com/kishikawakatsumi/KeychainAccess from cache (1.44s)
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.