Build Information
Successful build of Manifest, reference 0.4.6 (21cf15
), with Swift 6.0 for macOS (SPM) on 1 Nov 2024 03:26:39 UTC.
Swift 6 data race errors: 4
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Ether-CLI/Manifest.git
Reference: 0.4.6
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Ether-CLI/Manifest
* tag 0.4.6 -> FETCH_HEAD
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 0.4.6
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"dependencies": [
{
"identity": "manifest",
"name": "Manifest",
"url": "https://github.com/Ether-CLI/Manifest.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Manifest",
"dependencies": [
]
}
]
}
Fetching https://github.com/Ether-CLI/Manifest.git
[1/1116] Fetching manifest
Fetched https://github.com/Ether-CLI/Manifest.git from cache (1.25s)
Creating working copy for https://github.com/Ether-CLI/Manifest.git
Working copy of https://github.com/Ether-CLI/Manifest.git resolved at 0.4.6 (21cf15c)
warning: '.resolve-product-dependencies': dependency 'manifest' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/Ether-CLI/Manifest.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun 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--7754E27361AE5C74.txt
[4/7] Compiling Utilities Deletable.swift
[5/7] Emitting module Utilities
[6/7] Compiling Utilities Saveable.swift
[7/7] Compiling Utilities String+NSRange.swift
[8/29] 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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.
[9/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 |
[10/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 |
[11/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 |
[12/31] Compiling Manifest Resolved.swift
[13/31] Compiling Manifest Manifest+Target.swift
[14/31] Compiling Manifest Manifest+Product.swift
[15/31] Compiling Manifest Product+CUD.swift
[16/31] Compiling Manifest Product.swift
[17/31] Compiling Manifest ProductSubTypes.swift
[18/31] Compiling Manifest Dependency+CUD.swift
[19/31] Compiling Manifest Dependency.swift
[20/31] Compiling Manifest Manifest+Dependency.swift
[21/31] Compiling Manifest Providers.swift
[22/31] Compiling Manifest Pin.swift
[23/31] Compiling Manifest ManifestCodingKeys.swift
[24/31] Compiling Manifest ManifestElement.swift
[25/31] Compiling Manifest Manifest+Providers.swift
[26/31] Compiling Manifest Providers+CUD.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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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! (7.84s)
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.