The Swift Package Index logo.Swift Package Index

Build Information

Successful build of IkigaJSON, reference master (c0d8aa), with Swift 6.3 for Wasm on 27 Apr 2026 06:08:43 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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

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 /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
 * 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:         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-2":/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/83219] Fetching swift-nio
Fetched https://github.com/apple/swift-nio.git from cache (11.79s)
Computing version for https://github.com/apple/swift-nio.git
Computed https://github.com/apple/swift-nio.git at 2.99.0 (13.26s)
Fetching https://github.com/apple/swift-system.git
Fetching https://github.com/apple/swift-atomics.git
[1/1820] Fetching swift-atomics
[857/7421] Fetching swift-atomics, swift-system
Fetched https://github.com/apple/swift-atomics.git from cache (0.93s)
Fetching https://github.com/apple/swift-collections.git
Fetched https://github.com/apple/swift-system.git from cache (1.11s)
[1/23686] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (2.71s)
Computing version for https://github.com/apple/swift-atomics.git
Computed https://github.com/apple/swift-atomics.git at 1.3.0 (4.77s)
Computing version for https://github.com/apple/swift-system.git
Computed https://github.com/apple/swift-system.git at 1.6.4 (0.88s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.4.1 (1.27s)
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
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
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
Building for debugging...
[0/24] Write sources
[12/24] Compiling CNIOWindows shim.c
[13/24] Compiling _AtomicsShims.c
[14/24] Compiling CNIOWindows WSAStartup.c
[15/24] Compiling CNIOLinux shim.c
[16/24] Compiling CNIOOpenBSD shim.c
[16/24] Compiling CNIOWASI CNIOWASI.c
[18/24] Write sources
[19/24] Compiling CNIOLinux liburing_shims.c
[20/24] Compiling CNIODarwin shim.c
[21/24] Write swift-version-24593BA9C3E375BF.txt
[23/73] 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>
[23/73] Compiling c-nioatomics.c
[24/73] Compiling c-atomics.c
[26/80] Compiling InternalCollectionsUtilities UnsafeMutableRawBufferPointer+Extras.swift
[27/80] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.swift
[28/80] Compiling InternalCollectionsUtilities Integer rank.swift
[29/80] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[30/80] Compiling InternalCollectionsUtilities UInt+reversed.swift
[31/80] Emitting module InternalCollectionsUtilities
[32/82] Compiling InternalCollectionsUtilities String+Padding.swift
[33/82] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[34/82] Compiling InternalCollectionsUtilities Debugging.swift
[35/82] Compiling InternalCollectionsUtilities Descriptions.swift
[36/82] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[39/84] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[41/84] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[42/84] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[43/84] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[46/84] Compiling _JSONCore Bytes.swift
[49/84] Compiling InternalCollectionsUtilities LifetimeOverride.swift
[50/84] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[51/84] Compiling InternalCollectionsUtilities Span+Extras.swift
[56/84] 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>
[57/84] Compiling _NIODataStructures PriorityQueue.swift
[58/84] Emitting module Atomics
[62/84] Emitting module _NIOBase64
[63/84] Compiling _NIOBase64 Base64.swift
[64/84] Compiling _JSONCore Errors.swift
[65/85] Compiling Atomics IntegerOperations.swift
[66/85] Compiling Atomics Unmanaged extensions.swift
[71/86] Compiling _JSONCore JSONTokenizerDestination.swift
[72/86] Compiling _JSONCore JSONTokenizer.swift
[73/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 |           var escaped = false
/host/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
/host/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
/host/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
/host/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
/host/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
/host/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>
[76/87] Compiling _NIODataStructures _TinyArray.swift
[77/120] Compiling ContainersPreview BorrowingIteratorProtocol+Map.swift
[78/120] Compiling ContainersPreview BorrowingIteratorProtocol+Reduce.swift
[79/120] Compiling ContainersPreview BorrowingIteratorProtocol+SpanwiseZip.swift
[80/120] Compiling ContainersPreview BorrowingIteratorProtocol.swift
[81/120] Compiling ContainersPreview BorrowingSequence+Standard Conformances.swift
[82/120] Compiling ContainersPreview Drain+Reduce.swift
[83/120] Compiling ContainersPreview Drain.swift
[84/120] Compiling ContainersPreview Producer+Collect.swift
[85/120] Compiling ContainersPreview Producer+Filter.swift
[86/124] Compiling ContainersPreview BorrowingSequence+Utilities.swift
[87/124] Compiling ContainersPreview BorrowingSequence.swift
[88/124] Compiling ContainersPreview BidirectionalContainer.swift
[89/124] Compiling ContainersPreview Container+Filter.swift
[90/124] Compiling ContainersPreview Container+SpanwiseZip.swift
[91/124] Compiling ContainersPreview Producer+Map.swift
[92/124] Compiling ContainersPreview Producer+Reduce.swift
[93/124] Compiling ContainersPreview Producer.swift
[94/124] Compiling ContainersPreview Borrow.swift
[95/124] Compiling ContainersPreview Container.swift
[96/124] Compiling ContainersPreview ContainerIterator.swift
[97/124] Compiling ContainersPreview DynamicContainer.swift
[98/124] Compiling ContainersPreview MutableContainer.swift
[99/124] Compiling ContainersPreview PermutableContainer.swift
[100/124] Compiling ContainersPreview RandomAccessContainer.swift
[101/124] Compiling ContainersPreview RangeExpression2.swift
[102/124] Compiling ContainersPreview RangeReplaceableContainer.swift
[103/124] Compiling ContainersPreview Drain+Map.swift
[106/125] Compiling ContainersPreview Box.swift
[107/125] Compiling ContainersPreview Inout.swift
[108/125] Compiling ContainersPreview InputSpan.swift
[109/125] Compiling ContainersPreview Shared.swift
[111/125] Emitting module ContainersPreview
[112/125] Compiling ContainersPreview OutputSpan+Extras.swift
[113/125] Compiling ContainersPreview TemporaryAllocation.swift
[114/125] Compiling ContainersPreview BorrowingIteratorProtocol+Copy.swift
[115/125] Compiling ContainersPreview BorrowingIteratorProtocol+ElementsEqual.swift
[116/125] Compiling ContainersPreview BorrowingIteratorProtocol+Filter.swift
[118/126] Compiling NIOConcurrencyHelpers lock.swift
[119/166] Compiling _NIODataStructures Heap.swift
[120/166] Emitting module _NIODataStructures
[121/166] Emitting module NIOConcurrencyHelpers
[123/167] Compiling NIOConcurrencyHelpers NIOThreadPoolWorkAvailable.swift
[124/167] Compiling NIOConcurrencyHelpers NIOLockedValueBox.swift
[125/167] Compiling NIOConcurrencyHelpers NIOAtomic.swift
[126/167] Compiling NIOConcurrencyHelpers atomics.swift
[127/167] Compiling NIOConcurrencyHelpers NIOLock.swift
[128/168] Compiling DequeModule UniqueDeque+Consumption.swift
[129/168] Compiling DequeModule UniqueDeque+Container.swift
[130/168] Compiling DequeModule UniqueDeque+Descriptions.swift
[131/168] Compiling DequeModule UniqueDeque+Equatable.swift
[132/168] Compiling DequeModule UniqueDeque+Experimental.swift
[134/173] Compiling DequeModule _DequeBuffer.swift
[135/173] Compiling DequeModule _DequeBufferHeader.swift
[136/173] Compiling DequeModule RigidDeque+Append.swift
[137/173] Compiling DequeModule RigidDeque+Consumption.swift
[138/173] Compiling DequeModule RigidDeque+Container.swift
[139/173] Compiling DequeModule RigidDeque+Descriptions.swift
[140/173] Compiling DequeModule RigidDeque+Equatable.swift
[141/173] Compiling DequeModule RigidDeque+Experimental.swift
[142/173] Compiling DequeModule RigidDeque+Hashable.swift
[143/173] Compiling DequeModule RigidDeque+Initializers.swift
[144/173] Compiling DequeModule RigidDeque+Insertions.swift
[145/173] Compiling DequeModule RigidDeque+Prepend.swift
[146/173] Compiling DequeModule UniqueDeque+Hashable.swift
[147/173] Compiling DequeModule UniqueDeque+Initializers.swift
[148/173] Compiling DequeModule UniqueDeque+Insertions.swift
[149/173] Compiling DequeModule UniqueDeque+Prepend.swift
[150/173] Compiling DequeModule UniqueDeque+Removals.swift
[151/173] Compiling DequeModule RigidDeque+Removals.swift
[152/173] Compiling DequeModule RigidDeque+Replacements.swift
[153/173] Compiling DequeModule RigidDeque+Testing.swift
[154/173] Compiling DequeModule RigidDeque.swift
[155/173] Compiling DequeModule UniqueDeque+Append.swift
[156/173] Compiling DequeModule Deque+Codable.swift
[157/173] Compiling DequeModule Deque+Collection.swift
[158/173] Compiling DequeModule Deque+CustomReflectable.swift
[159/173] Compiling DequeModule Deque+Descriptions.swift
[160/173] Compiling DequeModule Deque+Equatable.swift
[161/173] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[162/173] Compiling DequeModule Deque+Extras.swift
[163/173] Compiling DequeModule Deque+Hashable.swift
[164/173] Compiling DequeModule Deque+Testing.swift
[165/173] Compiling DequeModule Deque._Storage.swift
[166/173] Compiling DequeModule Deque._UnsafeHandle.swift
[167/173] Compiling DequeModule Deque.swift
[168/173] Emitting module DequeModule
[169/173] Compiling DequeModule UniqueDeque+Replacements.swift
[170/173] Compiling DequeModule UniqueDeque.swift
[171/173] Compiling DequeModule _DequeSlot.swift
[172/173] Compiling DequeModule _UnsafeDequeHandle.swift
[173/173] Compiling DequeModule _UnsafeDequeSegments.swift
[175/238] Compiling NIOCore IPProtocol.swift
[176/238] Compiling NIOCore IntegerBitPacking.swift
[177/238] Compiling NIOCore IntegerTypes.swift
[178/238] Compiling NIOCore Interfaces.swift
[179/238] Compiling NIOCore Linux.swift
[180/238] Compiling NIOCore MarkedCircularBuffer.swift
[181/238] Compiling NIOCore MulticastChannel.swift
[182/238] Compiling NIOCore NIOAny.swift
[183/238] Compiling NIOCore NIOCloseOnErrorHandler.swift
[184/246] Compiling NIOCore EventLoopFuture+Deprecated.swift
[185/246] Compiling NIOCore EventLoopFuture+WithEventLoop.swift
[186/246] Compiling NIOCore EventLoopFuture.swift
[187/246] Compiling NIOCore FileDescriptor.swift
[188/246] Compiling NIOCore FileHandle.swift
[189/246] Compiling NIOCore FileRegion.swift
[190/246] Compiling NIOCore GlobalSingletons.swift
[191/246] Compiling NIOCore IO.swift
[192/246] Compiling NIOCore IOData.swift
[193/246] Compiling NIOCore AddressedEnvelope.swift
[194/246] Compiling NIOCore AsyncAwaitSupport.swift
[195/246] Compiling NIOCore AsyncChannel.swift
[196/246] Compiling NIOCore AsyncChannelHandler.swift
[197/246] Compiling NIOCore AsyncChannelInboundStream.swift
[198/246] Compiling NIOCore AsyncChannelOutboundWriter.swift
[199/246] Compiling NIOCore NIOAsyncSequenceProducer.swift
[200/246] Compiling NIOCore NIOAsyncSequenceProducerStrategies.swift
[201/246] Compiling NIOCore NIOAsyncWriter.swift
[202/246] Compiling NIOCore CircularBuffer.swift
[203/246] Compiling NIOCore Codec.swift
[204/246] Compiling NIOCore ConvenienceOptionSupport.swift
[205/246] Compiling NIOCore DeadChannel.swift
[206/246] Compiling NIOCore DispatchQueue+WithFuture.swift
[207/246] Compiling NIOCore EventLoop+Deprecated.swift
[208/246] Compiling NIOCore EventLoop+SerialExecutor.swift
[209/246] Compiling NIOCore EventLoop.swift
[210/246] Compiling NIOCore EventLoopFuture+AssumeIsolated.swift
[211/246] Compiling NIOCore SingleStepByteToMessageDecoder.swift
[212/246] Compiling NIOCore SocketAddresses.swift
[213/246] Compiling NIOCore SocketOptionProvider.swift
[214/246] Compiling NIOCore SystemCallHelpers.swift
[215/246] Compiling NIOCore TimeAmount+Duration.swift
[216/246] Compiling NIOCore TypeAssistedChannelHandler.swift
[217/246] Compiling NIOCore UniversalBootstrapSupport.swift
[218/246] Compiling NIOCore Utilities.swift
[219/246] Compiling NIOCore NIOThrowingAsyncSequenceProducer.swift
[220/246] Compiling NIOCore BSDSocketAPI.swift
[221/246] Compiling NIOCore ByteBuffer-aux.swift
[222/246] Compiling NIOCore ByteBuffer-binaryEncodedLengthPrefix.swift
[223/246] Compiling NIOCore ByteBuffer-conversions.swift
[224/246] Compiling NIOCore ByteBuffer-core.swift
[225/246] Compiling NIOCore ByteBuffer-hex.swift
[226/246] Compiling NIOCore ByteBuffer-int.swift
[227/246] Compiling NIOCore ByteBuffer-lengthPrefix.swift
[228/246] Compiling NIOCore NIOCoreSendableMetatype.swift
[229/246] Compiling NIOCore NIODecodedAsyncSequence.swift
[230/246] Compiling NIOCore NIOLoopBound.swift
[231/246] Compiling NIOCore NIOPooledRecvBufferAllocator.swift
[232/246] Compiling NIOCore NIOScheduledCallback.swift
[233/246] Compiling NIOCore NIOSendable.swift
[234/246] Compiling NIOCore NIOSplitLinesMessageDecoder.swift
[235/246] Compiling NIOCore NIOTransportAccessibleChannelCore.swift
[236/246] Compiling NIOCore RecvByteBufferAllocator.swift
[237/246] Compiling NIOCore ByteBuffer-multi-int.swift
[238/246] Compiling NIOCore ByteBuffer-quicBinaryEncodingStrategy.swift
[239/246] Compiling NIOCore ByteBuffer-views.swift
[240/246] Compiling NIOCore Channel.swift
[241/246] Compiling NIOCore ChannelHandler.swift
[242/246] Compiling NIOCore ChannelHandlers.swift
[243/246] Compiling NIOCore ChannelInvoker.swift
[244/246] Compiling NIOCore ChannelOption.swift
[245/246] Compiling NIOCore ChannelPipeline.swift
[246/246] Emitting module NIOCore
[248/250] Compiling NIOFoundationEssentialsCompat Codable+ByteBuffer.swift
[249/250] Emitting module NIOFoundationEssentialsCompat
[250/250] Compiling NIOFoundationEssentialsCompat ByteBuffer-foundation.swift
[252/255] Compiling NIOFoundationCompat WaitSpinningRunLoop.swift
[253/255] Compiling NIOFoundationCompat Exports.swift
[254/255] Compiling NIOFoundationCompat JSONSerialization+ByteBuffer.swift
[255/255] Emitting module NIOFoundationCompat
[257/269] 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>
[258/269] 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>
[259/269] Compiling _NIOJSON StreamingJSONArrayDecoder.swift
[260/269] Compiling _NIOJSON StreamingJSONLinesDecoder.swift
[261/270] Compiling _NIOJSON JSONObject.swift
[262/270] Compiling _NIOJSON JSONArray.swift
[263/270] Emitting module _NIOJSON
[264/270] Compiling _NIOJSON JSONValue.swift
[265/270] Compiling _NIOJSON JSONDescription.swift
[266/270] Compiling _NIOJSON Pointer+Helpers.swift
[267/270] Compiling _NIOJSON JSONEncoder.swift
[268/270] Compiling _NIOJSON NilValueCodingStrategy.swift
[269/270] Compiling _NIOJSON JSONDecoder.swift
[270/270] Compiling _NIOJSON JSONDecoderError.swift
[272/273] Compiling IkigaJSON Exports.swift
[273/273] Emitting module IkigaJSON
Build complete! (146.47s)
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.