Build Information
Successful build of IkigaJSON, reference 3.0.0-beta.1 (937ee3), with Swift 6.2 for macOS (SPM) on 18 Apr 2026 03:01:17 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.3.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/orlandos-nl/swift-json.git
Reference: 3.0.0-beta.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/orlandos-nl/swift-json
* tag 3.0.0-beta.1 -> FETCH_HEAD
HEAD is now at 937ee3b Disable the Windows CI
Cloned https://github.com/orlandos-nl/swift-json.git
Revision (git rev-parse @):
937ee3b14b34688787e4549de026b4292fddf6f4
SUCCESS checkout https://github.com/orlandos-nl/swift-json.git at 3.0.0-beta.1
========================================
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/28] Write sources
[6/28] Copying PrivacyInfo.xcprivacy
[11/28] Write sources
[15/28] Compiling CNIOWindows shim.c
[15/28] Compiling CNIOWindows WSAStartup.c
[17/28] Compiling CNIOWASI CNIOWASI.c
[17/28] Write sources
[19/28] Compiling CNIOLinux liburing_shims.c
[20/28] Compiling CNIOOpenBSD shim.c
[21/28] Compiling CNIOLinux shim.c
[22/28] Write swift-version--3CB7CFEC50E0D141.txt
[23/60] Compiling _AtomicsShims.c
[24/60] Compiling CNIOPosix event_loop_id.c
[25/79] Compiling CNIODarwin shim.c
[27/79] Emitting module InternalCollectionsUtilities
[28/79] Compiling Atomics DoubleWord.swift
[29/79] Compiling Atomics ManagedAtomic.swift
[30/80] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[31/80] Compiling Atomics UnsafeAtomicLazyReference.swift
[32/80] Compiling Atomics IntegerOperations.swift
[33/80] Compiling _NIODataStructures _TinyArray.swift
[34/80] Compiling Atomics PointerConformances.swift
[35/80] Compiling Atomics Primitives.native.swift
[36/80] Compiling Atomics AtomicValue.swift
[37/80] Compiling Atomics AtomicMemoryOrderings.swift
[38/80] 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>
[39/80] Compiling _JSONCore JSONTokenizerDestination.swift
[42/80] Compiling Atomics ManagedAtomicLazyReference.swift
[43/80] Compiling Atomics UnsafeAtomic.swift
[46/81] Compiling _JSONCore Errors.swift
[47/81] Compiling _JSONCore JSONTokenizer.swift
[48/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 | // Found unescaped quote - string ends here
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:271:113: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
269 | // Process 8 bytes at a time
270 | while i &+ 8 <= searchEnd {
271 | 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>'
272 |
273 | // Check for quote
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:286:24: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
284 | // Found something - process bytes one by one to handle escaping correctly
285 | for j in 0..<8 {
286 | 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>'
287 | if byte == .quote {
288 | // Check if escaped
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:293:22: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
291 | var backwardsOffset = (i &+ j) &- 1
292 | while backwardsOffset >= searchStart &- 1 {
293 | 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>'
294 | escaped = !escaped
295 | backwardsOffset &-= 1
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:314:20: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
312 | // Process remaining bytes
313 | while i < searchEnd {
314 | 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>'
315 | if byte == .quote {
316 | // Check if escaped
/Users/admin/builder/spi-builder-workspace/Sources/_JSONCore/Parser/JSONParser+Parsing.swift:321:18: warning: expression uses unsafe constructs but is not marked with 'unsafe' [#StrictMemorySafety]
319 | var backwardsOffset = i &- 1
320 | while backwardsOffset >= searchStart &- 1 {
321 | 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>'
322 | escaped = !escaped
323 | backwardsOffset &-= 1
[#StrictMemorySafety]: <https://docs.swift.org/compiler/documentation/diagnostics/strict-memory-safety>
[49/81] Compiling _JSONCore Bytes.swift
[50/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>
[51/81] Compiling Atomics AtomicReference.swift
[52/81] Compiling Atomics AtomicStorage.swift
[53/81] Compiling Atomics AtomicInteger.swift
[54/81] Compiling Atomics AtomicOptionalWrappable.swift
[55/81] Compiling _NIOBase64 Base64.swift
[56/81] Emitting module _NIOBase64
[57/81] Compiling Atomics AtomicBool.swift
[58/81] Compiling Atomics IntegerConformances.swift
[59/81] Compiling Atomics OptionalRawRepresentable.swift
[60/81] Compiling Atomics RawRepresentable.swift
[65/81] Compiling Atomics Unmanaged extensions.swift
[66/81] Compiling _NIODataStructures PriorityQueue.swift
[67/81] Emitting module _NIODataStructures
[68/81] Compiling _NIODataStructures Heap.swift
[69/115] Compiling ContainersPreview RandomAccessContainer.swift
[70/115] Compiling ContainersPreview RangeExpression2.swift
[71/115] Compiling ContainersPreview RangeReplaceableContainer.swift
[72/115] Compiling ContainersPreview Drain+Map.swift
[73/118] Compiling ContainersPreview ContainerIterator.swift
[74/118] Compiling ContainersPreview DynamicContainer.swift
[75/118] Compiling ContainersPreview MutableContainer.swift
[76/118] Compiling ContainersPreview PermutableContainer.swift
[77/118] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[78/118] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[79/118] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[80/118] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[81/118] Compiling ContainersPreview Producer+Filter.swift
[82/118] Compiling ContainersPreview Producer+Map.swift
[83/118] Compiling ContainersPreview Producer+Reduce.swift
[84/118] Compiling ContainersPreview Drain+Reduce.swift
[85/118] Compiling ContainersPreview Drain.swift
[86/118] Compiling ContainersPreview Producer+Collect.swift
[87/118] Emitting module ContainersPreview
[88/118] Compiling ContainersPreview Inout.swift
[89/118] Compiling ContainersPreview InputSpan.swift
[90/118] Compiling ContainersPreview Shared.swift
[91/118] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[92/118] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[93/118] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[94/118] Compiling ContainersPreview BorrowingSequence.swift
[95/118] Compiling ContainersPreview Producer.swift
[96/118] Compiling ContainersPreview Borrow.swift
[97/118] Compiling ContainersPreview Box.swift
[98/118] Compiling ContainersPreview BidirectionalContainer.swift
[99/118] Compiling ContainersPreview Container+Filter.swift
[100/118] Compiling ContainersPreview Container+SpanwiseZip.swift
[101/118] Compiling ContainersPreview Container.swift
[102/118] Compiling ContainersPreview OutputSpan+Extras.swift
[103/118] Compiling ContainersPreview TemporaryAllocation.swift
[104/118] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[105/118] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[116/118] Emitting module Atomics
[117/159] Compiling DequeModule RigidDeque+Consumption.swift
[118/159] Compiling DequeModule RigidDeque+Container.swift
[119/159] Compiling DequeModule RigidDeque+Descriptions.swift
[120/159] Compiling DequeModule RigidDeque+Equatable.swift
[121/159] Compiling DequeModule RigidDeque+Experimental.swift
[122/163] Compiling DequeModule RigidDeque+Hashable.swift
[123/163] Compiling DequeModule RigidDeque+Initializers.swift
[124/163] Compiling DequeModule RigidDeque+Insertions.swift
[125/163] Compiling DequeModule RigidDeque+Prepend.swift
[126/163] Compiling DequeModule UniqueDeque+Equatable.swift
[127/163] Compiling DequeModule UniqueDeque+Experimental.swift
[128/163] Compiling DequeModule UniqueDeque+Hashable.swift
[129/163] Compiling DequeModule UniqueDeque+Initializers.swift
[130/163] Compiling DequeModule UniqueDeque+Insertions.swift
[131/163] Compiling DequeModule UniqueDeque+Prepend.swift
[132/163] Compiling DequeModule UniqueDeque+Removals.swift
[133/163] Compiling DequeModule UniqueDeque+Replacements.swift
[134/163] Compiling DequeModule RigidDeque+Removals.swift
[135/163] Compiling DequeModule RigidDeque+Replacements.swift
[136/163] Compiling DequeModule RigidDeque+Testing.swift
[137/163] Compiling DequeModule RigidDeque.swift
[138/163] Compiling DequeModule UniqueDeque+Append.swift
[139/163] Compiling DequeModule UniqueDeque+Consumption.swift
[140/163] Compiling DequeModule UniqueDeque+Container.swift
[141/163] Compiling DequeModule UniqueDeque+Descriptions.swift
[142/163] Compiling DequeModule Deque._UnsafeHandle.swift
[143/163] Compiling DequeModule Deque.swift
[144/163] Compiling DequeModule _DequeBuffer.swift
[145/163] Compiling DequeModule _DequeBufferHeader.swift
[146/163] Compiling DequeModule RigidDeque+Append.swift
[147/163] Compiling DequeModule Deque+Codable.swift
[148/163] Compiling DequeModule Deque+Collection.swift
[149/163] Compiling DequeModule Deque+CustomReflectable.swift
[150/163] Compiling DequeModule Deque+Descriptions.swift
[151/163] Compiling DequeModule Deque+Equatable.swift
[151/163] Compiling c-nioatomics.c
[152/163] Compiling c-atomics.c
[154/170] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[155/170] Compiling NIOConcurrencyHelpers lock.swift
[156/170] Emitting module NIOConcurrencyHelpers
[157/170] Compiling NIOConcurrencyHelpers NIOLock.swift
[158/170] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[159/170] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[160/170] Compiling NIOConcurrencyHelpers atomics.swift
[161/170] Compiling DequeModule UniqueDeque.swift
[162/170] Compiling DequeModule _DequeSlot.swift
[163/170] Compiling DequeModule _UnsafeDequeHandle.swift
[164/170] Compiling DequeModule _UnsafeDequeSegments.swift
[165/170] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[166/170] Compiling DequeModule Deque+Extras.swift
[167/170] Compiling DequeModule Deque+Hashable.swift
[168/170] Compiling DequeModule Deque+Testing.swift
[169/170] Compiling DequeModule Deque._Storage.swift
[170/170] Emitting module DequeModule
[171/235] Compiling NIOCore MarkedCircularBuffer.swift
[172/235] Compiling NIOCore MulticastChannel.swift
[173/235] Compiling NIOCore NIOAny.swift
[174/235] Compiling NIOCore NIOCloseOnErrorHandler.swift
[175/235] Compiling NIOCore NIOCoreSendableMetatype.swift
[176/235] Compiling NIOCore NIODecodedAsyncSequence.swift
[177/235] Compiling NIOCore NIOLoopBound.swift
[178/242] Compiling NIOCore IO.swift
[179/242] Compiling NIOCore IOData.swift
[180/242] Compiling NIOCore IPProtocol.swift
[181/242] Compiling NIOCore IntegerBitPacking.swift
[182/242] Compiling NIOCore IntegerTypes.swift
[183/242] Compiling NIOCore Interfaces.swift
[184/242] Compiling NIOCore Linux.swift
[185/242] Compiling NIOCore ConvenienceOptionSupport.swift
[186/242] Compiling NIOCore DeadChannel.swift
[187/242] Compiling NIOCore DispatchQueue+WithFuture.swift
[188/242] Compiling NIOCore EventLoop+Deprecated.swift
[189/242] Compiling NIOCore EventLoop+SerialExecutor.swift
[190/242] Compiling NIOCore EventLoop.swift
[191/242] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[192/242] Compiling NIOCore SocketAddresses.swift
[193/242] Compiling NIOCore SocketOptionProvider.swift
[194/242] Compiling NIOCore SystemCallHelpers.swift
[195/242] Compiling NIOCore TimeAmount+Duration.swift
[196/242] Compiling NIOCore TypeAssistedChannelHandler.swift
[197/242] Compiling NIOCore UniversalBootstrapSupport.swift
[198/242] Compiling NIOCore Utilities.swift
[199/242] Compiling NIOCore AddressedEnvelope.swift
[200/242] Compiling NIOCore AsyncAwaitSupport.swift
[201/242] Compiling NIOCore AsyncChannel.swift
[202/242] Compiling NIOCore AsyncChannelHandler.swift
[203/242] Compiling NIOCore AsyncChannelInboundStream.swift
[204/242] Compiling NIOCore AsyncChannelOutboundWriter.swift
[205/242] Compiling NIOCore NIOAsyncSequenceProducer.swift
[206/242] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[207/242] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[208/242] Compiling NIOCore NIOScheduledCallback.swift
[209/242] Compiling NIOCore NIOSendable.swift
[210/242] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[211/242] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[212/242] Compiling NIOCore RecvByteBufferAllocator.swift
[213/242] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[214/242] Compiling NIOCore NIOAsyncWriter.swift
[215/242] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[216/242] Compiling NIOCore BSDSocketAPI.swift
[217/242] Compiling NIOCore ByteBuffer-aux.swift
[218/242] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[219/242] Compiling NIOCore ByteBuffer-conversions.swift
[220/242] Compiling NIOCore ByteBuffer-core.swift
[221/242] Compiling NIOCore ByteBuffer-hex.swift
[222/242] Compiling NIOCore ByteBuffer-int.swift
[223/242] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[224/242] Compiling NIOCore ByteBuffer-multi-int.swift
[225/242] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[226/242] Compiling NIOCore ByteBuffer-views.swift
[227/242] Compiling NIOCore Channel.swift
[228/242] Compiling NIOCore ChannelHandler.swift
[229/242] Compiling NIOCore ChannelHandlers.swift
[230/242] Compiling NIOCore ChannelInvoker.swift
[231/242] Compiling NIOCore ChannelOption.swift
[232/242] Compiling NIOCore ChannelPipeline.swift
[233/242] Compiling NIOCore CircularBuffer.swift
[234/242] Compiling NIOCore Codec.swift
[235/242] Compiling NIOCore EventLoopFuture+Deprecated.swift
[236/242] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[237/242] Compiling NIOCore EventLoopFuture.swift
[238/242] Compiling NIOCore FileDescriptor.swift
[239/242] Compiling NIOCore FileHandle.swift
[240/242] Compiling NIOCore FileRegion.swift
[241/242] Compiling NIOCore GlobalSingletons.swift
[242/242] Emitting module NIOCore
[243/298] Compiling NIOEmbedded AsyncTestingEventLoop.swift
[244/298] Compiling NIOEmbedded Embedded.swift
[245/298] Compiling NIOEmbedded AsyncTestingChannel.swift
[246/298] Emitting module NIOEmbedded
[247/298] Compiling NIOPosix PosixSingletons+ConcurrencyTakeOver.swift
[248/298] Compiling NIOPosix PosixSingletons.swift
[249/298] Compiling NIOPosix RawSocketBootstrap.swift
[250/298] Compiling NIOPosix Resolver.swift
[251/298] Compiling NIOPosix Selectable.swift
[252/298] Compiling NIOPosix SelectableChannel.swift
[253/303] Compiling NIOPosix BSDSocketAPICommon.swift
[254/303] Compiling NIOPosix BSDSocketAPIPosix.swift
[255/303] Compiling NIOPosix BSDSocketAPIWindows.swift
[256/303] Compiling NIOPosix BaseSocket.swift
[257/303] Compiling NIOPosix BaseSocketChannel+AccessibleTransport.swift
[258/303] Compiling NIOPosix BaseSocketChannel+SocketOptionProvider.swift
[259/303] Emitting module NIOPosix
[260/303] Compiling NIOPosix StructuredConcurrencyHelpers.swift
[261/303] Compiling NIOPosix System.swift
[262/303] Compiling NIOPosix Thread.swift
[263/303] Compiling NIOPosix ThreadPosix.swift
[264/303] Compiling NIOPosix ThreadWindows.swift
[265/303] Compiling NIOPosix FileDescriptor.swift
[266/303] Compiling NIOPosix GetaddrinfoResolver.swift
[267/303] Compiling NIOPosix HappyEyeballs.swift
[268/303] Compiling NIOPosix IO.swift
[269/303] Compiling NIOPosix IntegerBitPacking.swift
[270/303] Compiling NIOPosix IntegerTypes.swift
[271/303] Compiling NIOPosix SelectableEventLoop.swift
[272/303] Compiling NIOPosix SelectorEpoll.swift
[273/303] Compiling NIOPosix SelectorGeneric.swift
[274/303] Compiling NIOPosix SelectorKqueue.swift
[275/303] Compiling NIOPosix SelectorUring.swift
[276/303] Compiling NIOPosix Utilities.swift
[277/303] Compiling NIOPosix VsockAddress.swift
[278/303] Compiling NIOPosix VsockChannelEvents.swift
[279/303] Compiling NIOPosix Windows.swift
[280/303] Compiling NIOPosix resource_bundle_accessor.swift
[281/303] Compiling NIOPosix BaseSocketChannel.swift
[282/303] Compiling NIOPosix BaseStreamSocketChannel.swift
[283/303] Compiling NIOPosix Bootstrap.swift
[284/303] Compiling NIOPosix ControlMessage.swift
[285/303] Compiling NIOPosix DatagramVectorReadManager.swift
[286/303] Compiling NIOPosix Errors+Any.swift
[287/303] Compiling NIOPosix NonBlockingFileIO.swift
[288/303] Compiling NIOPosix PendingDatagramWritesManager.swift
[289/303] Compiling NIOPosix PendingWritesManager.swift
[290/303] Compiling NIOPosix PipeChannel.swift
[291/303] Compiling NIOPosix PipePair.swift
[292/303] Compiling NIOPosix Pool.swift
[293/303] Compiling NIOPosix Linux.swift
[294/303] Compiling NIOPosix LinuxCPUSet.swift
[295/303] Compiling NIOPosix LinuxUring.swift
[296/303] Compiling NIOPosix MultiThreadedEventLoopGroup.swift
[297/303] Compiling NIOPosix NIOPosixSendableMetatype.swift
[298/303] Compiling NIOPosix NIOThreadPool.swift
[299/303] Compiling NIOPosix SelectorWSAPoll.swift
[300/303] Compiling NIOPosix ServerSocket.swift
[301/303] Compiling NIOPosix Socket.swift
[302/303] Compiling NIOPosix SocketChannel.swift
[303/303] Compiling NIOPosix SocketProtocols.swift
[304/305] Compiling NIO Exports.swift
[305/305] Emitting module NIO
[306/310] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[307/310] Emitting module NIOFoundationCompat
[308/310] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[309/310] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[310/310] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[311/323] Compiling _NIOJSON JSONArray.swift
[312/323] Compiling _NIOJSON JSONObject.swift
[313/324] Compiling _NIOJSON JSONValue.swift
[314/324] 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>
[315/324] Compiling _NIOJSON Pointer+Helpers.swift
[316/324] Compiling _NIOJSON JSONDecoder.swift
[317/324] Compiling _NIOJSON JSONDecoderError.swift
[318/324] Compiling _NIOJSON JSONDescription+Constants.swift
[319/324] Compiling _NIOJSON StreamingJSONArrayDecoder.swift
[320/324] Compiling _NIOJSON StreamingJSONLinesDecoder.swift
[321/324] Compiling _NIOJSON JSONEncoder.swift
[322/324] Compiling _NIOJSON NilValueCodingStrategy.swift
[323/324] Compiling _NIOJSON JSONDescription.swift
[324/324] Emitting module _NIOJSON
[325/326] Compiling IkigaJSON Exports.swift
[326/326] Emitting module IkigaJSON
Build complete! (31.05s)
Fetching https://github.com/apple/swift-nio.git
[1/83172] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (6.91s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.98.0 (7.80s)
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-atomics.git
[1/1820] Fetching swift-atomics
[602/25389] Fetching swift-atomics, swift-collections
[603/30990] Fetching swift-atomics, swift-collections, swift-system
Fetched https://github.com/apple/swift-system.git from cache (2.09s)
Fetched https://github.com/apple/swift-collections.git from cache (2.09s)
Fetched https://github.com/apple/swift-atomics.git from cache (2.09s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (2.66s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.56s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (0.61s)
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-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-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-nio.git
Working copy of https://github.com/apple/swift-nio.git resolved at 2.98.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.