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 Swifter, reference 1.5.0 (9483a5), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 06:05:41 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/httpswift/swifter.git
Reference: 1.5.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/httpswift/swifter
 * tag               1.5.0      -> FETCH_HEAD
HEAD is now at 9483a5d Version Bump to 1.5.0
Cloned https://github.com/httpswift/swifter.git
Revision (git rev-parse @):
9483a5d459b45c3ffd059f7b55f9638e268632fd
SUCCESS checkout https://github.com/httpswift/swifter.git at 1.5.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/httpswift/swifter.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[0/7] Write Example-entitlement.plist
[1/7] Write sources
[3/7] Write swift-version-1EA4D86E10B52AF.txt
[5/26] Compiling Swifter String+File.swift
[6/26] Compiling Swifter String+Misc.swift
[7/28] Compiling Swifter HttpServerIO.swift
/Users/admin/builder/spi-builder-workspace/XCode/Sources/HttpServerIO.swift:11:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
  9 | import Dispatch
 10 |
 11 | public protocol HttpServerIODelegate: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 12 |     func socketConnectionReceived(_ socket: Socket)
 13 | }
[8/28] Compiling Swifter MimeTypes.swift
/Users/admin/builder/spi-builder-workspace/XCode/Sources/HttpServerIO.swift:11:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
  9 | import Dispatch
 10 |
 11 | public protocol HttpServerIODelegate: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 12 |     func socketConnectionReceived(_ socket: Socket)
 13 | }
[9/28] Compiling Swifter DemoServer.swift
[10/28] Compiling Swifter Errno.swift
[11/28] Compiling Swifter Process.swift
[12/28] Compiling Swifter Scopes.swift
[13/28] Compiling Swifter Socket.swift
[14/28] Compiling Swifter String+BASE64.swift
[15/28] Compiling Swifter HttpRouter.swift
[16/28] Compiling Swifter HttpServer.swift
[17/28] Compiling Swifter Files.swift
[18/28] Compiling Swifter HttpParser.swift
[19/28] Compiling Swifter HttpRequest.swift
[20/28] Compiling Swifter HttpResponse.swift
[21/28] Compiling Swifter Socket+File.swift
[22/28] Compiling Swifter Socket+Server.swift
[23/28] Emitting module Swifter
/Users/admin/builder/spi-builder-workspace/XCode/Sources/HttpServerIO.swift:11:39: warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
  9 | import Dispatch
 10 |
 11 | public protocol HttpServerIODelegate: class {
    |                                       `- warning: using 'class' keyword to define a class-constrained protocol is deprecated; use 'AnyObject' instead [#deprecation]
 12 |     func socketConnectionReceived(_ socket: Socket)
 13 | }
[24/28] Compiling Swifter String+SHA1.swift
[25/28] Compiling Swifter WebSockets.swift
[26/30] Compiling Example main.swift
[27/30] Emitting module Example
[27/30] Write Objects.LinkFileList
[28/30] Linking Example
[29/30] Applying Example
Build complete! (5.65s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Swifter",
  "name" : "Swifter",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Swifter",
      "targets" : [
        "Swifter"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "Example",
      "targets" : [
        "Example"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwifterTests",
      "module_type" : "SwiftTarget",
      "name" : "SwifterTests",
      "path" : "XCode/Tests",
      "sources" : [
        "IOSafetyTests.swift",
        "MimeTypesTests.swift",
        "PingServer.swift",
        "ServerThreadingTests.swift",
        "SwifterTestsHttpParser.swift",
        "SwifterTestsHttpResponseBody.swift",
        "SwifterTestsHttpRouter.swift",
        "SwifterTestsStringExtensions.swift",
        "SwifterTestsWebSocketSession.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Swifter"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Swifter",
      "module_type" : "SwiftTarget",
      "name" : "Swifter",
      "path" : "XCode/Sources",
      "product_memberships" : [
        "Swifter",
        "Example"
      ],
      "sources" : [
        "DemoServer.swift",
        "Errno.swift",
        "Files.swift",
        "HttpParser.swift",
        "HttpRequest.swift",
        "HttpResponse.swift",
        "HttpRouter.swift",
        "HttpServer.swift",
        "HttpServerIO.swift",
        "MimeTypes.swift",
        "Process.swift",
        "Scopes.swift",
        "Socket+File.swift",
        "Socket+Server.swift",
        "Socket.swift",
        "String+BASE64.swift",
        "String+File.swift",
        "String+Misc.swift",
        "String+SHA1.swift",
        "WebSockets.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Example",
      "module_type" : "SwiftTarget",
      "name" : "Example",
      "path" : "Example",
      "product_memberships" : [
        "Example"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Swifter"
      ],
      "type" : "executable"
    }
  ],
  "tools_version" : "5.0"
}
Done.