The Swift Package Index logo.Swift Package Index

Build Information

Successful build of IkigaJSON, reference master (c0d8aa), with Swift 6.2 for macOS (SPM) on 27 Apr 2026 05:59:35 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/orlandos-nl/swift-json.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/orlandos-nl/swift-json
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at c0d8aa3 Merge pull request #62 from orlandos-nl/copilot/make-json-token-string-public
Cloned https://github.com/orlandos-nl/swift-json.git
Revision (git rev-parse @):
c0d8aa3eae43e1b5565d5b6b4e05e18664f1047e
SUCCESS checkout https://github.com/orlandos-nl/swift-json.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/orlandos-nl/swift-json.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64
Building for debugging...
[0/29] Write sources
[8/29] Copying PrivacyInfo.xcprivacy
[9/29] Write sources
[16/29] Compiling CNIOWindows WSAStartup.c
[16/29] Compiling CNIOWindows shim.c
[18/29] Compiling CNIOWASI CNIOWASI.c
[19/29] Write sources
[20/29] Compiling CNIOLinux shim.c
[21/29] Compiling CNIOLinux liburing_shims.c
[22/29] Compiling CNIOOpenBSD shim.c
[23/29] Write swift-version--3CB7CFEC50E0D141.txt
[24/61] Compiling _AtomicsShims.c
[25/61] Compiling CNIOPosix event_loop_id.c
[26/80] Compiling CNIODarwin shim.c
[28/80] Compiling Atomics ManagedAtomicLazyReference.swift
[29/80] Compiling Atomics UnsafeAtomic.swift
[30/81] Emitting module InternalCollectionsUtilities
[31/81] Compiling Atomics AtomicValue.swift
[32/81] Compiling Atomics AtomicMemoryOrderings.swift
[33/81] Compiling Atomics AtomicReference.swift
[34/81] Compiling Atomics AtomicStorage.swift
[35/81] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[36/81] Compiling Atomics UnsafeAtomicLazyReference.swift
[37/81] Compiling Atomics IntegerOperations.swift
[38/81] Compiling Atomics PointerConformances.swift
[39/81] Compiling Atomics Primitives.native.swift
[40/81] Compiling Atomics OptionalRawRepresentable.swift
[41/81] Compiling Atomics RawRepresentable.swift
[42/81] Compiling _JSONCore JSONTokenizer.swift
[43/81] Compiling _JSONCore FastScanner.swift
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:20:8: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 18 |   let alignedStart = (i + 7) & ~7
 19 |   while i < min(alignedStart, count) {
 20 |     if baseAddress[i] == target {
    |        |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |        `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 21 |       return i
 22 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:28:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 26 |   // Process 8 bytes at a time
 27 |   while i &+ 8 <= count {
 28 |     let word = baseAddress.advanced(by: i).withMemoryRebound(to: UInt64.self, capacity: 1) { $0.pointee }
    |                |           |               |                                               `- note: argument #2 in call to instance method 'withMemoryRebound' has unsafe type '(UnsafePointer<UInt64>) -> UInt64'
    |                |           |               `- note: reference to instance method 'withMemoryRebound(to:capacity:_:)' involves unsafe type 'UnsafePointer<UInt64>'
    |                |           |- note: argument 'self' in call to instance method 'withMemoryRebound' has unsafe type 'UnsafePointer<UInt8>'
    |                |           |- note: reference to instance method 'advanced(by:)' involves unsafe type 'UnsafePointer<UInt8>'
    |                |           `- note: reference to unsafe type 'UnsafePointer<UInt8>'
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                |- note: argument 'self' in call to instance method 'advanced' has unsafe type 'UnsafePointer<UInt8>'
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 29 |
 30 |     // XOR with target broadcast to all bytes - matching bytes become 0x00
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:28:94: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 26 |   // Process 8 bytes at a time
 27 |   while i &+ 8 <= count {
 28 |     let word = baseAddress.advanced(by: i).withMemoryRebound(to: UInt64.self, capacity: 1) { $0.pointee }
    |                                                                                              |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                                                                                              `- note: reference to parameter '$0' involves unsafe type 'UnsafePointer<UInt64>'
 29 |
 30 |     // XOR with target broadcast to all bytes - matching bytes become 0x00
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:48:8: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 46 |   // Process remaining bytes
 47 |   while i < count {
 48 |     if baseAddress[i] == target {
    |        |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |        `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 49 |       return i
 50 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:74:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 72 |   let alignedStart = (i + 7) & ~7
 73 |   while i < min(alignedStart, count) {
 74 |     let byte = baseAddress[i]
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 75 |     if byte == target1 || byte == target2 {
 76 |       return i
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:83:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 81 |   // Process 8 bytes at a time
 82 |   while i &+ 8 <= count {
 83 |     let word = baseAddress.advanced(by: i).withMemoryRebound(to: UInt64.self, capacity: 1) { $0.pointee }
    |                |           |               |                                               `- note: argument #2 in call to instance method 'withMemoryRebound' has unsafe type '(UnsafePointer<UInt64>) -> UInt64'
    |                |           |               `- note: reference to instance method 'withMemoryRebound(to:capacity:_:)' involves unsafe type 'UnsafePointer<UInt64>'
    |                |           |- note: argument 'self' in call to instance method 'withMemoryRebound' has unsafe type 'UnsafePointer<UInt8>'
    |                |           |- note: reference to instance method 'advanced(by:)' involves unsafe type 'UnsafePointer<UInt8>'
    |                |           `- note: reference to unsafe type 'UnsafePointer<UInt8>'
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                |- note: argument 'self' in call to instance method 'advanced' has unsafe type 'UnsafePointer<UInt8>'
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 84 |
 85 |     // Check for target1
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:83:94: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 81 |   // Process 8 bytes at a time
 82 |   while i &+ 8 <= count {
 83 |     let word = baseAddress.advanced(by: i).withMemoryRebound(to: UInt64.self, capacity: 1) { $0.pointee }
    |                                                                                              |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                                                                                              `- note: reference to parameter '$0' involves unsafe type 'UnsafePointer<UInt64>'
 84 |
 85 |     // Check for target1
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:105:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
103 |   // Process remaining bytes
104 |   while i < count {
105 |     let byte = baseAddress[i]
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
106 |     if byte == target1 || byte == target2 {
107 |       return i
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:147:9: warning: initialization of variable 'foundNonWhitespace' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
145 |   while i &+ 8 <= count {
146 |     // Check if any of the 8 bytes is non-whitespace
147 |     var foundNonWhitespace = false
    |         `- warning: initialization of variable 'foundNonWhitespace' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
148 |     for j in 0..<8 {
149 |       let byte = baseAddress[i &+ j]
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:132:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
130 |   let alignedStart = (i + 7) & ~7
131 |   while i < min(alignedStart, count) {
132 |     let byte = baseAddress[i]
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
133 |     if byte != 0x20 && byte != 0x09 && byte != 0x0A && byte != 0x0D {
134 |       return i - offset
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:149:18: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
147 |     var foundNonWhitespace = false
148 |     for j in 0..<8 {
149 |       let byte = baseAddress[i &+ j]
    |                  |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                  `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
150 |       if byte != 0x20 && byte != 0x09 && byte != 0x0A && byte != 0x0D {
151 |         return (i &+ j) - offset
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:159:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
157 |   // Process remaining bytes
158 |   while i < count {
159 |     let byte = baseAddress[i]
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
160 |     if byte != 0x20 && byte != 0x09 && byte != 0x0A && byte != 0x0D {
161 |       return i - offset
[#StrictMemorySafety]: <https://docs.swift.org/compiler/documentation/diagnostics/strict-memory-safety>
[44/81] Compiling _JSONCore JSONTokenizerDestination.swift
[49/81] Compiling _JSONCore Errors.swift
[50/81] Compiling _JSONCore Bytes.swift
[51/81] Compiling _JSONCore JSONParser+Parsing.swift
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:259:20: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
257 |       let alignedStart = (i + 7) & ~7
258 |       while i < min(alignedStart, searchEnd) {
259 |         let byte = buffer[i]
    |                    |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                    `- note: reference to parameter 'buffer' involves unsafe type 'UnsafeBufferPointer<UInt8>'
260 |         if byte == .quote {
261 |           var escaped = false
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:265:18: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
263 |             var backwardsOffset = i &- 1
264 |             while backwardsOffset >= searchStart &- 1 {
265 |               if buffer[backwardsOffset] == .backslash {
    |                  |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                  `- note: reference to parameter 'buffer' involves unsafe type 'UnsafeBufferPointer<UInt8>'
266 |                 escaped = !escaped
267 |                 backwardsOffset &-= 1
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:284:113: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
282 |       // Process 8 bytes at a time
283 |       while i &+ 8 <= searchEnd {
284 |         let word = unsafe buffer.baseAddress!.advanced(by: i).withMemoryRebound(to: UInt64.self, capacity: 1) { $0.pointee }
    |                                                                                                                 |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                                                                                                                 `- note: reference to parameter '$0' involves unsafe type 'UnsafePointer<UInt64>'
285 |
286 |         // Check for quote
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:299:24: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
297 |           // Found something - process bytes one by one to handle escaping correctly
298 |           for j in 0..<8 {
299 |             let byte = buffer[i &+ j]
    |                        |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                        `- note: reference to parameter 'buffer' involves unsafe type 'UnsafeBufferPointer<UInt8>'
300 |             if byte == .quote {
301 |               // Check if escaped
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:306:22: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
304 |                 var backwardsOffset = (i &+ j) &- 1
305 |                 while backwardsOffset >= searchStart &- 1 {
306 |                   if buffer[backwardsOffset] == .backslash {
    |                      |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                      `- note: reference to parameter 'buffer' involves unsafe type 'UnsafeBufferPointer<UInt8>'
307 |                     escaped = !escaped
308 |                     backwardsOffset &-= 1
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:327:20: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
325 |       // Process remaining bytes
326 |       while i < searchEnd {
327 |         let byte = buffer[i]
    |                    |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                    `- note: reference to parameter 'buffer' involves unsafe type 'UnsafeBufferPointer<UInt8>'
328 |         if byte == .quote {
329 |           // Check if escaped
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:334:18: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
332 |             var backwardsOffset = i &- 1
333 |             while backwardsOffset >= searchStart &- 1 {
334 |               if buffer[backwardsOffset] == .backslash {
    |                  |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                  `- note: reference to parameter 'buffer' involves unsafe type 'UnsafeBufferPointer<UInt8>'
335 |                 escaped = !escaped
336 |                 backwardsOffset &-= 1
[#StrictMemorySafety]: <https://docs.swift.org/compiler/documentation/diagnostics/strict-memory-safety>
[52/81] Emitting module _JSONCore
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:20:8: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 18 |   let alignedStart = (i + 7) & ~7
 19 |   while i < min(alignedStart, count) {
 20 |     if baseAddress[i] == target {
    |        |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |        `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 21 |       return i
 22 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:28:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 26 |   // Process 8 bytes at a time
 27 |   while i &+ 8 <= count {
 28 |     let word = baseAddress.advanced(by: i).withMemoryRebound(to: UInt64.self, capacity: 1) { $0.pointee }
    |                |           |               |                                               `- note: argument #2 in call to instance method 'withMemoryRebound' has unsafe type '(UnsafePointer<UInt64>) -> UInt64'
    |                |           |               `- note: reference to instance method 'withMemoryRebound(to:capacity:_:)' involves unsafe type 'UnsafePointer<UInt64>'
    |                |           |- note: argument 'self' in call to instance method 'withMemoryRebound' has unsafe type 'UnsafePointer<UInt8>'
    |                |           |- note: reference to instance method 'advanced(by:)' involves unsafe type 'UnsafePointer<UInt8>'
    |                |           `- note: reference to unsafe type 'UnsafePointer<UInt8>'
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                |- note: argument 'self' in call to instance method 'advanced' has unsafe type 'UnsafePointer<UInt8>'
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 29 |
 30 |     // XOR with target broadcast to all bytes - matching bytes become 0x00
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:28:94: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 26 |   // Process 8 bytes at a time
 27 |   while i &+ 8 <= count {
 28 |     let word = baseAddress.advanced(by: i).withMemoryRebound(to: UInt64.self, capacity: 1) { $0.pointee }
    |                                                                                              |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                                                                                              `- note: reference to parameter '$0' involves unsafe type 'UnsafePointer<UInt64>'
 29 |
 30 |     // XOR with target broadcast to all bytes - matching bytes become 0x00
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:48:8: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 46 |   // Process remaining bytes
 47 |   while i < count {
 48 |     if baseAddress[i] == target {
    |        |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |        `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 49 |       return i
 50 |     }
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:74:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 72 |   let alignedStart = (i + 7) & ~7
 73 |   while i < min(alignedStart, count) {
 74 |     let byte = baseAddress[i]
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 75 |     if byte == target1 || byte == target2 {
 76 |       return i
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:83:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 81 |   // Process 8 bytes at a time
 82 |   while i &+ 8 <= count {
 83 |     let word = baseAddress.advanced(by: i).withMemoryRebound(to: UInt64.self, capacity: 1) { $0.pointee }
    |                |           |               |                                               `- note: argument #2 in call to instance method 'withMemoryRebound' has unsafe type '(UnsafePointer<UInt64>) -> UInt64'
    |                |           |               `- note: reference to instance method 'withMemoryRebound(to:capacity:_:)' involves unsafe type 'UnsafePointer<UInt64>'
    |                |           |- note: argument 'self' in call to instance method 'withMemoryRebound' has unsafe type 'UnsafePointer<UInt8>'
    |                |           |- note: reference to instance method 'advanced(by:)' involves unsafe type 'UnsafePointer<UInt8>'
    |                |           `- note: reference to unsafe type 'UnsafePointer<UInt8>'
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                |- note: argument 'self' in call to instance method 'advanced' has unsafe type 'UnsafePointer<UInt8>'
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
 84 |
 85 |     // Check for target1
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:83:94: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
 81 |   // Process 8 bytes at a time
 82 |   while i &+ 8 <= count {
 83 |     let word = baseAddress.advanced(by: i).withMemoryRebound(to: UInt64.self, capacity: 1) { $0.pointee }
    |                                                                                              |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                                                                                              `- note: reference to parameter '$0' involves unsafe type 'UnsafePointer<UInt64>'
 84 |
 85 |     // Check for target1
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:105:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
103 |   // Process remaining bytes
104 |   while i < count {
105 |     let byte = baseAddress[i]
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
106 |     if byte == target1 || byte == target2 {
107 |       return i
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:147:9: warning: initialization of variable 'foundNonWhitespace' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
145 |   while i &+ 8 <= count {
146 |     // Check if any of the 8 bytes is non-whitespace
147 |     var foundNonWhitespace = false
    |         `- warning: initialization of variable 'foundNonWhitespace' was never used; consider replacing with assignment to '_' or removing it [#no-usage]
148 |     for j in 0..<8 {
149 |       let byte = baseAddress[i &+ j]
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:132:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
130 |   let alignedStart = (i + 7) & ~7
131 |   while i < min(alignedStart, count) {
132 |     let byte = baseAddress[i]
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
133 |     if byte != 0x20 && byte != 0x09 && byte != 0x0A && byte != 0x0D {
134 |       return i - offset
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:149:18: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
147 |     var foundNonWhitespace = false
148 |     for j in 0..<8 {
149 |       let byte = baseAddress[i &+ j]
    |                  |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                  `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
150 |       if byte != 0x20 && byte != 0x09 && byte != 0x0A && byte != 0x0D {
151 |         return (i &+ j) - offset
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/SIMD/FastScanner.swift:159:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
157 |   // Process remaining bytes
158 |   while i < count {
159 |     let byte = baseAddress[i]
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                `- note: reference to let 'baseAddress' involves unsafe type 'UnsafePointer<UInt8>'
160 |     if byte != 0x20 && byte != 0x09 && byte != 0x0A && byte != 0x0D {
161 |       return i - offset
[#StrictMemorySafety]: <https://docs.swift.org/compiler/documentation/diagnostics/strict-memory-safety>
[53/82] Emitting module _NIOBase64
[54/82] Compiling _NIOBase64 Base64.swift
[55/82] Compiling Atomics AtomicBool.swift
[56/82] Compiling Atomics IntegerConformances.swift
[59/82] Compiling Atomics DoubleWord.swift
[60/82] Compiling Atomics ManagedAtomic.swift
[61/82] Compiling Atomics AtomicInteger.swift
[62/82] Compiling Atomics AtomicOptionalWrappable.swift
[63/82] Compiling _NIODataStructures PriorityQueue.swift
[64/82] Compiling _NIODataStructures Heap.swift
[65/82] Compiling _NIODataStructures _TinyArray.swift
[66/82] Emitting module _NIODataStructures
[69/82] Compiling Atomics Unmanaged extensions.swift
[70/116] Compiling ContainersPreview RandomAccessContainer.swift
[71/116] Compiling ContainersPreview RangeExpression2.swift
[72/116] Compiling ContainersPreview RangeReplaceableContainer.swift
[73/116] Compiling ContainersPreview Drain+Map.swift
[74/116] Compiling ContainersPreview ContainerIterator.swift
[75/116] Compiling ContainersPreview DynamicContainer.swift
[76/116] Compiling ContainersPreview MutableContainer.swift
[77/116] Compiling ContainersPreview PermutableContainer.swift
[78/116] Compiling ContainersPreview Drain+Reduce.swift
[79/116] Compiling ContainersPreview Drain.swift
[80/116] Compiling ContainersPreview Producer+Collect.swift
[81/116] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[82/116] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[83/116] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[84/116] Compiling ContainersPreview BorrowingSequence.swift
[85/119] Compiling ContainersPreview BidirectionalContainer.swift
[86/119] Compiling ContainersPreview Container+Filter.swift
[87/119] Compiling ContainersPreview Container+SpanwiseZip.swift
[88/119] Compiling ContainersPreview Container.swift
[89/119] Compiling ContainersPreview Producer.swift
[90/119] Compiling ContainersPreview Borrow.swift
[91/119] Compiling ContainersPreview Box.swift
[95/119] Compiling ContainersPreview Producer+Filter.swift
[98/119] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[99/119] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[102/119] Emitting module Atomics
[103/119] Emitting module ContainersPreview
[104/119] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[105/119] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[106/119] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[107/119] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[109/119] Compiling ContainersPreview Producer+Map.swift
[110/119] Compiling ContainersPreview Producer+Reduce.swift
[111/119] Compiling ContainersPreview OutputSpan+Extras.swift
[112/119] Compiling ContainersPreview TemporaryAllocation.swift
[115/119] Compiling ContainersPreview Inout.swift
[116/119] Compiling ContainersPreview InputSpan.swift
[117/119] Compiling ContainersPreview Shared.swift
[118/160] Compiling DequeModule UniqueDeque+Equatable.swift
[119/160] Compiling DequeModule UniqueDeque+Experimental.swift
[120/160] Compiling DequeModule UniqueDeque+Hashable.swift
[121/160] Compiling DequeModule UniqueDeque+Initializers.swift
[122/164] Compiling DequeModule UniqueDeque+Append.swift
[123/164] Compiling DequeModule UniqueDeque+Consumption.swift
[124/164] Compiling DequeModule UniqueDeque+Container.swift
[125/164] Compiling DequeModule UniqueDeque+Descriptions.swift
[126/164] Compiling DequeModule RigidDeque+Hashable.swift
[127/164] Compiling DequeModule RigidDeque+Initializers.swift
[128/164] Compiling DequeModule RigidDeque+Insertions.swift
[129/164] Compiling DequeModule RigidDeque+Prepend.swift
[130/164] Compiling DequeModule RigidDeque+Consumption.swift
[131/164] Compiling DequeModule RigidDeque+Container.swift
[132/164] Compiling DequeModule RigidDeque+Descriptions.swift
[133/164] Compiling DequeModule RigidDeque+Equatable.swift
[134/164] Compiling DequeModule RigidDeque+Experimental.swift
[135/164] Compiling DequeModule RigidDeque+Removals.swift
[136/164] Compiling DequeModule RigidDeque+Replacements.swift
[137/164] Compiling DequeModule RigidDeque+Testing.swift
[138/164] Compiling DequeModule RigidDeque.swift
[139/164] Compiling DequeModule UniqueDeque+Insertions.swift
[140/164] Compiling DequeModule UniqueDeque+Prepend.swift
[141/164] Compiling DequeModule UniqueDeque+Removals.swift
[142/164] Compiling DequeModule UniqueDeque+Replacements.swift
[143/164] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[144/164] Compiling DequeModule Deque+Extras.swift
[145/164] Compiling DequeModule Deque+Hashable.swift
[146/164] Compiling DequeModule Deque+Testing.swift
[147/164] Compiling DequeModule Deque._Storage.swift
[147/164] Compiling c-nioatomics.c
[149/164] Compiling DequeModule Deque+Codable.swift
[150/164] Compiling DequeModule Deque+Collection.swift
[151/164] Compiling DequeModule Deque+CustomReflectable.swift
[152/164] Compiling DequeModule Deque+Descriptions.swift
[153/164] Compiling DequeModule Deque+Equatable.swift
[154/164] Compiling DequeModule Deque._UnsafeHandle.swift
[155/164] Compiling DequeModule Deque.swift
[156/164] Compiling DequeModule _DequeBuffer.swift
[157/164] Compiling DequeModule _DequeBufferHeader.swift
[158/164] Compiling DequeModule RigidDeque+Append.swift
[158/164] Compiling c-atomics.c
[160/171] Compiling NIOConcurrencyHelpers lock.swift
[161/171] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[162/171] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[163/171] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[164/171] Compiling NIOConcurrencyHelpers NIOLock.swift
[165/171] Emitting module NIOConcurrencyHelpers
[166/171] Compiling NIOConcurrencyHelpers atomics.swift
[167/171] Compiling DequeModule UniqueDeque.swift
[168/171] Compiling DequeModule _DequeSlot.swift
[169/171] Compiling DequeModule _UnsafeDequeHandle.swift
[170/171] Compiling DequeModule _UnsafeDequeSegments.swift
[171/171] Emitting module DequeModule
[172/236] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[173/236] Compiling NIOCore NIOScheduledCallback.swift
[174/236] Compiling NIOCore NIOSendable.swift
[175/236] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[176/236] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[177/236] Compiling NIOCore RecvByteBufferAllocator.swift
[178/236] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[179/236] Compiling NIOCore IO.swift
[180/236] Compiling NIOCore IOData.swift
[181/236] Compiling NIOCore IPProtocol.swift
[182/236] Compiling NIOCore IntegerBitPacking.swift
[183/236] Compiling NIOCore IntegerTypes.swift
[184/236] Compiling NIOCore Interfaces.swift
[185/236] Compiling NIOCore Linux.swift
[186/243] Compiling NIOCore ConvenienceOptionSupport.swift
[187/243] Compiling NIOCore DeadChannel.swift
[188/243] Compiling NIOCore DispatchQueue+WithFuture.swift
[189/243] Compiling NIOCore EventLoop+Deprecated.swift
[190/243] Compiling NIOCore EventLoop+SerialExecutor.swift
[191/243] Compiling NIOCore EventLoop.swift
[192/243] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[193/243] Compiling NIOCore AddressedEnvelope.swift
[194/243] Compiling NIOCore AsyncAwaitSupport.swift
[195/243] Compiling NIOCore AsyncChannel.swift
[196/243] Compiling NIOCore AsyncChannelHandler.swift
[197/243] Compiling NIOCore AsyncChannelInboundStream.swift
[198/243] Compiling NIOCore AsyncChannelOutboundWriter.swift
[199/243] Compiling NIOCore NIOAsyncSequenceProducer.swift
[200/243] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[201/243] Compiling NIOCore EventLoopFuture+Deprecated.swift
[202/243] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[203/243] Compiling NIOCore EventLoopFuture.swift
[204/243] Compiling NIOCore FileDescriptor.swift
[205/243] Compiling NIOCore FileHandle.swift
[206/243] Compiling NIOCore FileRegion.swift
[207/243] Compiling NIOCore GlobalSingletons.swift
[208/243] Compiling NIOCore ChannelHandler.swift
[209/243] Compiling NIOCore ChannelHandlers.swift
[210/243] Compiling NIOCore ChannelInvoker.swift
[211/243] Compiling NIOCore ChannelOption.swift
[212/243] Compiling NIOCore ChannelPipeline.swift
[213/243] Compiling NIOCore CircularBuffer.swift
[214/243] Compiling NIOCore Codec.swift
[215/243] Compiling NIOCore SocketAddresses.swift
[216/243] Compiling NIOCore SocketOptionProvider.swift
[217/243] Compiling NIOCore SystemCallHelpers.swift
[218/243] Compiling NIOCore TimeAmount+Duration.swift
[219/243] Compiling NIOCore TypeAssistedChannelHandler.swift
[220/243] Compiling NIOCore UniversalBootstrapSupport.swift
[221/243] Compiling NIOCore Utilities.swift
[222/243] Compiling NIOCore MarkedCircularBuffer.swift
[223/243] Compiling NIOCore MulticastChannel.swift
[224/243] Compiling NIOCore NIOAny.swift
[225/243] Compiling NIOCore NIOCloseOnErrorHandler.swift
[226/243] Compiling NIOCore NIOCoreSendableMetatype.swift
[227/243] Compiling NIOCore NIODecodedAsyncSequence.swift
[228/243] Compiling NIOCore NIOLoopBound.swift
[229/243] Compiling NIOCore NIOAsyncWriter.swift
[230/243] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[231/243] Compiling NIOCore BSDSocketAPI.swift
[232/243] Compiling NIOCore ByteBuffer-aux.swift
[233/243] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[234/243] Compiling NIOCore ByteBuffer-conversions.swift
[235/243] Compiling NIOCore ByteBuffer-core.swift
[236/243] Compiling NIOCore ByteBuffer-hex.swift
[237/243] Compiling NIOCore ByteBuffer-int.swift
[238/243] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[239/243] Compiling NIOCore ByteBuffer-multi-int.swift
[240/243] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[241/243] Compiling NIOCore ByteBuffer-views.swift
[242/243] Compiling NIOCore Channel.swift
[243/243] Emitting module NIOCore
[244/302] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[245/302] Compiling NIOEmbedded AsyncTestingChannel.swift
[246/302] Compiling NIOEmbedded Embedded.swift
[247/302] Emitting module NIOEmbedded
[248/302] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[249/302] Compiling NIOPosix PosixSingletons.swift
[250/302] Compiling NIOPosix RawSocketBootstrap.swift
[251/302] Compiling NIOPosix Resolver.swift
[252/302] Compiling NIOPosix Selectable.swift
[253/302] Compiling NIOPosix SelectableChannel.swift
[254/307] Compiling NIOPosix SelectorWSAPoll.swift
[255/307] Compiling NIOPosix ServerSocket.swift
[256/307] Compiling NIOPosix Socket.swift
[257/307] Compiling NIOPosix SocketChannel.swift
[258/307] Compiling NIOPosix SocketProtocols.swift
[259/307] Compiling NIOFoundationEssentialsCompat Codable+ByteBuffer.swift
[260/307] Emitting module NIOFoundationEssentialsCompat
[261/307] Compiling NIOFoundationEssentialsCompat ByteBuffer-foundation.swift
[262/307] Compiling NIOPosix Utilities.swift
[263/307] Compiling NIOPosix VsockAddress.swift
[264/307] Compiling NIOPosix VsockChannelEvents.swift
[265/307] Compiling NIOPosix Windows.swift
[266/307] Compiling NIOPosix resource_bundle_accessor.swift
[267/307] Compiling NIOPosix Linux.swift
[268/307] Compiling NIOPosix LinuxCPUSet.swift
[269/307] Compiling NIOPosix LinuxUring.swift
[270/307] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[271/307] Compiling NIOPosix NIOPosixSendableMetatype.swift
[272/307] Compiling NIOPosix NIOThreadPool.swift
[273/307] Emitting module NIOPosix
[274/307] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[275/307] Compiling NIOPosix System.swift
[276/307] Compiling NIOPosix Thread.swift
[277/307] Compiling NIOPosix ThreadPosix.swift
[278/307] Compiling NIOPosix ThreadWindows.swift
[279/307] Compiling NIOPosix SelectableEventLoop.swift
[280/307] Compiling NIOPosix SelectorEpoll.swift
[281/307] Compiling NIOPosix SelectorGeneric.swift
[282/307] Compiling NIOPosix SelectorKqueue.swift
[283/307] Compiling NIOPosix SelectorUring.swift
[284/307] Compiling NIOPosix BaseSocketChannel.swift
[285/307] Compiling NIOPosix BaseStreamSocketChannel.swift
[286/307] Compiling NIOPosix Bootstrap.swift
[287/307] Compiling NIOPosix ControlMessage.swift
[288/307] Compiling NIOPosix DatagramVectorReadManager.swift
[289/307] Compiling NIOPosix Errors+Any.swift
[290/307] Compiling NIOPosix BSDSocketAPICommon.swift
[291/307] Compiling NIOPosix BSDSocketAPIPosix.swift
[292/307] Compiling NIOPosix BSDSocketAPIWindows.swift
[293/307] Compiling NIOPosix BaseSocket.swift
[294/307] Compiling NIOPosix BaseSocketChannel+AccessibleTransport.swift
[295/307] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[296/307] Compiling NIOPosix FileDescriptor.swift
[297/307] Compiling NIOPosix GetaddrinfoResolver.swift
[298/307] Compiling NIOPosix HappyEyeballs.swift
[299/307] Compiling NIOPosix IO.swift
[300/307] Compiling NIOPosix IntegerBitPacking.swift
[301/307] Compiling NIOPosix IntegerTypes.swift
[302/307] Compiling NIOPosix NonBlockingFileIO.swift
[303/307] Compiling NIOPosix PendingDatagramWritesManager.swift
[304/307] Compiling NIOPosix PendingWritesManager.swift
[305/307] Compiling NIOPosix PipeChannel.swift
[306/307] Compiling NIOPosix PipePair.swift
[307/307] Compiling NIOPosix Pool.swift
[308/309] Compiling NIO Exports.swift
[309/309] Emitting module NIO
[310/313] Emitting module NIOFoundationCompat
[311/313] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[312/313] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[313/313] Compiling NIOFoundationCompat Exports.swift
[314/326] Compiling _NIOJSON JSONObject.swift
[315/326] Compiling _NIOJSON JSONArray.swift
[316/327] Compiling _NIOJSON JSONValue.swift
[317/327] Compiling _NIOJSON Pointer+Helpers.swift
[318/327] Compiling _NIOJSON JSONDescription+Constants.swift
[319/327] Compiling _NIOJSON JSONDecoder.swift
[320/327] Compiling _NIOJSON JSONDecoderError.swift
[321/327] Compiling _NIOJSON StreamingJSONArrayDecoder.swift
[322/327] Compiling _NIOJSON StreamingJSONLinesDecoder.swift
[323/327] Compiling _NIOJSON Bounds.swift
/Users/admin/builder/spi-builder-workspace/Sources/_NIOJSON/Core/Bounds.swift:117:16: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
115 |       return unsafe span.withUnsafeBytes { buffer in
116 |         let slice = unsafe UnsafeRawBufferPointer(rebasing: buffer[startOffset..<(startOffset + byteLength)])
117 |         return String(decoding: slice, as: Unicode.UTF8.self)
    |                |                |- note: argument 'decoding' in call to initializer 'init' has unsafe type 'UnsafeRawBufferPointer'
    |                |                `- note: reference to let 'slice' involves unsafe type 'UnsafeRawBufferPointer'
    |                |- warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
    |                |- note: reference to initializer 'init(decoding:as:)' involves unsafe type 'UnsafeRawBufferPointer'
    |                |- note: reference to unsafe type 'UnsafeRawBufferPointer'
    |                `- note: '@unsafe' conformance of 'UnsafeRawBufferPointer' to protocol 'Collection' involves unsafe code
118 |       }
119 |     }
[#StrictMemorySafety]: <https://docs.swift.org/compiler/documentation/diagnostics/strict-memory-safety>
[324/327] Emitting module _NIOJSON
[325/327] Compiling _NIOJSON JSONEncoder.swift
[326/327] Compiling _NIOJSON NilValueCodingStrategy.swift
[327/327] Compiling _NIOJSON JSONDescription.swift
[328/329] Emitting module IkigaJSON
[329/329] Compiling IkigaJSON Exports.swift
Build complete! (30.35s)
Fetching https://github.com/apple/swift-nio.git
[1/83219] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (6.09s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.99.0 (7.01s)
Fetching https://github.com/apple/swift-atomics.git
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-collections.git
[1/1820] Fetching swift-atomics
[384/7421] Fetching swift-atomics, swift-system
[883/31107] Fetching swift-atomics, swift-system, swift-collections
Fetched https://github.com/apple/swift-atomics.git from cache (0.94s)
[4839/29287] Fetching swift-system, swift-collections
Fetched https://github.com/apple/swift-system.git from cache (1.99s)
Fetched https://github.com/apple/swift-collections.git from cache (1.99s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (2.61s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.60s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (0.66s)
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.4.1
Creating working copy for https://github.com/apple/swift-atomics.git
Working copy of https://github.com/apple/swift-atomics.git resolved at 1.3.0
Creating working copy for https://github.com/apple/swift-system.git
Working copy of https://github.com/apple/swift-system.git resolved at 1.6.4
Creating working copy for https://github.com/apple/swift-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.99.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    }
  ],
  "manifest_display_name" : "IkigaJSON",
  "name" : "IkigaJSON",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "IkigaJSON",
      "targets" : [
        "IkigaJSON"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "_NIOJSON",
      "module_type" : "SwiftTarget",
      "name" : "_NIOJSON",
      "path" : "Sources/_NIOJSON",
      "product_dependencies" : [
        "NIOCore",
        "NIOFoundationCompat"
      ],
      "product_memberships" : [
        "IkigaJSON"
      ],
      "sources" : [
        "Codable/JSONDecoder.swift",
        "Codable/JSONDecoderError.swift",
        "Codable/JSONEncoder.swift",
        "Codable/NilValueCodingStrategy.swift",
        "Codable/StreamingJSONArrayDecoder.swift",
        "Codable/StreamingJSONLinesDecoder.swift",
        "Core/Bounds.swift",
        "Core/JSONDescription+Constants.swift",
        "Core/JSONDescription.swift",
        "Pointer+Helpers.swift",
        "Types/JSONArray.swift",
        "Types/JSONObject.swift",
        "Types/JSONValue.swift"
      ],
      "target_dependencies" : [
        "_JSONCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "_JSONCore",
      "module_type" : "SwiftTarget",
      "name" : "_JSONCore",
      "path" : "Sources/_JSONCore",
      "product_memberships" : [
        "IkigaJSON"
      ],
      "sources" : [
        "Bytes.swift",
        "Errors.swift",
        "Parser/JSONParser+Parsing.swift",
        "Parser/JSONTokenizer.swift",
        "Parser/JSONTokenizerDestination.swift",
        "SIMD/FastScanner.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "IkigaJSONTests",
      "module_type" : "SwiftTarget",
      "name" : "IkigaJSONTests",
      "path" : "Tests/IkigaJSONTests",
      "sources" : [
        "JSONTests.swift"
      ],
      "target_dependencies" : [
        "IkigaJSON"
      ],
      "type" : "test"
    },
    {
      "c99name" : "IkigaJSON",
      "module_type" : "SwiftTarget",
      "name" : "IkigaJSON",
      "path" : "Sources/IkigaJSON",
      "product_dependencies" : [
        "NIOCore"
      ],
      "product_memberships" : [
        "IkigaJSON"
      ],
      "sources" : [
        "Exports.swift"
      ],
      "target_dependencies" : [
        "_JSONCore",
        "_NIOJSON"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.2.3"
}
Done.