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 Engine, reference develop (8944a5), with Swift 6.1 for macOS (SPM) on 30 Apr 2025 15:07:57 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.61.1
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 8944a58 Merge branch 'release/0.1.0' into develop
Cloned https://github.com/blackjacx/engine.git
Revision (git rev-parse @):
8944a58b4d7e57411681be25e463b446e2be26b0
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" : "swiftkeychainwrapper",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.1",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/jrendel/SwiftKeychainWrapper"
    }
  ],
  "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" : [
        "SwiftKeychainWrapper"
      ],
      "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/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/7] Emitting module SwiftKeychainWrapper
[5/7] Compiling SwiftKeychainWrapper KeychainWrapper.swift
[6/7] Compiling SwiftKeychainWrapper KeychainWrapperSubscript.swift
[7/7] Compiling SwiftKeychainWrapper KeychainItemAccessibility.swift
[8/32] 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
[9/34] Compiling Engine UserDefaults+PropertyWrapper.swift
[10/34] Compiling Engine UIColor+Extensions.swift
[11/34] Compiling Engine Service.swift
[12/34] Compiling Engine DataWrapper.swift
[13/34] Compiling Engine ProcessInfo+Extensions.swift
[14/34] Compiling Engine String+Extensions.swift
[15/34] Compiling Engine String+Random.swift
[16/34] 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
[17/34] 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
[18/34] 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
[19/34] 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 |
[20/34] 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 |
[21/34] 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 |
[22/34] Compiling Engine UIView+Extensions.swift
[23/34] Compiling Engine UIViewController+Extensions.swift
[24/34] Compiling Engine JWTClaims.swift
[25/34] Compiling Engine JWTHeader.swift
[26/34] Compiling Engine Keychain.swift
[27/34] Compiling Engine URL+Extensions.swift
[28/34] Compiling Engine URLRequest+Extensions.swift
[29/34] Compiling Engine JWT.swift
[30/34] Compiling Engine EmptyResponse.swift
[31/34] Compiling Engine Clamping.swift
[32/34] 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
[33/34] 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
[34/34] 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
Build complete! (10.43s)
Fetching https://github.com/jrendel/SwiftKeychainWrapper
[1/1666] Fetching swiftkeychainwrapper
Fetched https://github.com/jrendel/SwiftKeychainWrapper from cache (0.84s)
Computing version for https://github.com/jrendel/SwiftKeychainWrapper
Computed https://github.com/jrendel/SwiftKeychainWrapper at 4.0.1 (2.05s)
Creating working copy for https://github.com/jrendel/SwiftKeychainWrapper
Working copy of https://github.com/jrendel/SwiftKeychainWrapper resolved at 4.0.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swiftkeychainwrapper",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.1",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/jrendel/SwiftKeychainWrapper"
    }
  ],
  "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" : [
        "SwiftKeychainWrapper"
      ],
      "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/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.