This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 MoyaSugar with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/devxoul/MoyaSugar.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/devxoul/MoyaSugar
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 079f25a Bump version to 1.3.3
Cloned https://github.com/devxoul/MoyaSugar.git
Revision (git rev-parse @):
079f25af9798977885058895085051379755bc7c
SUCCESS checkout https://github.com/devxoul/MoyaSugar.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/devxoul/MoyaSugar.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-6F35C1178C84523A.txt
[5/34] Emitting module Alamofire
[6/37] Compiling Alamofire URLRequest+Alamofire.swift
[7/37] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[8/37] Compiling Alamofire Validation.swift
[9/37] Compiling Alamofire Notifications.swift
[10/37] Compiling Alamofire OperationQueue+Alamofire.swift
[11/37] Compiling Alamofire ParameterEncoder.swift
[12/37] Compiling Alamofire RetryPolicy.swift
[13/37] Compiling Alamofire ServerTrustEvaluation.swift
[14/37] Compiling Alamofire Session.swift
[15/37] Compiling Alamofire Response.swift
[16/37] Compiling Alamofire ResponseSerialization.swift
[17/37] Compiling Alamofire Result+Alamofire.swift
[18/37] Compiling Alamofire SessionDelegate.swift
[19/37] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[20/37] Compiling Alamofire URLEncodedFormEncoder.swift
[21/37] Compiling Alamofire MultipartFormData.swift
[22/37] Compiling Alamofire MultipartUpload.swift
[23/37] Compiling Alamofire NetworkReachabilityManager.swift
[24/37] Compiling Alamofire AFError.swift
[25/37] Compiling Alamofire Alamofire.swift
[26/37] Compiling Alamofire AlamofireExtended.swift
[27/37] Compiling Alamofire CachedResponseHandler.swift
[28/37] Compiling Alamofire ParameterEncoding.swift
[29/37] Compiling Alamofire Protector.swift
[30/37] Compiling Alamofire RedirectHandler.swift
[31/37] Compiling Alamofire Request.swift
[32/37] Compiling Alamofire RequestInterceptor.swift
[33/37] Compiling Alamofire RequestTaskMap.swift
[34/37] Compiling Alamofire DispatchQueue+Alamofire.swift
[35/37] Compiling Alamofire EventMonitor.swift
[36/37] Compiling Alamofire HTTPHeaders.swift
[37/37] Compiling Alamofire HTTPMethod.swift
[38/62] Compiling Moya AccessTokenPlugin.swift
[39/62] Compiling Moya CredentialsPlugin.swift
[40/62] Compiling Moya NetworkActivityPlugin.swift
[41/64] Compiling Moya Task.swift
[42/64] Compiling Moya URL+Moya.swift
[43/64] Compiling Moya MultiTarget.swift
[44/64] Compiling Moya MultipartFormData.swift
[45/64] Compiling Moya Plugin.swift
[46/64] Compiling Moya MoyaProvider+Combine.swift
[47/64] Compiling Moya MoyaPublisher.swift
[48/64] Compiling Moya Endpoint.swift
[49/64] Emitting module Moya
[50/64] Compiling Moya URLRequest+Encoding.swift
[51/64] Compiling Moya ValidationType.swift
[52/64] Compiling Moya NetworkLoggerPlugin.swift
[53/64] Compiling Moya RequestTypeWrapper.swift
[54/64] Compiling Moya MoyaProvider+Defaults.swift
[55/64] Compiling Moya MoyaProvider+Internal.swift
[56/64] Compiling Moya MoyaProvider.swift
[57/64] Compiling Moya AnyEncodable.swift
[58/64] Compiling Moya Cancellable.swift
[59/64] Compiling Moya AnyPublisher+Response.swift
[60/64] Compiling Moya Response.swift
[61/64] Compiling Moya TargetType.swift
[62/64] Compiling Moya Image.swift
[63/64] Compiling Moya Moya+Alamofire.swift
[64/64] Compiling Moya MoyaError.swift
[65/71] Compiling MoyaSugar Route.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:35:23: warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
33 |     public static let delete = HTTPMethod(rawValue: "DELETE")
34 |     /// `GET` method.
35 |     public static let get = HTTPMethod(rawValue: "GET")
   |                       |- warning: static property 'get' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'get' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |     /// `HEAD` method.
