Build Information
Successful build of IzzyParser, reference master (6f4949
), with Swift 6.0 for macOS (SPM) on 5 Nov 2024 00:58:08 UTC.
Swift 6 data race errors: 3
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/undabot/izzyparser-ios.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/undabot/izzyparser-ios
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 6f4949f Merge pull request #14 from undabot/fix/workflow
Cloned https://github.com/undabot/izzyparser-ios.git
Revision (git rev-parse @):
6f4949f2c22842894f4ee0ec896de82101c7c131
SUCCESS checkout https://github.com/undabot/izzyparser-ios.git at master
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
Fetching https://github.com/Quick/Nimble.git
Fetching https://github.com/mattgallagher/CwlCatchException.git
Fetching https://github.com/Quick/Quick.git
[1/1257] Fetching cwlpreconditiontesting
[203/1712] Fetching cwlpreconditiontesting, cwlcatchexception
[1713/16440] Fetching cwlpreconditiontesting, cwlcatchexception, quick
[16441/35663] Fetching cwlpreconditiontesting, cwlcatchexception, quick, nimble
Fetched https://github.com/Quick/Nimble.git from cache (2.91s)
Fetched https://github.com/Quick/Quick.git from cache (2.91s)
Computing version for https://github.com/Quick/Quick.git
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (2.92s)
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (2.92s)
Computed https://github.com/Quick/Quick.git at 7.4.1 (0.55s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 13.2.1 (0.52s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 2.2.1 (0.68s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.2.0 (0.68s)
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 2.2.0
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.2.1
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 7.4.1
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 13.2.1
========================================
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": "izzyparser-ios",
"name": "IzzyParser",
"url": "https://github.com/undabot/izzyparser-ios.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/izzyparser-ios",
"dependencies": [
]
}
]
}
Fetching https://github.com/undabot/izzyparser-ios.git
[1/363] Fetching izzyparser-ios
Fetched https://github.com/undabot/izzyparser-ios.git from cache (0.78s)
Creating working copy for https://github.com/undabot/izzyparser-ios.git
Working copy of https://github.com/undabot/izzyparser-ios.git resolved at master (6f4949f)
warning: '.resolve-product-dependencies': dependency 'izzyparser-ios' 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/undabot/izzyparser-ios.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/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/28] Emitting module IzzyParser
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/Nullable.swift:9:13: warning: let 'nullDictionary' is not concurrency-safe because non-'Sendable' type '[String : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
7 | private let nullString: String = UUID().uuidString
8 | private let nullNumber: NSNumber = NSNumber(value: INT_MAX)
9 | private let nullDictionary: [String: Any] = [.null: NSNull()]
| |- warning: let 'nullDictionary' is not concurrency-safe because non-'Sendable' type '[String : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'nullDictionary' 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 | private let nullStringArray: [String] = [.null]
11 | private let nullNumberArray: [NSNumber] = [.null]
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/Nullable.swift:12:13: warning: let 'nullDictionaryArray' is not concurrency-safe because non-'Sendable' type '[[String : Any]]' may have shared mutable state; this is an error in the Swift 6 language mode
10 | private let nullStringArray: [String] = [.null]
11 | private let nullNumberArray: [NSNumber] = [.null]
12 | private let nullDictionaryArray: [[String: Any]] = [.null]
| |- warning: let 'nullDictionaryArray' is not concurrency-safe because non-'Sendable' type '[[String : Any]]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'nullDictionaryArray' 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 | extension NSNumber: Nullable {
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/SingleResourceJSON.swift:6:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SingleResourceJSON' may have shared mutable state; this is an error in the Swift 6 language mode
1 | struct SingleResourceJSON {
| `- note: consider making struct 'SingleResourceJSON' conform to the 'Sendable' protocol
2 | let data: [String: Any]
3 | let attributes: [String: Any]
4 | let relationships: [String: Any]
5 |
6 | static let empty = SingleResourceJSON(data: [:], attributes: [:], relationships: [:])
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SingleResourceJSON' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' 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
7 | }
8 |
[4/30] Compiling IzzyParser Serializer.swift
[5/30] Compiling IzzyParser SingleResourceSerializer.swift
[6/30] Compiling IzzyParser ResourceCollectionSerializer.swift
[7/30] Compiling IzzyParser SerializationValidator.swift
[8/30] Compiling IzzyParser SwiftReflection.swift
[9/30] Compiling IzzyParser Izzy.swift
[10/30] Compiling IzzyParser ResourceMatcher.swift
[11/30] Compiling IzzyParser LinksDeserializer.swift
[12/30] Compiling IzzyParser MetaDeserializer.swift
[13/30] Compiling IzzyParser ResourceDeserializer.swift
[14/30] Compiling IzzyParser ErrorsDeserializer.swift
[15/30] Compiling IzzyParser IzzyDeserializer.swift
[16/30] Compiling IzzyParser JsonApiDeserializer.swift
[17/30] Compiling IzzyParser Nullable.swift
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/Nullable.swift:9:13: warning: let 'nullDictionary' is not concurrency-safe because non-'Sendable' type '[String : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
7 | private let nullString: String = UUID().uuidString
8 | private let nullNumber: NSNumber = NSNumber(value: INT_MAX)
9 | private let nullDictionary: [String: Any] = [.null: NSNull()]
| |- warning: let 'nullDictionary' is not concurrency-safe because non-'Sendable' type '[String : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'nullDictionary' 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 | private let nullStringArray: [String] = [.null]
11 | private let nullNumberArray: [NSNumber] = [.null]
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/Nullable.swift:12:13: warning: let 'nullDictionaryArray' is not concurrency-safe because non-'Sendable' type '[[String : Any]]' may have shared mutable state; this is an error in the Swift 6 language mode
10 | private let nullStringArray: [String] = [.null]
11 | private let nullNumberArray: [NSNumber] = [.null]
12 | private let nullDictionaryArray: [[String: Any]] = [.null]
| |- warning: let 'nullDictionaryArray' is not concurrency-safe because non-'Sendable' type '[[String : Any]]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'nullDictionaryArray' 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 | extension NSNumber: Nullable {
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/SingleResourceJSON.swift:6:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SingleResourceJSON' may have shared mutable state; this is an error in the Swift 6 language mode
1 | struct SingleResourceJSON {
| `- note: consider making struct 'SingleResourceJSON' conform to the 'Sendable' protocol
2 | let data: [String: Any]
3 | let attributes: [String: Any]
4 | let relationships: [String: Any]
5 |
6 | static let empty = SingleResourceJSON(data: [:], attributes: [:], relationships: [:])
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SingleResourceJSON' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' 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
7 | }
8 |
[18/30] Compiling IzzyParser Resource.swift
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/Nullable.swift:9:13: warning: let 'nullDictionary' is not concurrency-safe because non-'Sendable' type '[String : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
7 | private let nullString: String = UUID().uuidString
8 | private let nullNumber: NSNumber = NSNumber(value: INT_MAX)
9 | private let nullDictionary: [String: Any] = [.null: NSNull()]
| |- warning: let 'nullDictionary' is not concurrency-safe because non-'Sendable' type '[String : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'nullDictionary' 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 | private let nullStringArray: [String] = [.null]
11 | private let nullNumberArray: [NSNumber] = [.null]
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/Nullable.swift:12:13: warning: let 'nullDictionaryArray' is not concurrency-safe because non-'Sendable' type '[[String : Any]]' may have shared mutable state; this is an error in the Swift 6 language mode
10 | private let nullStringArray: [String] = [.null]
11 | private let nullNumberArray: [NSNumber] = [.null]
12 | private let nullDictionaryArray: [[String: Any]] = [.null]
| |- warning: let 'nullDictionaryArray' is not concurrency-safe because non-'Sendable' type '[[String : Any]]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'nullDictionaryArray' 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 | extension NSNumber: Nullable {
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/SingleResourceJSON.swift:6:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SingleResourceJSON' may have shared mutable state; this is an error in the Swift 6 language mode
1 | struct SingleResourceJSON {
| `- note: consider making struct 'SingleResourceJSON' conform to the 'Sendable' protocol
2 | let data: [String: Any]
3 | let attributes: [String: Any]
4 | let relationships: [String: Any]
5 |
6 | static let empty = SingleResourceJSON(data: [:], attributes: [:], relationships: [:])
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SingleResourceJSON' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' 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
7 | }
8 |
[19/30] Compiling IzzyParser SingleResourceJSON.swift
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/Nullable.swift:9:13: warning: let 'nullDictionary' is not concurrency-safe because non-'Sendable' type '[String : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
7 | private let nullString: String = UUID().uuidString
8 | private let nullNumber: NSNumber = NSNumber(value: INT_MAX)
9 | private let nullDictionary: [String: Any] = [.null: NSNull()]
| |- warning: let 'nullDictionary' is not concurrency-safe because non-'Sendable' type '[String : Any]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'nullDictionary' 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 | private let nullStringArray: [String] = [.null]
11 | private let nullNumberArray: [NSNumber] = [.null]
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/Nullable.swift:12:13: warning: let 'nullDictionaryArray' is not concurrency-safe because non-'Sendable' type '[[String : Any]]' may have shared mutable state; this is an error in the Swift 6 language mode
10 | private let nullStringArray: [String] = [.null]
11 | private let nullNumberArray: [NSNumber] = [.null]
12 | private let nullDictionaryArray: [[String: Any]] = [.null]
| |- warning: let 'nullDictionaryArray' is not concurrency-safe because non-'Sendable' type '[[String : Any]]' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'nullDictionaryArray' 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 | extension NSNumber: Nullable {
/Users/admin/builder/spi-builder-workspace/IzzyParser/ResourceObjects/SingleResourceJSON.swift:6:16: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SingleResourceJSON' may have shared mutable state; this is an error in the Swift 6 language mode
1 | struct SingleResourceJSON {
| `- note: consider making struct 'SingleResourceJSON' conform to the 'Sendable' protocol
2 | let data: [String: Any]
3 | let attributes: [String: Any]
4 | let relationships: [String: Any]
5 |
6 | static let empty = SingleResourceJSON(data: [:], attributes: [:], relationships: [:])
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'SingleResourceJSON' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'empty' 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
7 | }
8 |
[20/30] Compiling IzzyParser Identity.swift
[21/30] Compiling IzzyParser JSONAPIError.swift
[22/30] Compiling IzzyParser Link.swift
[23/30] Compiling IzzyParser JSONAPIDocument.swift
[24/30] Compiling IzzyParser IzzySerializer.swift
[25/30] Compiling IzzyParser CodableCustomObject.swift
[26/30] Compiling IzzyParser CustomObject.swift
[27/30] Compiling IzzyParser Deserializer.swift
[28/30] Compiling IzzyParser IzzyError.swift
[29/30] Compiling IzzyParser Codable+Convenience.swift
[30/30] Compiling IzzyParser DictionaryExtensions.swift
Build complete! (20.88s)
warning: 'nimble': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Nimble/Sources/Nimble/PrivacyInfo.xcprivacy
warning: 'quick': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Quick/Sources/Quick/PrivacyInfo.xcprivacy
Build complete.
{
"dependencies" : [
{
"identity" : "nimble",
"requirement" : {
"range" : [
{
"lower_bound" : "13.0.0",
"upper_bound" : "14.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Quick/Nimble.git"
},
{
"identity" : "quick",
"requirement" : {
"range" : [
{
"lower_bound" : "7.0.0",
"upper_bound" : "8.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Quick/Quick.git"
}
],
"manifest_display_name" : "IzzyParser",
"name" : "IzzyParser",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "IzzyParser",
"targets" : [
"IzzyParser"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "IzzyParserTests",
"module_type" : "SwiftTarget",
"name" : "IzzyParserTests",
"path" : "IzzyParserTests",
"product_dependencies" : [
"Quick",
"Nimble"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleCollectionWithCustomAttributes.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithAttributesAndRelationships.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithAuthorMeta.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithAuthorRelationship.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithCustomAttribute.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithInvalidRelationship.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithLinksAndAuthorRelationships.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithOneAttribute.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithPaginationLinks.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithRelationshipWithCustomAttribute.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithSelfAndRelatedLinks.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithSelfLink.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithSelfLinkObject.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithTagCollectionRelationship.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticleWithTopLevelSelfLinkObject.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ArticlesCollection.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/AuthorWithDifferentAttributes.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/Base.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/CollectionOfArticlesWithAttributes.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/CommentWithReplies.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/EmptyCollectionLink.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/EmptyData.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/EmptyResponse.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/EmptyToManyRelationshipsLink.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/EmptyToOneRelationshipLink.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ErrorWithLinksAndSource.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ErrorsCollection.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/InvalidBase.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/InvalidJson.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/JsonApi.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/Meta.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/MultipleObjectsCollection.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/MultipleRelationships.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/NullAttributesAndRelationships.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/NullData.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/OneObjectCollection.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/PhotoWithClientGeneratedId.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/RandomData.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/RelatedArticle.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/Reply.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ToManyRelationshipsLink.json",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/IzzyParserTests/JSONExamples/ToOneRelationshipLink.json",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Deserialization/ArrayOfCodableCustomObjectShould.swift",
"Deserialization/ErrorsDeserializerShould.swift",
"Deserialization/IzzyDeserializerShould.swift",
"Deserialization/JsonApiDeserializerShould.swift",
"Deserialization/MetaDeserializerShould.swift",
"Deserialization/ResourceDeserializerShould.swift",
"Helpers/IzzyTestHelper.swift",
"IzzyShould.swift",
"Mocks/IzzyDeserializerMock.swift",
"Mocks/IzzySerializerMock.swift",
"ResourceMatcher/ResourceMatcherShould.swift",
"Resources/Article.swift",
"Resources/Author.swift",
"Resources/Bone.swift",
"Resources/Book.swift",
"Resources/BookTag.swift",
"Resources/Comment.swift",
"Resources/CommentReply.swift",
"Resources/Home.swift",
"Resources/Person.swift",
"Resources/Post.swift",
"Resources/RelatedArticle.swift",
"Resources/Reply.swift",
"Resources/SpecialBook.swift",
"Resources/Tag.swift",
"Resources/ThrowableResource.swift",
"Serialization/IzzySerializerShould.swift"
],
"target_dependencies" : [
"IzzyParser"
],
"type" : "test"
},
{
"c99name" : "IzzyParser",
"module_type" : "SwiftTarget",
"name" : "IzzyParser",
"path" : "IzzyParser",
"product_memberships" : [
"IzzyParser"
],
"sources" : [
"Deserialization/CodableCustomObject.swift",
"Deserialization/CustomObject.swift",
"Deserialization/Deserializer.swift",
"Deserialization/ErrorsDeserializer.swift",
"Deserialization/IzzyDeserializer.swift",
"Deserialization/JsonApiDeserializer.swift",
"Deserialization/LinksDeserializer.swift",
"Deserialization/MetaDeserializer.swift",
"Deserialization/ResourceDeserializer.swift",
"Errors/IzzyError.swift",
"Helpers/Codable+Convenience.swift",
"Helpers/DictionaryExtensions.swift",
"Helpers/SwiftReflection.swift",
"Izzy.swift",
"ResourceMatcher/ResourceMatcher.swift",
"ResourceObjects/Identity.swift",
"ResourceObjects/JSONAPIError.swift",
"ResourceObjects/Link.swift",
"ResourceObjects/Nullable.swift",
"ResourceObjects/Resource.swift",
"ResourceObjects/SingleResourceJSON.swift",
"Resources/JSONAPIDocument.swift",
"Serialization/IzzySerializer.swift",
"Serialization/ResourceCollectionSerializer.swift",
"Serialization/SerializationValidator.swift",
"Serialization/Serializer.swift",
"Serialization/SingleResourceSerializer.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.