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

Swift 6 data race errors: 4

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/Ether-CLI/Manifest.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Ether-CLI/Manifest
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 21cf15c Updated CHANGLELOG for dependency write fixes
Cloned https://github.com/Ether-CLI/Manifest.git
Revision (git rev-parse @):
21cf15c2ce50a630aed3a7d353c77d3a6dc953b1
SUCCESS checkout https://github.com/Ether-CLI/Manifest.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/Ether-CLI/Manifest.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/3] Write sources
[2/3] Write swift-version-6F35C1178C84523A.txt
[4/7] Emitting module Utilities
[5/7] Compiling Utilities String+NSRange.swift
[6/7] Compiling Utilities Deletable.swift
[7/7] Compiling Utilities Saveable.swift
[8/29] Compiling Manifest ManifestCodingKeys.swift
[9/29] Compiling Manifest ManifestElement.swift
[10/29] Compiling Manifest Manifest+Providers.swift
[11/29] Compiling Manifest Providers+CUD.swift
[12/31] Emitting module Manifest
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:9:23: warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
 7 |
 8 |     /// Used to tell the manifest instance that it is being used in the command-line.
 9 |     public static let commandline = Environment(name: "command-line")
   |                       |- warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'commandline' 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
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:12:23: warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
12 |     public static let testing = Environment(name: "testing")
   |                       |- warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'testing' 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
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Internal.swift:11:14: warning: var 'testManifest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | internal var testManifest = """
   |              |- warning: var 'testManifest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'testManifest' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'testManifest' 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
12 | // swift-tools-version:4.0
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Manifest/Manifest.swift:7:23: warning: static property 'environment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 |     /// The current environment that the `Manifest` is being used in.
  7 |     public static var environment: Environment = .commandline
    |                       |- warning: static property 'environment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'environment' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'environment' 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
  8 |
  9 |     /// Gets the current project's manifest.
[13/31] Compiling Manifest Manifest+Product.swift
[14/31] Compiling Manifest Product+CUD.swift
[15/31] Compiling Manifest VersionType.swift
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:9:23: warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
 7 |
 8 |     /// Used to tell the manifest instance that it is being used in the command-line.
 9 |     public static let commandline = Environment(name: "command-line")
   |                       |- warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'commandline' 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
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:12:23: warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
12 |     public static let testing = Environment(name: "testing")
   |                       |- warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'testing' 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
13 | }
14 |
[16/31] Compiling Manifest Environment.swift
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:9:23: warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
 7 |
 8 |     /// Used to tell the manifest instance that it is being used in the command-line.
 9 |     public static let commandline = Environment(name: "command-line")
   |                       |- warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'commandline' 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
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:12:23: warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
12 |     public static let testing = Environment(name: "testing")
   |                       |- warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'testing' 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
13 | }
14 |
[17/31] Compiling Manifest Error.swift
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:9:23: warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
 7 |
 8 |     /// Used to tell the manifest instance that it is being used in the command-line.
 9 |     public static let commandline = Environment(name: "command-line")
   |                       |- warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'commandline' 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
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:12:23: warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
12 |     public static let testing = Environment(name: "testing")
   |                       |- warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'testing' 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
13 | }
14 |
[18/31] Compiling Manifest Product.swift
[19/31] Compiling Manifest ProductSubTypes.swift
[20/31] Compiling Manifest Dependency+CUD.swift
[21/31] Compiling Manifest Dependency.swift
[22/31] Compiling Manifest Manifest+Dependency.swift
[23/31] Compiling Manifest Providers.swift
[24/31] Compiling Manifest Pin.swift
[25/31] Compiling Manifest Resolved.swift
[26/31] Compiling Manifest Manifest+Target.swift
[27/31] Compiling Manifest Internal.swift
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Internal.swift:11:14: warning: var 'testManifest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | internal var testManifest = """
   |              |- warning: var 'testManifest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'testManifest' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'testManifest' 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
12 | // swift-tools-version:4.0
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Manifest/Manifest.swift:7:23: warning: static property 'environment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 |     /// The current environment that the `Manifest` is being used in.
  7 |     public static var environment: Environment = .commandline
    |                       |- warning: static property 'environment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'environment' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'environment' 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
  8 |
  9 |     /// Gets the current project's manifest.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:9:23: warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
 7 |
 8 |     /// Used to tell the manifest instance that it is being used in the command-line.
 9 |     public static let commandline = Environment(name: "command-line")
   |                       |- warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'commandline' 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
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:12:23: warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
12 |     public static let testing = Environment(name: "testing")
   |                       |- warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'testing' 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