37 |     public static let head = HTTPMethod(rawValue: "HEAD")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:43:23: warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
41 |     public static let patch = HTTPMethod(rawValue: "PATCH")
42 |     /// `POST` method.
43 |     public static let post = HTTPMethod(rawValue: "POST")
   |                       |- warning: static property 'post' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'post' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 |     /// `PUT` method.
45 |     public static let put = HTTPMethod(rawValue: "PUT")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:45:23: warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
43 |     public static let post = HTTPMethod(rawValue: "POST")
44 |     /// `PUT` method.
45 |     public static let put = HTTPMethod(rawValue: "PUT")
   |                       |- warning: static property 'put' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'put' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |     /// `TRACE` method.
47 |     public static let trace = HTTPMethod(rawValue: "TRACE")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:33:23: warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
32 |     /// `DELETE` method.
33 |     public static let delete = HTTPMethod(rawValue: "DELETE")
   |                       |- warning: static property 'delete' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'delete' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |     /// `GET` method.
35 |     public static let get = HTTPMethod(rawValue: "GET")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:39:23: warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
37 |     public static let head = HTTPMethod(rawValue: "HEAD")
38 |     /// `OPTIONS` method.
39 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
   |                       |- warning: static property 'options' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'options' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |     /// `PATCH` method.
41 |     public static let patch = HTTPMethod(rawValue: "PATCH")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:37:23: warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
35 |     public static let get = HTTPMethod(rawValue: "GET")
36 |     /// `HEAD` method.
37 |     public static let head = HTTPMethod(rawValue: "HEAD")
   |                       |- warning: static property 'head' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |     /// `OPTIONS` method.
39 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:41:23: warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
39 |     public static let options = HTTPMethod(rawValue: "OPTIONS")
40 |     /// `PATCH` method.
41 |     public static let patch = HTTPMethod(rawValue: "PATCH")
   |                       |- warning: static property 'patch' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'patch' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |     /// `POST` method.
