Build Information
Successful build of CoreJSON, reference 2.1.0 (d51bf4), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 14:16:12 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tomquist/CoreJSON.git
Reference: 2.1.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/tomquist/CoreJSON
* tag 2.1.0 -> FETCH_HEAD
HEAD is now at d51bf48 Add conformance to Codable
Cloned https://github.com/tomquist/CoreJSON.git
Revision (git rev-parse @):
d51bf4881192a9325a856d81c2e2fc7a5d25bc2d
SUCCESS checkout https://github.com/tomquist/CoreJSON.git at 2.1.0
========================================
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",
"traits": [
"default"
],
"dependencies": [
{
"identity": "corejson",
"name": "CoreJSON",
"url": "https://github.com/tomquist/CoreJSON.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/CoreJSON",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/tomquist/CoreJSON.git
[1/178] Fetching corejson
Fetched https://github.com/tomquist/CoreJSON.git from cache (0.74s)
Creating working copy for https://github.com/tomquist/CoreJSON.git
Working copy of https://github.com/tomquist/CoreJSON.git resolved at 2.1.0 (d51bf48)
warning: '.resolve-product-dependencies': dependency 'corejson' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/tomquist/CoreJSON.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/8] Write sources
[7/8] Write swift-version--6988338F2F200930.txt
[9/10] Compiling CoreJSON JSON.swift
[10/10] Emitting module CoreJSON
[11/23] Compiling CoreJSONLiterals JSONLiterals.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:28:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
26 | #endif
27 |
28 | extension JSON: ExpressibleByIntegerLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
29 | public init(integerLiteral value: Int) {
30 | self = .number(.int(value))
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:34:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByNilLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
32 | }
33 |
34 | extension JSON: ExpressibleByNilLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByNilLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 | public init(nilLiteral: ()) {
36 | self = .null
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:40:1: warning: extension declares a conformance of imported type 'JSON' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
38 | }
39 |
40 | extension JSON: ExpressibleByStringLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
41 | public init(unicodeScalarLiteral value: String) {
42 | self = .string(value)
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:52:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
50 | }
51 |
52 | extension JSON: ExpressibleByFloatLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
53 | public init(floatLiteral value: Double) {
54 | self = .number(.double(value))
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:58:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
56 | }
57 |
58 | extension JSON: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
59 | public init(booleanLiteral value: Bool) {
60 | self = .bool(value)
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:64:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
62 | }
63 |
64 | extension JSON: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
65 | public init(arrayLiteral elements: JSON...) {
66 | self = .array(elements)
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:70:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
68 | }
69 |
70 | extension JSON: ExpressibleByDictionaryLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
71 | public init(dictionaryLiteral elements: (String, JSON)...) {
72 | self = .object(elements.reduce([:]) { (dict, tuple) -> [String: JSON] in
[12/23] Emitting module CoreJSONLiterals
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:28:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
26 | #endif
27 |
28 | extension JSON: ExpressibleByIntegerLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByIntegerLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
29 | public init(integerLiteral value: Int) {
30 | self = .number(.int(value))
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:34:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByNilLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
32 | }
33 |
34 | extension JSON: ExpressibleByNilLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByNilLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
35 | public init(nilLiteral: ()) {
36 | self = .null
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:40:1: warning: extension declares a conformance of imported type 'JSON' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
38 | }
39 |
40 | extension JSON: ExpressibleByStringLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
41 | public init(unicodeScalarLiteral value: String) {
42 | self = .string(value)
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:52:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
50 | }
51 |
52 | extension JSON: ExpressibleByFloatLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByFloatLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
53 | public init(floatLiteral value: Double) {
54 | self = .number(.double(value))
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:58:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
56 | }
57 |
58 | extension JSON: ExpressibleByBooleanLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByBooleanLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
59 | public init(booleanLiteral value: Bool) {
60 | self = .bool(value)
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:64:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
62 | }
63 |
64 | extension JSON: ExpressibleByArrayLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByArrayLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
65 | public init(arrayLiteral elements: JSON...) {
66 | self = .array(elements)
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONLiterals/JSONLiterals.swift:70:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
68 | }
69 |
70 | extension JSON: ExpressibleByDictionaryLiteral {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'ExpressibleByDictionaryLiteral'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
71 | public init(dictionaryLiteral elements: (String, JSON)...) {
72 | self = .object(elements.reduce([:]) { (dict, tuple) -> [String: JSON] in
[13/23] Compiling CoreJSONSubscript JSONSubscript.swift
[14/23] Emitting module CoreJSONSubscript
[15/23] Compiling CoreJSONCodable JSONCodable.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:27:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
25 | import CoreJSON
26 |
27 | extension JSON: Encodable {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 |
29 | public func encode(to encoder: Encoder) throws {
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:42:1: warning: extension declares a conformance of imported type 'JSONNumber' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
40 | }
41 |
42 | extension JSONNumber: Encodable {
| |- warning: extension declares a conformance of imported type 'JSONNumber' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
43 |
44 | public func encode(to encoder: Encoder) throws {
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:54:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
52 | }
53 |
54 | extension JSON: Decodable {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
55 |
56 | public init(from decoder: Decoder) throws {
[16/23] Emitting module CoreJSONCodable
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:27:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
25 | import CoreJSON
26 |
27 | extension JSON: Encodable {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
28 |
29 | public func encode(to encoder: Encoder) throws {
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:42:1: warning: extension declares a conformance of imported type 'JSONNumber' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
40 | }
41 |
42 | extension JSONNumber: Encodable {
| |- warning: extension declares a conformance of imported type 'JSONNumber' to imported protocol 'Encodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
43 |
44 | public func encode(to encoder: Encoder) throws {
/Users/admin/builder/spi-builder-workspace/Sources/CoreJSONCodable/JSONCodable.swift:54:1: warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
52 | }
53 |
54 | extension JSON: Decodable {
| |- warning: extension declares a conformance of imported type 'JSON' to imported protocol 'Decodable'; this will not behave correctly if the owners of 'CoreJSON' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
55 |
56 | public init(from decoder: Decoder) throws {
[17/23] Compiling CoreJSONConvenience JSONConvenience.swift
[18/23] Emitting module CoreJSONConvenience
[19/23] Compiling CoreJSONFoundation ToFoundation.swift
[20/23] Emitting module CoreJSONFoundation
[21/23] Compiling CoreJSONFoundation FromFoundation.swift
[22/23] Emitting module CoreJSONPointer
[23/23] Compiling CoreJSONPointer JSONPointer.swift
Build complete! (4.01s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CoreJSON",
"name" : "CoreJSON",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CoreJSON",
"targets" : [
"CoreJSON",
"CoreJSONConvenience",
"CoreJSONFoundation",
"CoreJSONLiterals",
"CoreJSONSubscript",
"CoreJSONPointer",
"CoreJSONCodable"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CoreJSONTests",
"module_type" : "SwiftTarget",
"name" : "CoreJSONTests",
"path" : "Tests/CoreJSONTests",
"sources" : [
"CoreJSONTests.swift"
],
"target_dependencies" : [
"CoreJSON"
],
"type" : "test"
},
{
"c99name" : "CoreJSONSubscriptTests",
"module_type" : "SwiftTarget",
"name" : "CoreJSONSubscriptTests",
"path" : "Tests/CoreJSONSubscriptTests",
"sources" : [
"CoreJSONSubscriptTests.swift"
],
"target_dependencies" : [
"CoreJSON",
"CoreJSONSubscript",
"CoreJSONConvenience",
"CoreJSONLiterals"
],
"type" : "test"
},
{
"c99name" : "CoreJSONSubscript",
"module_type" : "SwiftTarget",
"name" : "CoreJSONSubscript",
"path" : "Sources/CoreJSONSubscript",
"product_memberships" : [
"CoreJSON"
],
"sources" : [
"JSONSubscript.swift"
],
"target_dependencies" : [
"CoreJSON"
],
"type" : "library"
},
{
"c99name" : "CoreJSONPointerTests",
"module_type" : "SwiftTarget",
"name" : "CoreJSONPointerTests",
"path" : "Tests/CoreJSONPointerTests",
"sources" : [
"CoreJSONPointerTests.swift"
],
"target_dependencies" : [
"CoreJSON",
"CoreJSONPointer"
],
"type" : "test"
},
{
"c99name" : "CoreJSONPointer",
"module_type" : "SwiftTarget",
"name" : "CoreJSONPointer",
"path" : "Sources/CoreJSONPointer",
"product_memberships" : [
"CoreJSON"
],
"sources" : [
"JSONPointer.swift"
],
"target_dependencies" : [
"CoreJSON"
],
"type" : "library"
},
{
"c99name" : "CoreJSONLiteralsTests",
"module_type" : "SwiftTarget",
"name" : "CoreJSONLiteralsTests",
"path" : "Tests/CoreJSONLiteralsTests",
"sources" : [
"CoreJSONLiteralsTests.swift"
],
"target_dependencies" : [
"CoreJSON",
"CoreJSONLiterals"
],
"type" : "test"
},
{
"c99name" : "CoreJSONLiterals",
"module_type" : "SwiftTarget",
"name" : "CoreJSONLiterals",
"path" : "Sources/CoreJSONLiterals",
"product_memberships" : [
"CoreJSON"
],
"sources" : [
"JSONLiterals.swift"
],
"target_dependencies" : [
"CoreJSON"
],
"type" : "library"
},
{
"c99name" : "CoreJSONFoundationTests",
"module_type" : "SwiftTarget",
"name" : "CoreJSONFoundationTests",
"path" : "Tests/CoreJSONFoundationTests",
"sources" : [
"CoreJSONFromFoundationTests.swift",
"CoreJSONToFoundationTests.swift"
],
"target_dependencies" : [
"CoreJSON",
"CoreJSONFoundation"
],
"type" : "test"
},
{
"c99name" : "CoreJSONFoundation",
"module_type" : "SwiftTarget",
"name" : "CoreJSONFoundation",
"path" : "Sources/CoreJSONFoundation",
"product_memberships" : [
"CoreJSON"
],
"sources" : [
"FromFoundation.swift",
"ToFoundation.swift"
],
"target_dependencies" : [
"CoreJSON"
],
"type" : "library"
},
{
"c99name" : "CoreJSONConvenienceTests",
"module_type" : "SwiftTarget",
"name" : "CoreJSONConvenienceTests",
"path" : "Tests/CoreJSONConvenienceTests",
"sources" : [
"CoreJSONConvenienceTests.swift"
],
"target_dependencies" : [
"CoreJSON",
"CoreJSONConvenience"
],
"type" : "test"
},
{
"c99name" : "CoreJSONConvenience",
"module_type" : "SwiftTarget",
"name" : "CoreJSONConvenience",
"path" : "Sources/CoreJSONConvenience",
"product_memberships" : [
"CoreJSON"
],
"sources" : [
"JSONConvenience.swift"
],
"target_dependencies" : [
"CoreJSON"
],
"type" : "library"
},
{
"c99name" : "CoreJSONCodableTests",
"module_type" : "SwiftTarget",
"name" : "CoreJSONCodableTests",
"path" : "Tests/CoreJSONCodableTests",
"sources" : [
"CoreJSONCodableTests.swift"
],
"target_dependencies" : [
"CoreJSON",
"CoreJSONCodable"
],
"type" : "test"
},
{
"c99name" : "CoreJSONCodable",
"module_type" : "SwiftTarget",
"name" : "CoreJSONCodable",
"path" : "Sources/CoreJSONCodable",
"product_memberships" : [
"CoreJSON"
],
"sources" : [
"JSONCodable.swift"
],
"target_dependencies" : [
"CoreJSON"
],
"type" : "library"
},
{
"c99name" : "CoreJSON",
"module_type" : "SwiftTarget",
"name" : "CoreJSON",
"path" : "Sources/CoreJSON",
"product_memberships" : [
"CoreJSON"
],
"sources" : [
"JSON.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.