The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Athena, reference 0.0.12 (a4e351), with Swift 6.2 (beta) for Linux on 20 Jun 2025 06:14:09 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vsanthanam/Athena.git
Reference: 0.0.12
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/vsanthanam/Athena
 * tag               0.0.12     -> FETCH_HEAD
HEAD is now at a4e3517 Add custom string interpolation for `JSONEncodable` conforming types (#26)
Cloned https://github.com/vsanthanam/Athena.git
Revision (git rev-parse @):
a4e3517d00cf0bbef9dc3c7f7b972b3024ff8a76
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/vsanthanam/Athena.git at 0.0.12
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/vsanthanam/Athena.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/apple/swift-docc-plugin
Fetching https://github.com/nicklockwood/SwiftFormat
[1/2082] Fetching swift-docc-plugin
[2083/51023] Fetching swift-docc-plugin, swiftformat
Fetched https://github.com/apple/swift-docc-plugin from cache (34.14s)
Fetched https://github.com/nicklockwood/SwiftFormat from cache (34.76s)
Computing version for https://github.com/nicklockwood/SwiftFormat
Computed https://github.com/nicklockwood/SwiftFormat at 0.51.7 (37.16s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (0.44s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.38s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.97s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
Creating working copy for https://github.com/nicklockwood/SwiftFormat
Working copy of https://github.com/nicklockwood/SwiftFormat resolved at 0.51.7
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
[1/1] Compiling plugin SwiftFormatPlugin
[2/2] Compiling plugin Swift-DocC Preview
[3/3] Compiling plugin Swift-DocC
Building for debugging...
[3/5] Write sources
[4/5] Write swift-version-24593BA9C3E375BF.txt
[6/27] Emitting module Athena
[7/29] Compiling Athena StringExtensions.swift
[8/29] Compiling Athena UInt8Extensions.swift
[9/29] Compiling Athena UnicodeEscapeParser.swift
[10/29] Compiling Athena Encoder.swift
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:69:26: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |         @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 68 |         public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
 69 |             await Task { encode(value) }.value
    |                          `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:68:40: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |         /// - Returns: The ``JSON`` representing the provided value
 67 |         @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 68 |         public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
    |                                        `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |             await Task { encode(value) }.value
 70 |         }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:99:28: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 97 |         ) where T: JSONEncodable {
 98 |             DispatchQueue.global().async {
 99 |                 let json = encode(value)
    |                            `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                 completionHandler(value, json)
101 |             }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:95:15: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |         @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
 94 |         public static func encode<T>(
 95 |             _ value: T,
    |               `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |             completionHandler: @escaping (T, JSON) -> Void
 97 |         ) where T: JSONEncodable {
[11/29] Compiling Athena EncodingDetector.swift
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:69:26: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |         @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 68 |         public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
 69 |             await Task { encode(value) }.value
    |                          `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:68:40: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |         /// - Returns: The ``JSON`` representing the provided value
 67 |         @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 68 |         public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
    |                                        `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |             await Task { encode(value) }.value
 70 |         }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:99:28: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 97 |         ) where T: JSONEncodable {
 98 |             DispatchQueue.global().async {
 99 |                 let json = encode(value)
    |                            `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                 completionHandler(value, json)
101 |             }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:95:15: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |         @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
 94 |         public static func encode<T>(
 95 |             _ value: T,
    |               `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |             completionHandler: @escaping (T, JSON) -> Void
 97 |         ) where T: JSONEncodable {
[12/29] Compiling Athena Error.swift
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:69:26: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 67 |         @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 68 |         public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
 69 |             await Task { encode(value) }.value
    |                          `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 70 |         }
 71 |
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:68:40: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 66 |         /// - Returns: The ``JSON`` representing the provided value
 67 |         @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 68 |         public static func encode<T>(_ value: T) async -> JSON where T: JSONEncodable {
    |                                        `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 69 |             await Task { encode(value) }.value
 70 |         }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:99:28: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 97 |         ) where T: JSONEncodable {
 98 |             DispatchQueue.global().async {
 99 |                 let json = encode(value)
    |                            `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
100 |                 completionHandler(value, json)
101 |             }
/host/spi-builder-workspace/Sources/Athena/Encoder.swift:95:15: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 93 |         @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
 94 |         public static func encode<T>(
 95 |             _ value: T,
    |               `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 96 |             completionHandler: @escaping (T, JSON) -> Void
 97 |         ) where T: JSONEncodable {
[13/29] Compiling Athena StringInterpolationExtensions.swift
[14/29] Compiling Athena Subscript.swift
[15/29] Compiling Athena JSON.swift
[16/29] Compiling Athena JSONCodable.swift
[17/29] Compiling Athena JSONSubscriptRepresentable.swift
[18/29] Compiling Athena Literal.swift
[19/29] Compiling Athena LiteralDecodable.swift
[20/29] Compiling Athena Number.swift
[21/29] Compiling Athena NumberDecodable.swift
[22/29] Compiling Athena Serializer.swift
[23/29] Compiling Athena SerializerOptions.swift
[24/29] Compiling Athena IntExtensions.swift
[25/29] Compiling Athena NumberParser.swift
[26/29] Compiling Athena SerializationOptionsExtensions.swift
[27/29] Compiling Athena Decoder.swift
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:82:34: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |             from json: JSON
 81 |         ) async throws -> T where T: JSONDecodable {
 82 |             try await Task { try decode(type, from: json) }.value
    |                                  `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 83 |         }
 84 |
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:79:15: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 77 |         @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 78 |         public static func decode<T>(
 79 |             _ type: T.Type = T.self,
    |               `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |             from json: JSON
 81 |         ) async throws -> T where T: JSONDecodable {
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-Sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
118 |             DispatchQueue.global().async {
119 |                 let result = Result {
120 |                     try decode(type, from: json)
    |                                `- warning: capture of 'type' with non-Sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
121 |                 }
122 |                 completionHandler(json, result)
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:119:30: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 |         ) where T: JSONDecodable {
118 |             DispatchQueue.global().async {
119 |                 let result = Result {
    |                              `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 |                     try decode(type, from: json)
121 |                 }
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:114:15: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 |         @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
113 |         public static func decode<T>(
114 |             _ type: T.Type = T.self,
    |               `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |             from json: JSON,
116 |             completionHandler: @escaping (JSON, Result<T, any Swift.Error>) -> Void
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |             DispatchQueue.global().async {
119 |                 let result = Result {
120 |                     try decode(type, from: json)
    |                                `- warning: capture of 'type' with non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |                 }
122 |                 completionHandler(json, result)
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[28/29] Compiling Athena Deserializer.swift
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:82:34: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |             from json: JSON
 81 |         ) async throws -> T where T: JSONDecodable {
 82 |             try await Task { try decode(type, from: json) }.value
    |                                  `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 83 |         }
 84 |
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:79:15: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 77 |         @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 78 |         public static func decode<T>(
 79 |             _ type: T.Type = T.self,
    |               `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |             from json: JSON
 81 |         ) async throws -> T where T: JSONDecodable {
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-Sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
118 |             DispatchQueue.global().async {
119 |                 let result = Result {
120 |                     try decode(type, from: json)
    |                                `- warning: capture of 'type' with non-Sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
121 |                 }
122 |                 completionHandler(json, result)
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:119:30: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 |         ) where T: JSONDecodable {
118 |             DispatchQueue.global().async {
119 |                 let result = Result {
    |                              `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 |                     try decode(type, from: json)
121 |                 }
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:114:15: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 |         @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
113 |         public static func decode<T>(
114 |             _ type: T.Type = T.self,
    |               `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |             from json: JSON,
116 |             completionHandler: @escaping (JSON, Result<T, any Swift.Error>) -> Void
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |             DispatchQueue.global().async {
119 |                 let result = Result {
120 |                     try decode(type, from: json)
    |                                `- warning: capture of 'type' with non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |                 }
122 |                 completionHandler(json, result)
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
[29/29] Compiling Athena DeserializerOptions.swift
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:82:34: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |             from json: JSON
 81 |         ) async throws -> T where T: JSONDecodable {
 82 |             try await Task { try decode(type, from: json) }.value
    |                                  `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 83 |         }
 84 |
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:79:15: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 77 |         @available(iOS 13.0, macOS 10.15, tvOS 13.0, watchOS 6.0, *)
 78 |         public static func decode<T>(
 79 |             _ type: T.Type = T.self,
    |               `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 80 |             from json: JSON
 81 |         ) async throws -> T where T: JSONDecodable {
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-Sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
118 |             DispatchQueue.global().async {
119 |                 let result = Result {
120 |                     try decode(type, from: json)
    |                                `- warning: capture of 'type' with non-Sendable type 'T.Type' in a '@Sendable' closure; this is an error in the Swift 6 language mode [#SendableClosureCaptures]
121 |                 }
122 |                 completionHandler(json, result)
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:119:30: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
117 |         ) where T: JSONDecodable {
118 |             DispatchQueue.global().async {
119 |                 let result = Result {
    |                              `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
120 |                     try decode(type, from: json)
121 |                 }
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:114:15: warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
112 |         @available(tvOS, deprecated: 15.0, message: "Use the Swift Concurrency based APIs instead.")
113 |         public static func decode<T>(
114 |             _ type: T.Type = T.self,
    |               `- warning: capture of non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
115 |             from json: JSON,
116 |             completionHandler: @escaping (JSON, Result<T, any Swift.Error>) -> Void
/host/spi-builder-workspace/Sources/Athena/Decoder.swift:120:32: warning: capture of 'type' with non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
118 |             DispatchQueue.global().async {
119 |                 let result = Result {
120 |                     try decode(type, from: json)
    |                                `- warning: capture of 'type' with non-Sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
121 |                 }
122 |                 completionHandler(json, result)
[#SendableClosureCaptures]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-closure-captures>
Build complete! (77.82s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "swiftformat",
      "requirement" : {
        "exact" : [
          "0.51.7"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nicklockwood/SwiftFormat"
    }
  ],
  "manifest_display_name" : "Athena",
  "name" : "Athena",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "12.0"
    },
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "tvos",
      "version" : "12.0"
    },
    {
      "name" : "watchos",
      "version" : "5.0"
    }
  ],
  "products" : [
    {
      "name" : "Athena",
      "targets" : [
        "Athena"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AthenaTests",
      "module_type" : "SwiftTarget",
      "name" : "AthenaTests",
      "path" : "Tests/AthenaTests",
      "sources" : [
        "DeserializerTests.swift",
        "EncodeDecodeTests.swift",
        "JSONEncodingUTFTestFixtures.swift",
        "JSONTests.swift"
      ],
      "target_dependencies" : [
        "Athena"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Athena",
      "module_type" : "SwiftTarget",
      "name" : "Athena",
      "path" : "Sources/Athena",
      "product_memberships" : [
        "Athena"
      ],
      "sources" : [
        "Decoder.swift",
        "Deserializer.swift",
        "DeserializerOptions.swift",
        "Encoder.swift",
        "EncodingDetector.swift",
        "Error.swift",
        "Internal/IntExtensions.swift",
        "Internal/NumberParser.swift",
        "Internal/SerializationOptionsExtensions.swift",
        "Internal/StringExtensions.swift",
        "Internal/UInt8Extensions.swift",
        "Internal/UnicodeEscapeParser.swift",
        "JSON.swift",
        "JSONCodable.swift",
        "JSONSubscriptRepresentable.swift",
        "Literal.swift",
        "LiteralDecodable.swift",
        "Number.swift",
        "NumberDecodable.swift",
        "Serializer.swift",
        "SerializerOptions.swift",
        "StringInterpolationExtensions.swift",
        "Subscript.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.