43 |     public static let post = HTTPMethod(rawValue: "POST")
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:47:23: warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   :
45 |     public static let put = HTTPMethod(rawValue: "PUT")
46 |     /// `TRACE` method.
47 |     public static let trace = HTTPMethod(rawValue: "TRACE")
   |                       |- warning: static property 'trace' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'trace' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     public let rawValue: String
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Alamofire/Source/HTTPMethod.swift:31:23: warning: static property 'connect' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
27 | ///
28 | /// See https://tools.ietf.org/html/rfc7231#section-4.3
29 | public struct HTTPMethod: RawRepresentable, Equatable, Hashable {
   |               `- note: consider making struct 'HTTPMethod' conform to the 'Sendable' protocol
30 |     /// `CONNECT` method.
31 |     public static let connect = HTTPMethod(rawValue: "CONNECT")
   |                       |- warning: static property 'connect' is not concurrency-safe because non-'Sendable' type 'HTTPMethod' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'connect' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |     /// `DELETE` method.
33 |     public static let delete = HTTPMethod(rawValue: "DELETE")
[66/71] Compiling MoyaSugar SugarTargetType.swift
[67/71] Compiling MoyaSugar MultiSugarTarget.swift
[68/71] Compiling MoyaSugar MoyaSugarProvider.swift
[69/71] Compiling MoyaSugar Exports.swift
[70/71] Emitting module MoyaSugar
[71/71] Compiling MoyaSugar Parameters.swift
Build complete! (94.50s)
Fetching https://github.com/devxoul/Immutable.git
Fetching https://github.com/ReactiveCocoa/ReactiveSwift.git
Fetching https://github.com/devxoul/Then.git
Fetching https://github.com/Quick/Quick.git
Fetching https://github.com/Moya/Moya.git
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
Fetching https://github.com/ReactiveX/RxSwift.git
[1/160] Fetching immutable
[161/1407] Fetching immutable, cwlpreconditiontesting
[324/2200] Fetching immutable, cwlpreconditiontesting, then
[1555/54638] Fetching immutable, cwlpreconditiontesting, then, reactiveswift
[2202/79839] Fetching immutable, cwlpreconditiontesting, then, reactiveswift, moya
[2203/94388] Fetching immutable, cwlpreconditiontesting, then, reactiveswift, moya, quick
[9238/145804] Fetching immutable, cwlpreconditiontesting, then, reactiveswift, moya, quick, rxswift
Fetched https://github.com/devxoul/Immutable.git from cache (18.99s)
Fetching https://github.com/mattgallagher/CwlCatchException.git
Fetched https://github.com/ReactiveCocoa/ReactiveSwift.git from cache (18.99s)
Fetched https://github.com/Quick/Quick.git from cache (18.99s)
Fetched https://github.com/devxoul/Then.git from cache (18.99s)
Fetching https://github.com/Quick/Nimble.git
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (18.99s)
Fetching https://github.com/Alamofire/Alamofire.git
Fetched https://github.com/ReactiveX/RxSwift.git from cache (18.99s)
Fetched https://github.com/Moya/Moya.git from cache (18.99s)
Computing version for https://github.com/devxoul/Then.git
[1/439] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.78s)
[1/28780] Fetching alamofire
[2016/47420] Fetching alamofire, nimble
Fetched https://github.com/Alamofire/Alamofire.git from cache (15.53s)
Fetched https://github.com/Quick/Nimble.git from cache (15.53s)
Computed https://github.com/devxoul/Then.git at 2.6.0 (16.17s)
Computing version for https://github.com/devxoul/Immutable.git
Computed https://github.com/devxoul/Immutable.git at 0.6.0 (0.66s)
Computing version for https://github.com/Moya/Moya.git
Computed https://github.com/Moya/Moya.git at 14.0.0-beta.2 (0.66s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 8.0.4 (0.66s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 2.1.0 (0.67s)
Computing version for https://github.com/ReactiveX/RxSwift.git
Computed https://github.com/ReactiveX/RxSwift.git at 5.0.1 (0.68s)
Computing version for https://github.com/ReactiveCocoa/ReactiveSwift.git
Computed https://github.com/ReactiveCocoa/ReactiveSwift.git at 6.1.0 (0.66s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.0.0-rc.2 (0.66s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 1.2.0 (2.59s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 1.2.0 (2.28s)
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 8.0.4
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 1.2.0
Creating working copy for https://github.com/devxoul/Immutable.git
Working copy of https://github.com/devxoul/Immutable.git resolved at 0.6.0
Creating working copy for https://github.com/ReactiveCocoa/ReactiveSwift.git
Working copy of https://github.com/ReactiveCocoa/ReactiveSwift.git resolved at 6.1.0
Creating working copy for https://github.com/ReactiveX/RxSwift.git
Working copy of https://github.com/ReactiveX/RxSwift.git resolved at 5.0.1
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.0.0-rc.2
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 1.2.0
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 2.1.0
Creating working copy for https://github.com/devxoul/Then.git
Working copy of https://github.com/devxoul/Then.git resolved at 2.6.0
Creating working copy for https://github.com/Moya/Moya.git
Working copy of https://github.com/Moya/Moya.git resolved at 14.0.0-beta.2
Build complete.
{
  "dependencies" : [
    {
      "identity" : "moya",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "14.0.0-beta.2",
            "upper_bound" : "15.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Moya/Moya.git"
    },
    {
      "identity" : "immutable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.5.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/devxoul/Immutable.git"
    },
    {
      "identity" : "then",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.2.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/devxoul/Then.git"
    }
  ],
  "manifest_display_name" : "MoyaSugar",
  "name" : "MoyaSugar",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "MoyaSugar",
      "targets" : [
        "MoyaSugar"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MoyaSugarTests",
      "module_type" : "SwiftTarget",
      "name" : "MoyaSugarTests",
      "path" : "Tests/MoyaSugarTests",
      "product_dependencies" : [
        "Immutable",
        "Then"
      ],
      "sources" : [
        "GitHubAPI.swift",
        "MoyaSugarProviderTests.swift",
        "MultiSugarTargetTests.swift",
        "ParametersTests.swift",
        "RouteTests.swift",
        "SugarTargetTypeTests.swift"
      ],
      "target_dependencies" : [
        "MoyaSugar"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MoyaSugar",
      "module_type" : "SwiftTarget",
      "name" : "MoyaSugar",
      "path" : "Sources/MoyaSugar",
      "product_dependencies" : [
        "Moya"
      ],
      "product_memberships" : [
        "MoyaSugar"
      ],
      "sources" : [
        "Exports.swift",
        "MoyaSugarProvider.swift",
        "MultiSugarTarget.swift",
        "Parameters.swift",
        "Route.swift",
        "SugarTargetType.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.