Build Information
Successful build of IkigaJSON, reference 3.0.0-beta.1 (937ee3), with Swift 6.3 for Wasm on 18 Apr 2026 02:50:32 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1Build 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 /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
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: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/orlandos-nl/swift-json.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Fetching https://github.com/apple/swift-nio.git
[1/83172] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (10.65s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.98.0 (12.01s)
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-collections.git
[1/23569] Fetching swift-collections
[1180/29170] Fetching swift-collections, swift-system
Fetching https://github.com/apple/swift-atomics.git
[20687/30990] Fetching swift-collections, swift-system, swift-atomics
Fetched https://github.com/apple/swift-atomics.git from cache (0.79s)
Fetched https://github.com/apple/swift-system.git from cache (2.27s)
Fetched https://github.com/apple/swift-collections.git from cache (2.32s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (2.82s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.57s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (0.93s)
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
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-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.4.1
Building for debugging...
[0/23] Write sources
[11/23] Compiling _AtomicsShims.c
[12/23] Compiling CNIOWindows shim.c
[13/23] Compiling CNIOWindows WSAStartup.c
[14/23] Compiling CNIOWASI CNIOWASI.c
[15/23] Compiling CNIOLinux liburing_shims.c
[16/23] Compiling CNIOOpenBSD shim.c
[16/23] Compiling CNIOLinux shim.c
[18/23] Write sources
[19/23] Compiling CNIODarwin shim.c
[20/23] Write swift-version-24593BA9C3E375BF.txt
[22/72] Emitting module _NIOBase64
[23/72] Emitting module _JSONCore
/host/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 | }
/host/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
/host/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
/host/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 | }
/host/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
/host/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
/host/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
/host/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
/host/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]
/host/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
/host/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
/host/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>
[24/72] Emitting module InternalCollectionsUtilities
[24/74] Compiling c-nioatomics.c
[25/74] Compiling c-atomics.c
[27/81] Emitting module Atomics
[28/83] Compiling Atomics AtomicMemoryOrderings.swift
[29/83] Compiling Atomics DoubleWord.swift
[30/83] Compiling _JSONCore Bytes.swift
[31/83] Compiling _NIOBase64 Base64.swift
[33/84] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[34/84] Compiling Atomics IntegerOperations.swift
[35/84] Compiling Atomics Unmanaged extensions.swift
[38/84] Compiling Atomics UnsafeAtomic.swift
[39/84] Compiling Atomics UnsafeAtomicLazyReference.swift
[40/84] Compiling Atomics AtomicStorage.swift
[41/84] Compiling Atomics AtomicValue.swift
[42/84] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[43/84] Compiling Atomics OptionalRawRepresentable.swift
[44/84] Compiling Atomics RawRepresentable.swift
[45/84] Compiling Atomics AtomicBool.swift
[46/84] Compiling Atomics ManagedAtomic.swift
[47/84] Compiling Atomics ManagedAtomicLazyReference.swift
[48/84] Compiling NIOConcurrencyHelpers lock.swift
[49/84] Compiling Atomics AtomicOptionalWrappable.swift
[50/84] Compiling Atomics AtomicReference.swift
[58/84] Compiling Atomics AtomicInteger.swift
[62/84] Compiling Atomics IntegerConformances.swift
[63/84] Compiling Atomics PointerConformances.swift
[67/84] Compiling Atomics Primitives.native.swift
[69/84] Compiling NIOConcurrencyHelpers NIOLock.swift
[70/85] Compiling _JSONCore FastScanner.swift
/host/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 | }
/host/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
/host/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
/host/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 | }
/host/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
/host/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
/host/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
/host/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
/host/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]
/host/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
/host/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
/host/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>
[75/86] Compiling _JSONCore Errors.swift
[76/86] Compiling _JSONCore JSONParser+Parsing.swift
/host/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
/host/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
/host/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
/host/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
/host/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
/host/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>
[78/86] Compiling _NIODataStructures Heap.swift
[79/86] Emitting module _NIODataStructures
[80/86] Compiling _JSONCore JSONTokenizerDestination.swift
[81/86] Compiling _JSONCore JSONTokenizer.swift
[83/87] Compiling _NIODataStructures _TinyArray.swift
[84/87] Compiling _NIODataStructures PriorityQueue.swift
[86/121] Emitting module NIOConcurrencyHelpers
[87/121] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[88/121] Compiling ContainersPreview RandomAccessContainer.swift
[89/121] Compiling ContainersPreview RangeExpression2.swift
[90/121] Compiling ContainersPreview RangeReplaceableContainer.swift
[91/121] Compiling ContainersPreview Drain+Map.swift
[92/121] Compiling NIOConcurrencyHelpers atomics.swift
[93/126] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[94/126] Compiling ContainersPreview BorrowingSequence.swift
[95/126] Compiling ContainersPreview BidirectionalContainer.swift
[96/126] Compiling ContainersPreview Container+Filter.swift
[97/126] Compiling ContainersPreview Container+SpanwiseZip.swift
[98/126] Compiling ContainersPreview Producer+Map.swift
[99/126] Compiling ContainersPreview Producer+Reduce.swift
[100/126] Compiling ContainersPreview Producer.swift
[101/126] Compiling ContainersPreview Borrow.swift
[102/126] Compiling ContainersPreview Drain+Reduce.swift
[103/126] Compiling ContainersPreview Drain.swift
[104/126] Compiling ContainersPreview Producer+Collect.swift
[105/126] Compiling ContainersPreview Producer+Filter.swift
[107/126] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[108/126] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[109/126] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[110/126] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[111/126] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[112/126] Compiling ContainersPreview Container.swift
[113/126] Compiling ContainersPreview ContainerIterator.swift
[114/126] Compiling ContainersPreview DynamicContainer.swift
[115/126] Compiling ContainersPreview MutableContainer.swift
[116/126] Compiling ContainersPreview PermutableContainer.swift
[117/126] Compiling ContainersPreview Box.swift
[118/126] Compiling ContainersPreview Inout.swift
[119/126] Compiling ContainersPreview InputSpan.swift
[120/126] Compiling ContainersPreview Shared.swift
[121/126] Emitting module ContainersPreview
[122/126] Compiling ContainersPreview OutputSpan+Extras.swift
[123/126] Compiling ContainersPreview TemporaryAllocation.swift
[124/126] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[125/126] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[126/126] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[128/167] Compiling DequeModule UniqueDeque+Consumption.swift
[129/167] Compiling DequeModule UniqueDeque+Container.swift
[130/167] Compiling DequeModule UniqueDeque+Descriptions.swift
[131/167] Compiling DequeModule UniqueDeque+Equatable.swift
[132/167] Compiling DequeModule UniqueDeque+Experimental.swift
[133/167] Compiling DequeModule _DequeBuffer.swift
[134/167] Compiling DequeModule _DequeBufferHeader.swift
[135/167] Compiling DequeModule RigidDeque+Append.swift
[136/167] Compiling DequeModule RigidDeque+Consumption.swift
[137/167] Compiling DequeModule RigidDeque+Container.swift
[138/167] Compiling DequeModule RigidDeque+Descriptions.swift
[139/172] Compiling DequeModule RigidDeque+Equatable.swift
[140/172] Compiling DequeModule RigidDeque+Experimental.swift
[141/172] Compiling DequeModule RigidDeque+Hashable.swift
[142/172] Compiling DequeModule RigidDeque+Initializers.swift
[143/172] Compiling DequeModule RigidDeque+Insertions.swift
[144/172] Compiling DequeModule RigidDeque+Prepend.swift
[145/172] Compiling DequeModule UniqueDeque+Hashable.swift
[146/172] Compiling DequeModule UniqueDeque+Initializers.swift
[147/172] Compiling DequeModule UniqueDeque+Insertions.swift
[148/172] Compiling DequeModule UniqueDeque+Prepend.swift
[149/172] Compiling DequeModule UniqueDeque+Removals.swift
[150/172] Compiling DequeModule RigidDeque+Removals.swift
[151/172] Compiling DequeModule RigidDeque+Replacements.swift
[152/172] Compiling DequeModule RigidDeque+Testing.swift
[153/172] Compiling DequeModule RigidDeque.swift
[154/172] Compiling DequeModule UniqueDeque+Append.swift
[155/172] Compiling DequeModule Deque+Codable.swift
[156/172] Compiling DequeModule Deque+Collection.swift
[157/172] Compiling DequeModule Deque+CustomReflectable.swift
[158/172] Compiling DequeModule Deque+Descriptions.swift
[159/172] Compiling DequeModule Deque+Equatable.swift
[160/172] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[161/172] Compiling DequeModule Deque+Extras.swift
[162/172] Compiling DequeModule Deque+Hashable.swift
[163/172] Compiling DequeModule Deque+Testing.swift
[164/172] Compiling DequeModule Deque._Storage.swift
[165/172] Compiling DequeModule Deque._UnsafeHandle.swift
[166/172] Compiling DequeModule Deque.swift
[167/172] Emitting module DequeModule
[168/172] Compiling DequeModule UniqueDeque+Replacements.swift
[169/172] Compiling DequeModule UniqueDeque.swift
[170/172] Compiling DequeModule _DequeSlot.swift
[171/172] Compiling DequeModule _UnsafeDequeHandle.swift
[172/172] Compiling DequeModule _UnsafeDequeSegments.swift
[174/237] Compiling NIOCore IPProtocol.swift
[175/237] Compiling NIOCore IntegerBitPacking.swift
[176/237] Compiling NIOCore IntegerTypes.swift
[177/237] Compiling NIOCore Interfaces.swift
[178/237] Compiling NIOCore Linux.swift
[179/237] Compiling NIOCore MarkedCircularBuffer.swift
[180/237] Compiling NIOCore MulticastChannel.swift
[181/237] Compiling NIOCore NIOAny.swift
[182/237] Compiling NIOCore NIOCloseOnErrorHandler.swift
[183/245] Compiling NIOCore AddressedEnvelope.swift
[184/245] Compiling NIOCore AsyncAwaitSupport.swift
[185/245] Compiling NIOCore AsyncChannel.swift
[186/245] Compiling NIOCore AsyncChannelHandler.swift
[187/245] Compiling NIOCore AsyncChannelInboundStream.swift
[188/245] Compiling NIOCore AsyncChannelOutboundWriter.swift
[189/245] Compiling NIOCore NIOAsyncSequenceProducer.swift
[190/245] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[191/245] Compiling NIOCore NIOAsyncWriter.swift
[192/245] Compiling NIOCore CircularBuffer.swift
[193/245] Compiling NIOCore Codec.swift
[194/245] Compiling NIOCore ConvenienceOptionSupport.swift
[195/245] Compiling NIOCore DeadChannel.swift
[196/245] Compiling NIOCore DispatchQueue+WithFuture.swift
[197/245] Compiling NIOCore EventLoop+Deprecated.swift
[198/245] Compiling NIOCore EventLoop+SerialExecutor.swift
[199/245] Compiling NIOCore EventLoop.swift
[200/245] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[201/245] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[202/245] Compiling NIOCore SocketAddresses.swift
[203/245] Compiling NIOCore SocketOptionProvider.swift
[204/245] Compiling NIOCore SystemCallHelpers.swift
[205/245] Compiling NIOCore TimeAmount+Duration.swift
[206/245] Compiling NIOCore TypeAssistedChannelHandler.swift
[207/245] Compiling NIOCore UniversalBootstrapSupport.swift
[208/245] Compiling NIOCore Utilities.swift
[209/245] Compiling NIOCore EventLoopFuture+Deprecated.swift
[210/245] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[211/245] Compiling NIOCore EventLoopFuture.swift
[212/245] Compiling NIOCore FileDescriptor.swift
[213/245] Compiling NIOCore FileHandle.swift
[214/245] Compiling NIOCore FileRegion.swift
[215/245] Compiling NIOCore GlobalSingletons.swift
[216/245] Compiling NIOCore IO.swift
[217/245] Compiling NIOCore IOData.swift
[218/245] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[219/245] Compiling NIOCore BSDSocketAPI.swift
[220/245] Compiling NIOCore ByteBuffer-aux.swift
[221/245] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[222/245] Compiling NIOCore ByteBuffer-conversions.swift
[223/245] Compiling NIOCore ByteBuffer-core.swift
[224/245] Compiling NIOCore ByteBuffer-hex.swift
[225/245] Compiling NIOCore ByteBuffer-int.swift
[226/245] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[227/245] Compiling NIOCore NIOCoreSendableMetatype.swift
[228/245] Compiling NIOCore NIODecodedAsyncSequence.swift
[229/245] Compiling NIOCore NIOLoopBound.swift
[230/245] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[231/245] Compiling NIOCore NIOScheduledCallback.swift
[232/245] Compiling NIOCore NIOSendable.swift
[233/245] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[234/245] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[235/245] Compiling NIOCore RecvByteBufferAllocator.swift
[236/245] Compiling NIOCore ByteBuffer-multi-int.swift
[237/245] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[238/245] Compiling NIOCore ByteBuffer-views.swift
[239/245] Compiling NIOCore Channel.swift
[240/245] Compiling NIOCore ChannelHandler.swift
[241/245] Compiling NIOCore ChannelHandlers.swift
[242/245] Compiling NIOCore ChannelInvoker.swift
[243/245] Compiling NIOCore ChannelOption.swift
[244/245] Compiling NIOCore ChannelPipeline.swift
[245/245] Emitting module NIOCore
[247/251] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[248/251] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[249/251] Compiling NIOFoundationCompat Codable+ByteBuffer.swift
[250/251] Emitting module NIOFoundationCompat
[251/251] Compiling NIOFoundationCompat ByteBuffer-foundation.swift
[253/265] Compiling _NIOJSON StreamingJSONArrayDecoder.swift
[254/265] Compiling _NIOJSON StreamingJSONLinesDecoder.swift
[255/266] Compiling _NIOJSON JSONValue.swift
[256/266] Compiling _NIOJSON JSONObject.swift
[257/266] Compiling _NIOJSON JSONArray.swift
[258/266] Compiling _NIOJSON Bounds.swift
/host/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>
[259/266] Compiling _NIOJSON JSONDescription+Constants.swift
/host/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>
[260/266] Compiling _NIOJSON JSONDescription.swift
[261/266] Compiling _NIOJSON Pointer+Helpers.swift
[262/266] Compiling _NIOJSON JSONEncoder.swift
[263/266] Compiling _NIOJSON NilValueCodingStrategy.swift
[264/266] Emitting module _NIOJSON
[265/266] Compiling _NIOJSON JSONDecoder.swift
[266/266] Compiling _NIOJSON JSONDecoderError.swift
[268/269] Compiling IkigaJSON Exports.swift
[269/269] Emitting module IkigaJSON
Build complete! (111.34s)
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" : "/host/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"
}
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Done.