The Swift Package Index logo.Swift Package Index

Build Information

Successful build of PorscheConnect, reference main (733033), with Swift 6.2 for macOS (SPM) on 20 Jun 2025 07:49:01 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/driven-app/porsche-connect.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/driven-app/porsche-connect
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 7330331 Merge pull request #165 from driven-app/dg/dev
Cloned https://github.com/driven-app/porsche-connect.git
Revision (git rev-parse @):
733033195fb9e831cd473428431bd581814a0858
SUCCESS checkout https://github.com/driven-app/porsche-connect.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/driven-app/porsche-connect.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/11] Write sources
[6/11] Write porsche-entitlement.plist
[7/11] Write swift-version-1EA4D86E10B52AF.txt
[9/68] Emitting module ArgumentParserToolInfo
[10/68] Compiling ArgumentParserToolInfo ToolInfo.swift
[11/107] Emitting module SwiftSoup
[12/113] Emitting module ArgumentParser
[13/117] Compiling ArgumentParser ArgumentHelp.swift
[14/117] Compiling ArgumentParser ArgumentVisibility.swift
[15/117] Compiling ArgumentParser CompletionKind.swift
[16/117] Compiling ArgumentParser Errors.swift
[17/117] Compiling ArgumentParser Flag.swift
[18/117] Compiling ArgumentParser CommandConfiguration.swift
[19/117] Compiling ArgumentParser CommandGroup.swift
[20/117] Compiling ArgumentParser EnumerableFlag.swift
[21/117] Compiling ArgumentParser ExpressibleByArgument.swift
[22/117] Compiling ArgumentParser InputOrigin.swift
[23/117] Compiling ArgumentParser Name.swift
[24/117] Compiling ArgumentParser Parsed.swift
[25/117] Compiling ArgumentParser ParsedValues.swift
[26/117] Compiling ArgumentParser BashCompletionsGenerator.swift
[27/117] Compiling ArgumentParser CompletionsGenerator.swift
[28/117] Compiling ArgumentParser FishCompletionsGenerator.swift
[29/117] Compiling ArgumentParser ZshCompletionsGenerator.swift
[30/117] Compiling ArgumentParser Argument.swift
[31/117] Compiling ArgumentParser Platform.swift
[32/117] Compiling ArgumentParser SequenceExtensions.swift
[33/117] Compiling ArgumentParser StringExtensions.swift
[34/117] Compiling ArgumentParser Tree.swift
[35/117] Compiling SwiftSoup StringBuilder.swift
[36/117] Compiling SwiftSoup StringUtil.swift
[37/117] Compiling SwiftSoup StructuralEvaluator.swift
[38/117] Compiling SwiftSoup SwiftSoup.swift
[39/117] Compiling SwiftSoup Tag.swift
[40/117] Compiling SwiftSoup TextNode.swift
[41/117] Compiling ArgumentParser NameSpecification.swift
[42/117] Compiling ArgumentParser Option.swift
[43/117] Compiling ArgumentParser OptionGroup.swift
[44/117] Compiling ArgumentParser AsyncParsableCommand.swift
[45/117] Compiling ArgumentParser ParserError.swift
[46/117] Compiling ArgumentParser SplitArguments.swift
[47/117] Compiling ArgumentParser DumpHelpGenerator.swift
[48/117] Compiling ArgumentParser HelpCommand.swift
[49/117] Compiling ArgumentParser ArgumentDefinition.swift
[50/117] Compiling ArgumentParser ArgumentSet.swift
[51/117] Compiling ArgumentParser CommandParser.swift
[52/117] Compiling ArgumentParser InputKey.swift
[53/117] Compiling SwiftSoup HtmlTreeBuilderState.swift
[54/117] Compiling SwiftSoup HttpStatusException.swift
[55/117] Compiling SwiftSoup Mutex.swift
[56/117] Compiling SwiftSoup Node.swift
[57/117] Compiling SwiftSoup NodeTraversor.swift
[58/117] Compiling SwiftSoup NodeVisitor.swift
[59/117] Compiling ArgumentParser ParsableArguments.swift
[60/117] Compiling ArgumentParser ParsableArgumentsValidation.swift
[61/117] Compiling ArgumentParser ParsableCommand.swift
[62/117] Compiling ArgumentParser ArgumentDecoder.swift
[63/117] Compiling ArgumentParser HelpGenerator.swift
[64/117] Compiling ArgumentParser MessageInfo.swift
[65/117] Compiling ArgumentParser UsageGenerator.swift
[66/117] Compiling ArgumentParser CollectionExtensions.swift
[67/117] Compiling SwiftSoup UnfairLock.swift
[68/117] Compiling SwiftSoup UnicodeScalar.swift
[69/117] Compiling SwiftSoup Validate.swift
[70/117] Compiling SwiftSoup Whitelist.swift
[71/117] Compiling SwiftSoup XmlDeclaration.swift
[72/117] Compiling SwiftSoup XmlTreeBuilder.swift
[115/159] Emitting module PorscheConnect
[116/163] Compiling PorscheConnect String+Hex.swift
[117/163] Compiling PorscheConnect URL+Params.swift
[118/163] Compiling PorscheConnect HttpStatusCode.swift
[119/163] Compiling PorscheConnect AuthStoring.swift
[120/163] Compiling PorscheConnect PorscheConnect+Position.swift
[121/163] Compiling PorscheConnect PorscheConnect+Status.swift
[122/163] Compiling PorscheConnect PorscheConnect+Stored.swift
[123/163] Compiling PorscheConnect PorscheConnect+Summary.swift
[124/163] Compiling PorscheConnect PorscheConnect+Trips.swift
[125/163] Compiling PorscheConnect OAuthApplication.swift
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:114:16: warning: capture of 'responseType' with non-sendable type 'D.Type' in a '@Sendable' closure [#SendableClosureCaptures]
112 |         }
113 |
114 |         switch responseType {
    |                `- warning: capture of 'responseType' with non-sendable type 'D.Type' in a '@Sendable' closure [#SendableClosureCaptures]
115 |         case is String.Type:
116 |           let result = String(data: unwrappedData, encoding: .utf8)! as! D
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:96:24: warning: capture of non-sendable type 'D.Type' in an isolated closure
 94 |       let task = session.dataTask(with: request) { (data, response, error) in
 95 |         if let error = error {
 96 |           continuation.resume(with: .failure(error))
    |                        `- warning: capture of non-sendable type 'D.Type' in an isolated closure
 97 |           return
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:93:56: warning: capture of non-sendable type 'D.Type' in an isolated closure
 91 |     jsonKeyDecodingStrategy: JSONDecoder.KeyDecodingStrategy = .convertFromSnakeCase
 92 |   ) async throws -> (D?, HTTPURLResponse) {
 93 |     return try await withCheckedThrowingContinuation { continuation in
    |                                                        `- warning: capture of non-sendable type 'D.Type' in an isolated closure
 94 |       let task = session.dataTask(with: request) { (data, response, error) in
 95 |         if let error = error {
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[126/163] Compiling PorscheConnect NetworkClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:114:16: warning: capture of 'responseType' with non-sendable type 'D.Type' in a '@Sendable' closure [#SendableClosureCaptures]
112 |         }
113 |
114 |         switch responseType {
    |                `- warning: capture of 'responseType' with non-sendable type 'D.Type' in a '@Sendable' closure [#SendableClosureCaptures]
115 |         case is String.Type:
116 |           let result = String(data: unwrappedData, encoding: .utf8)! as! D
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:96:24: warning: capture of non-sendable type 'D.Type' in an isolated closure
 94 |       let task = session.dataTask(with: request) { (data, response, error) in
 95 |         if let error = error {
 96 |           continuation.resume(with: .failure(error))
    |                        `- warning: capture of non-sendable type 'D.Type' in an isolated closure
 97 |           return
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:93:56: warning: capture of non-sendable type 'D.Type' in an isolated closure
 91 |     jsonKeyDecodingStrategy: JSONDecoder.KeyDecodingStrategy = .convertFromSnakeCase
 92 |   ) async throws -> (D?, HTTPURLResponse) {
 93 |     return try await withCheckedThrowingContinuation { continuation in
    |                                                        `- warning: capture of non-sendable type 'D.Type' in an isolated closure
 94 |       let task = session.dataTask(with: request) { (data, response, error) in
 95 |         if let error = error {
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[127/163] Compiling PorscheConnect NetworkRoutes.swift
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:114:16: warning: capture of 'responseType' with non-sendable type 'D.Type' in a '@Sendable' closure [#SendableClosureCaptures]
112 |         }
113 |
114 |         switch responseType {
    |                `- warning: capture of 'responseType' with non-sendable type 'D.Type' in a '@Sendable' closure [#SendableClosureCaptures]
115 |         case is String.Type:
116 |           let result = String(data: unwrappedData, encoding: .utf8)! as! D
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:96:24: warning: capture of non-sendable type 'D.Type' in an isolated closure
 94 |       let task = session.dataTask(with: request) { (data, response, error) in
 95 |         if let error = error {
 96 |           continuation.resume(with: .failure(error))
    |                        `- warning: capture of non-sendable type 'D.Type' in an isolated closure
 97 |           return
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:93:56: warning: capture of non-sendable type 'D.Type' in an isolated closure
 91 |     jsonKeyDecodingStrategy: JSONDecoder.KeyDecodingStrategy = .convertFromSnakeCase
 92 |   ) async throws -> (D?, HTTPURLResponse) {
 93 |     return try await withCheckedThrowingContinuation { continuation in
    |                                                        `- warning: capture of non-sendable type 'D.Type' in an isolated closure
 94 |       let task = session.dataTask(with: request) { (data, response, error) in
 95 |         if let error = error {
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[128/163] Compiling PorscheConnect PorscheConnect.swift
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:114:16: warning: capture of 'responseType' with non-sendable type 'D.Type' in a '@Sendable' closure [#SendableClosureCaptures]
112 |         }
113 |
114 |         switch responseType {
    |                `- warning: capture of 'responseType' with non-sendable type 'D.Type' in a '@Sendable' closure [#SendableClosureCaptures]
115 |         case is String.Type:
116 |           let result = String(data: unwrappedData, encoding: .utf8)! as! D
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:96:24: warning: capture of non-sendable type 'D.Type' in an isolated closure
 94 |       let task = session.dataTask(with: request) { (data, response, error) in
 95 |         if let error = error {
 96 |           continuation.resume(with: .failure(error))
    |                        `- warning: capture of non-sendable type 'D.Type' in an isolated closure
 97 |           return
 98 |         }
/Users/admin/builder/spi-builder-workspace/Sources/PorscheConnect/NetworkClient.swift:93:56: warning: capture of non-sendable type 'D.Type' in an isolated closure
 91 |     jsonKeyDecodingStrategy: JSONDecoder.KeyDecodingStrategy = .convertFromSnakeCase
 92 |   ) async throws -> (D?, HTTPURLResponse) {
 93 |     return try await withCheckedThrowingContinuation { continuation in
    |                                                        `- warning: capture of non-sendable type 'D.Type' in an isolated closure
 94 |       let task = session.dataTask(with: request) { (data, response, error) in
 95 |         if let error = error {
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[129/163] Compiling PorscheConnect Tires.swift
[130/163] Compiling PorscheConnect Windows.swift
[131/163] Compiling PorscheConnect Constants.swift
[132/163] Compiling PorscheConnect Environment.swift
[133/163] Compiling PorscheConnect PorscheConnect+Auth.swift
[134/163] Compiling PorscheConnect PorscheConnect+Capabilities.swift
[135/163] Compiling PorscheConnect PorscheConnect+Emobility.swift
[136/163] Compiling PorscheConnect PorscheConnect+Maintenance.swift
[137/163] Compiling PorscheConnect PorscheConnect+Pictures.swift
[138/163] Compiling PorscheConnect Pressure.swift
[139/163] Compiling PorscheConnect RemainingRanges.swift
[140/163] Compiling PorscheConnect ServiceIntervals.swift
[141/163] Compiling PorscheConnect Speed.swift
[142/163] Compiling PorscheConnect DistanceFormatter.swift
[143/163] Compiling PorscheConnect GenericValueFormatter.swift
[144/163] Compiling PorscheConnect TimestampFormatter.swift
[145/163] Compiling PorscheConnect Color+Hex.swift
[146/163] Compiling PorscheConnect Doors.swift
[147/163] Compiling PorscheConnect ElectricEngineConsumption.swift
[148/163] Compiling PorscheConnect FuelConsumption.swift
[149/163] Compiling PorscheConnect GenericValue.swift
[150/163] Compiling PorscheConnect Picture.swift
[151/163] Compiling PorscheConnect PorscheConnect+LockUnlockLastActions.swift
[152/163] Compiling PorscheConnect PorscheConnect+Unlock.swift
[153/163] Compiling PorscheConnect PorscheConnect+RemoteCommandStatus.swift
[154/163] Compiling PorscheConnect RemoteCommandAccepted.swift
[155/163] Compiling PorscheConnect Distance.swift
[156/163] Compiling PorscheConnect PorscheConnect+Vehicles.swift
[157/163] Compiling PorscheConnect PorscheConnect+ToggleDirectCharging.swift
[158/163] Compiling PorscheConnect PorscheConnect+ToggleDirectClimatisation.swift
[159/163] Compiling PorscheConnect PorscheConnect+Flash.swift
[160/163] Compiling PorscheConnect PorscheConnect+Lock.swift
[161/179] Compiling CommandLineTool Command+ToggleDirectClimatisation.swift
[162/180] Compiling CommandLineTool Command+ShowMaintenance.swift
[163/180] Compiling CommandLineTool Command+ShowPosition.swift
[164/180] Compiling CommandLineTool Command+ListVehicles.swift
[165/180] Compiling CommandLineTool Command+Lock.swift
[166/180] Compiling CommandLineTool Command+ShowStatus.swift
[167/180] Compiling CommandLineTool Command+ShowSummary.swift
[168/180] Compiling CommandLineTool Command+Flash.swift
[169/180] Compiling CommandLineTool Command+HonkAndFlash.swift
[170/180] Emitting module CommandLineTool
/Users/admin/builder/spi-builder-workspace/Sources/CommandLineTool/Porsche.swift:8:1: warning: extension declares a conformance of imported type 'SupportedLocale' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'PorscheConnect' introduce this conformance in the future
 6 |
 7 | // Allow SupportedLocale to be used as a command line option.
 8 | extension SupportedLocale: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'SupportedLocale' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'PorscheConnect' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 9 | }
10 |
[171/180] Compiling CommandLineTool Command+ShowCapabilities.swift
[172/180] Compiling CommandLineTool Command+ShowEmobility.swift
[173/180] Compiling CommandLineTool Command+Unlock.swift
[174/180] Compiling CommandLineTool Extensions.swift
[175/180] Compiling CommandLineTool Command+ShowTrips.swift
[176/180] Compiling CommandLineTool Command+ToggleDirectCharging.swift
[177/180] Compiling CommandLineTool Porsche.swift
/Users/admin/builder/spi-builder-workspace/Sources/CommandLineTool/Porsche.swift:8:1: warning: extension declares a conformance of imported type 'SupportedLocale' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'PorscheConnect' introduce this conformance in the future
 6 |
 7 | // Allow SupportedLocale to be used as a command line option.
 8 | extension SupportedLocale: ExpressibleByArgument {
   | |- warning: extension declares a conformance of imported type 'SupportedLocale' to imported protocol 'ExpressibleByArgument'; this will not behave correctly if the owners of 'PorscheConnect' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 9 | }
10 |
[177/180] Write Objects.LinkFileList
[178/180] Linking porsche
[179/180] Applying porsche
Build complete! (25.74s)
Fetching https://github.com/mochidev/XCTAsync.git
Fetching https://github.com/scinfu/SwiftSoup.git
Fetching https://github.com/envoy/Ambassador.git
Fetching https://github.com/envoy/Embassy.git
Fetching https://github.com/apple/swift-argument-parser
[1/557] Fetching ambassador
[13/597] Fetching ambassador, xctasync
[92/4513] Fetching ambassador, xctasync, swiftsoup
[315/6359] Fetching ambassador, xctasync, swiftsoup, embassy
Fetched https://github.com/mochidev/XCTAsync.git from cache (0.73s)
[1505/6319] Fetching ambassador, swiftsoup, embassy
Fetched https://github.com/envoy/Ambassador.git from cache (0.83s)
[2982/5762] Fetching swiftsoup, embassy
[4902/21142] Fetching swiftsoup, embassy, swift-argument-parser
Fetched https://github.com/scinfu/SwiftSoup.git from cache (1.84s)
Fetched https://github.com/envoy/Embassy.git from cache (1.84s)
Fetched https://github.com/apple/swift-argument-parser from cache (1.84s)
Computing version for https://github.com/mochidev/XCTAsync.git
Computed https://github.com/mochidev/XCTAsync.git at 1.0.1 (2.36s)
Computing version for https://github.com/envoy/Ambassador.git
Computed https://github.com/envoy/Ambassador.git at 4.0.5 (1.99s)
Computing version for https://github.com/envoy/Embassy.git
Computed https://github.com/envoy/Embassy.git at 4.1.6 (2.02s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.5.1 (0.43s)
Computing version for https://github.com/scinfu/SwiftSoup.git
Computed https://github.com/scinfu/SwiftSoup.git at 2.8.8 (0.41s)
Creating working copy for https://github.com/mochidev/XCTAsync.git
Working copy of https://github.com/mochidev/XCTAsync.git resolved at 1.0.1
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.5.1
Creating working copy for https://github.com/envoy/Ambassador.git
Working copy of https://github.com/envoy/Ambassador.git resolved at 4.0.5
Creating working copy for https://github.com/scinfu/SwiftSoup.git
Working copy of https://github.com/scinfu/SwiftSoup.git resolved at 2.8.8
Creating working copy for https://github.com/envoy/Embassy.git
Working copy of https://github.com/envoy/Embassy.git resolved at 4.1.6
Build complete.
{
  "dependencies" : [
    {
      "identity" : "embassy",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.1.6",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/envoy/Embassy.git"
    },
    {
      "identity" : "ambassador",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.0.5",
            "upper_bound" : "5.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/envoy/Ambassador.git"
    },
    {
      "identity" : "swift-argument-parser",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.2.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-argument-parser"
    },
    {
      "identity" : "xctasync",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.1",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/mochidev/XCTAsync.git"
    },
    {
      "identity" : "swiftsoup",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.6.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/scinfu/SwiftSoup.git"
    }
  ],
  "manifest_display_name" : "PorscheConnect",
  "name" : "PorscheConnect",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "porsche",
      "targets" : [
        "CommandLineTool"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "PorscheConnect",
      "targets" : [
        "PorscheConnect"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PorscheConnectTests",
      "module_type" : "SwiftTarget",
      "name" : "PorscheConnectTests",
      "path" : "Tests/PorscheConnectTests",
      "product_dependencies" : [
        "Embassy",
        "Ambassador",
        "XCTAsync"
      ],
      "sources" : [
        "Common/BaseMockNetworkTestCase.swift",
        "Common/TestConstants.swift",
        "Formatters/DistanceFormatterTests.swift",
        "Formatters/GenericValueFormatterTests.swift",
        "Formatters/TimestampFormatterTests.swift",
        "Foundations/OAuth/OAuthApplicationTests.swift",
        "Mock Server Backend/MockNetworkRoutes.swift",
        "Mock Server Backend/MockResponseJson.swift",
        "Mock Server Backend/MockServer.swift",
        "Models/Models+AuthTests.swift",
        "Models/Models+CapabilitiesTests.swift",
        "Models/Models+DirectCharging.swift",
        "Models/Models+EmobilityTests.swift",
        "Models/Models+FlashAndHonk.swift",
        "Models/Models+LockUnlockTests.swift",
        "Models/Models+MaintenanceItemTests.swift",
        "Models/Models+PinSecurityChallengeTests.swift",
        "Models/Models+Position.swift",
        "Models/Models+RemoteCommandAcceptedTests.swift",
        "Models/Models+SummaryTests.swift",
        "Models/Models+TripTests.swift",
        "Models/Models+VehicleTests.swift",
        "Networking/NetworkClientTests.swift",
        "Networking/NetworkRoutesTests.swift",
        "Public/PorscheConnect+AuthTests.swift",
        "Public/PorscheConnect+CarControlTests.swift",
        "Public/PorscheConnect+Maintenance.swift",
        "Public/PorscheConnect+PortalTests.swift",
        "Public/PorscheConnect+RemoteCommandStatusTests.swift",
        "Public/PorscheConnect+TripsTests.swift",
        "Public/PorscheConnectTests.swift"
      ],
      "target_dependencies" : [
        "PorscheConnect"
      ],
      "type" : "test"
    },
    {
      "c99name" : "PorscheConnect",
      "module_type" : "SwiftTarget",
      "name" : "PorscheConnect",
      "path" : "Sources/PorscheConnect",
      "product_dependencies" : [
        "SwiftSoup"
      ],
      "product_memberships" : [
        "porsche",
        "PorscheConnect"
      ],
      "sources" : [
        "APIs/PorscheConnect+Auth.swift",
        "APIs/PorscheConnect+Capabilities.swift",
        "APIs/PorscheConnect+Emobility.swift",
        "APIs/PorscheConnect+Maintenance.swift",
        "APIs/PorscheConnect+Pictures.swift",
        "APIs/PorscheConnect+Position.swift",
        "APIs/PorscheConnect+Status.swift",
        "APIs/PorscheConnect+Stored.swift",
        "APIs/PorscheConnect+Summary.swift",
        "APIs/PorscheConnect+Trips.swift",
        "APIs/PorscheConnect+Vehicles.swift",
        "APIs/RemoteCommands/DirectCharging/PorscheConnect+ToggleDirectCharging.swift",
        "APIs/RemoteCommands/DirectClimatisation/PorscheConnect+ToggleDirectClimatisation.swift",
        "APIs/RemoteCommands/Flash/PorscheConnect+Flash.swift",
        "APIs/RemoteCommands/LockUnlock/PorscheConnect+Lock.swift",
        "APIs/RemoteCommands/LockUnlock/PorscheConnect+LockUnlockLastActions.swift",
        "APIs/RemoteCommands/LockUnlock/PorscheConnect+Unlock.swift",
        "APIs/RemoteCommands/PorscheConnect+RemoteCommandStatus.swift",
        "APIs/RemoteCommands/RemoteCommandAccepted.swift",
        "CommonResponseObjects/Distance.swift",
        "CommonResponseObjects/Doors.swift",
        "CommonResponseObjects/ElectricEngineConsumption.swift",
        "CommonResponseObjects/FuelConsumption.swift",
        "CommonResponseObjects/GenericValue.swift",
        "CommonResponseObjects/Picture.swift",
        "CommonResponseObjects/Pressure.swift",
        "CommonResponseObjects/RemainingRanges.swift",
        "CommonResponseObjects/ServiceIntervals.swift",
        "CommonResponseObjects/Speed.swift",
        "CommonResponseObjects/Tires.swift",
        "CommonResponseObjects/Windows.swift",
        "Constants.swift",
        "Environment.swift",
        "Formatters/DistanceFormatter.swift",
        "Formatters/GenericValueFormatter.swift",
        "Formatters/TimestampFormatter.swift",
        "Foundations/Extensions/Color+Hex.swift",
        "Foundations/Extensions/String+Hex.swift",
        "Foundations/Extensions/URL+Params.swift",
        "Foundations/HTTP/HttpStatusCode.swift",
        "Foundations/OAuth/AuthStoring.swift",
        "Foundations/OAuth/OAuthApplication.swift",
        "NetworkClient.swift",
        "NetworkRoutes.swift",
        "PorscheConnect.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CommandLineTool",
      "module_type" : "SwiftTarget",
      "name" : "CommandLineTool",
      "path" : "Sources/CommandLineTool",
      "product_dependencies" : [
        "ArgumentParser"
      ],
      "product_memberships" : [
        "porsche"
      ],
      "sources" : [
        "Command+Flash.swift",
        "Command+HonkAndFlash.swift",
        "Command+ListVehicles.swift",
        "Command+Lock.swift",
        "Command+ShowCapabilities.swift",
        "Command+ShowEmobility.swift",
        "Command+ShowMaintenance.swift",
        "Command+ShowPosition.swift",
        "Command+ShowStatus.swift",
        "Command+ShowSummary.swift",
        "Command+ShowTrips.swift",
        "Command+ToggleDirectCharging.swift",
        "Command+ToggleDirectClimatisation.swift",
        "Command+Unlock.swift",
        "Extensions.swift",
        "Porsche.swift"
      ],
      "target_dependencies" : [
        "PorscheConnect"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.7"
}
Done.