13 | }
14 |
[28/31] Compiling Manifest Manifest+Mutations.swift
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Internal.swift:11:14: warning: var 'testManifest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | internal var testManifest = """
   |              |- warning: var 'testManifest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'testManifest' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'testManifest' 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
12 | // swift-tools-version:4.0
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Manifest/Manifest.swift:7:23: warning: static property 'environment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 |     /// The current environment that the `Manifest` is being used in.
  7 |     public static var environment: Environment = .commandline
    |                       |- warning: static property 'environment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'environment' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'environment' 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
  8 |
  9 |     /// Gets the current project's manifest.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:9:23: warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
 7 |
 8 |     /// Used to tell the manifest instance that it is being used in the command-line.
 9 |     public static let commandline = Environment(name: "command-line")
   |                       |- warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'commandline' 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
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:12:23: warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
12 |     public static let testing = Environment(name: "testing")
   |                       |- warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'testing' 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
13 | }
14 |
[29/31] Compiling Manifest Manifest.swift
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Internal.swift:11:14: warning: var 'testManifest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 | }
10 |
11 | internal var testManifest = """
   |              |- warning: var 'testManifest' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'testManifest' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'testManifest' 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
12 | // swift-tools-version:4.0
13 |
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Manifest/Manifest.swift:7:23: warning: static property 'environment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
  5 |
  6 |     /// The current environment that the `Manifest` is being used in.
  7 |     public static var environment: Environment = .commandline
    |                       |- warning: static property 'environment' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'environment' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'environment' 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
  8 |
  9 |     /// Gets the current project's manifest.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:9:23: warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
 7 |
 8 |     /// Used to tell the manifest instance that it is being used in the command-line.
 9 |     public static let commandline = Environment(name: "command-line")
   |                       |- warning: static property 'commandline' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'commandline' 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
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
/Users/admin/builder/spi-builder-workspace/Sources/Manifest/Helpers/Environment.swift:12:23: warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
 1 | /// Used for telling the current manifest instance what environment it is being used in.
 2 | public struct Environment: Equatable {
   |               `- note: consider making struct 'Environment' conform to the 'Sendable' protocol
 3 |
 4 |     /// The name of the environmnt
   :
10 |
11 |     /// Used to tell the manifest it is being used to test it's methods on a string.
12 |     public static let testing = Environment(name: "testing")
   |                       |- warning: static property 'testing' is not concurrency-safe because non-'Sendable' type 'Environment' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'testing' 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
13 | }
14 |
[30/31] Compiling Manifest Target+CUD.swift
[31/31] Compiling Manifest Target.swift
Build complete! (17.77s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Manifest",
  "name" : "Manifest",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Manifest",
      "targets" : [
        "Manifest"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Utilities",
      "module_type" : "SwiftTarget",
      "name" : "Utilities",
      "path" : "Sources/Utilities",
      "product_memberships" : [
        "Manifest"
      ],
      "sources" : [
        "Deletable.swift",
        "Saveable.swift",
        "String+NSRange.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ManifestTests",
      "module_type" : "SwiftTarget",
      "name" : "ManifestTests",
      "path" : "Tests/ManifestTests",
      "sources" : [
        "ManifestTests.swift"
      ],
      "target_dependencies" : [
        "Manifest",
        "Utilities"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Manifest",
      "module_type" : "SwiftTarget",
      "name" : "Manifest",
      "path" : "Sources/Manifest",
      "product_memberships" : [
        "Manifest"
      ],
      "sources" : [
        "Dependency/Dependency+CUD.swift",
        "Dependency/Dependency.swift",
        "Dependency/Manifest+Dependency.swift",
        "Dependency/VersionType.swift",
        "Helpers/Environment.swift",
        "Helpers/Error.swift",
        "Helpers/Internal.swift",
        "Manifest/Manifest+Mutations.swift",
        "Manifest/Manifest.swift",
        "Manifest/ManifestCodingKeys.swift",
        "Manifest/ManifestElement.swift",
        "Product/Manifest+Product.swift",
        "Product/Product+CUD.swift",
        "Product/Product.swift",
        "Product/ProductSubTypes.swift",
        "Providers/Manifest+Providers.swift",
        "Providers/Providers+CUD.swift",
        "Providers/Providers.swift",
        "Resolved/Pin.swift",
        "Resolved/Resolved.swift",
        "Target/Manifest+Target.swift",
        "Target/Target+CUD.swift",
        "Target/Target.swift"
      ],
      "target_dependencies" : [
        "Utilities"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.