The Swift Package Index logo.Swift Package Index

Build Information

Successful build of RichJSONParser, reference 3.0.0 (263e2e), with Swift 6.3 for macOS (SPM) on 11 Apr 2026 15:46:59 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/omochi/RichJSONParser.git
Reference: 3.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/omochi/RichJSONParser
 * tag               3.0.0      -> FETCH_HEAD
HEAD is now at 263e2ec Swift5.0
Cloned https://github.com/omochi/RichJSONParser.git
Revision (git rev-parse @):
263e2ecfe88d0500fa99e4cbc8c948529d335534
SUCCESS checkout https://github.com/omochi/RichJSONParser.git at 3.0.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "richjsonparser",
      "name": "RichJSONParser",
      "url": "https://github.com/omochi/RichJSONParser.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/RichJSONParser",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/omochi/RichJSONParser.git
[1/533] Fetching richjsonparser
Fetched https://github.com/omochi/RichJSONParser.git from cache (0.66s)
Creating working copy for https://github.com/omochi/RichJSONParser.git
Working copy of https://github.com/omochi/RichJSONParser.git resolved at 3.0.0 (263e2ec)
warning: '.resolve-product-dependencies': dependency 'richjsonparser' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/omochi/RichJSONParser.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/19] Compiling RichJSONParser JSONParser.swift
[4/19] Compiling RichJSONParser JSONSerializer.swift
[5/19] Emitting module RichJSONParser
[6/19] Compiling RichJSONParser FastJSONParser.swift
[7/19] Compiling RichJSONParser FormatExtension.swift
[8/19] Compiling RichJSONParser JSONStringEscape.swift
[9/19] Compiling RichJSONParser JSONToken.swift
[10/19] Compiling RichJSONParser JSON.swift
[11/19] Compiling RichJSONParser JSONDictionary.swift
[12/19] Compiling RichJSONParser UTF8Decoder.swift
[13/19] Compiling RichJSONParser JSONTokenizer.swift
[14/19] Compiling RichJSONParser ParsedJSON.swift
[15/19] Compiling RichJSONParser StaticBuffer.swift
/Users/admin/builder/spi-builder-workspace/Sources/RichJSONParser/StaticBuffer.swift:31:19: warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
29 |         let newCapacity = capacity * 2
30 |         let newMemory = UnsafeMutablePointer<UInt8>.allocate(capacity: newCapacity)
31 |         newMemory.assign(from: memory, count: current)
   |                   |- warning: 'assign(from:count:)' is deprecated: renamed to 'update(from:count:)' [#DeprecatedDeclaration]
   |                   `- note: use 'update(from:count:)' instead
32 |
33 |         self.memory.deallocate()
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[16/19] Compiling RichJSONParser Characters.swift
[17/19] Compiling RichJSONParser DecodedUnicodeChar.swift
[18/19] Compiling RichJSONParser SourceLocation.swift
[19/19] Compiling RichJSONParser SourceLocationLite.swift
[20/20] Compiling RichJSONParser UTF8Reader.swift
Build complete! (5.21s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "RichJSONParser",
  "name" : "RichJSONParser",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "RichJSONParser",
      "targets" : [
        "RichJSONParser"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "RichJSONParserTests",
      "module_type" : "SwiftTarget",
      "name" : "RichJSONParserTests",
      "path" : "Tests/RichJSONParserTests",
      "sources" : [
        "Support/Resources.swift",
        "TestCase/BenchmarkTests.swift",
        "TestCase/FastJSONParserTests.swift",
        "TestCase/ParserTests.swift",
        "TestCase/SerializerTests.swift",
        "TestCase/StringEscapeTests.swift",
        "TestCase/TokenizerTests.swift",
        "TestCase/UTF8ReaderTests.swift"
      ],
      "target_dependencies" : [
        "RichJSONParser"
      ],
      "type" : "test"
    },
    {
      "c99name" : "RichJSONParser",
      "module_type" : "SwiftTarget",
      "name" : "RichJSONParser",
      "path" : "Sources/RichJSONParser",
      "product_memberships" : [
        "RichJSONParser"
      ],
      "sources" : [
        "Characters.swift",
        "DecodedUnicodeChar.swift",
        "FastJSONParser.swift",
        "FormatExtension.swift",
        "JSON.swift",
        "JSONDictionary.swift",
        "JSONParser.swift",
        "JSONSerializer.swift",
        "JSONStringEscape.swift",
        "JSONToken.swift",
        "JSONTokenizer.swift",
        "ParsedJSON.swift",
        "SourceLocation.swift",
        "SourceLocationLite.swift",
        "StaticBuffer.swift",
        "UTF8Decoder.swift",
        "UTF8Reader.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.