The Swift Package Index logo.Swift Package Index

Build Information

Successful build of tinyAPI, reference 1.0.1 (e93c7b), with Swift 6.1 for macOS (SPM) on 20 Jul 2025 19:15:59 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/roberthein/tinyAPI.git
Reference: 1.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/roberthein/tinyAPI
 * tag               1.0.1      -> FETCH_HEAD
HEAD is now at e93c7bd Make public.
Cloned https://github.com/roberthein/tinyAPI.git
Revision (git rev-parse @):
e93c7bd1f7f598b38124b874efa14d5846f7007f
SUCCESS checkout https://github.com/roberthein/tinyAPI.git at 1.0.1
========================================
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",
  "dependencies": [
    {
      "identity": "tinyapi",
      "name": "tinyAPI",
      "url": "https://github.com/roberthein/tinyAPI.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/tinyAPI",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/roberthein/tinyAPI.git
[3/27] Fetching tinyapi
Fetched https://github.com/roberthein/tinyAPI.git from cache (0.62s)
Creating working copy for https://github.com/roberthein/tinyAPI.git
Working copy of https://github.com/roberthein/tinyAPI.git resolved at 1.0.1 (e93c7bd)
warning: '.resolve-product-dependencies': dependency 'tinyapi' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/roberthein/tinyAPI.git
https://github.com/roberthein/tinyAPI.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "tinyAPI",
  "name" : "tinyAPI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "tinyAPI",
      "targets" : [
        "tinyAPI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "tinyAPI",
      "module_type" : "SwiftTarget",
      "name" : "tinyAPI",
      "path" : "Sources/tinyAPI",
      "product_memberships" : [
        "tinyAPI"
      ],
      "sources" : [
        "tinyAPI.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/4] Compiling tinyAPI tinyAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:185:5: warning: 'public' modifier is redundant for instance method declared in a public extension
183 | public extension TinyAPIClient {
184 |     // GET request
185 |     public func get<T: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
186 |         from baseURL: String,
187 |         path: String,
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:203:5: warning: 'public' modifier is redundant for instance method declared in a public extension
201 |
202 |     // POST request with Codable body
203 |     public func post<T: Codable & Sendable, U: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
204 |         to baseURL: String,
205 |         path: String,
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:222:5: warning: 'public' modifier is redundant for instance method declared in a public extension
220 |
221 |     // PUT request with Codable body
222 |     public func put<T: Codable & Sendable, U: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
223 |         to baseURL: String,
224 |         path: String,
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:241:5: warning: 'public' modifier is redundant for instance method declared in a public extension
239 |
240 |     // DELETE request
241 |     public func delete<T: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
242 |         from baseURL: String,
243 |         path: String,
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:340:5: warning: 'public' modifier is redundant for instance method declared in a public extension
338 |
339 |     // POST request with Codable body
340 |     public func post<T: Codable & Sendable, U: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
341 |         to baseURL: String,
342 |         path: String,
[4/4] Emitting module tinyAPI
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:185:5: warning: 'public' modifier is redundant for instance method declared in a public extension
183 | public extension TinyAPIClient {
184 |     // GET request
185 |     public func get<T: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
186 |         from baseURL: String,
187 |         path: String,
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:203:5: warning: 'public' modifier is redundant for instance method declared in a public extension
201 |
202 |     // POST request with Codable body
203 |     public func post<T: Codable & Sendable, U: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
204 |         to baseURL: String,
205 |         path: String,
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:222:5: warning: 'public' modifier is redundant for instance method declared in a public extension
220 |
221 |     // PUT request with Codable body
222 |     public func put<T: Codable & Sendable, U: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
223 |         to baseURL: String,
224 |         path: String,
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:241:5: warning: 'public' modifier is redundant for instance method declared in a public extension
239 |
240 |     // DELETE request
241 |     public func delete<T: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
242 |         from baseURL: String,
243 |         path: String,
/Users/admin/builder/spi-builder-workspace/Sources/tinyAPI/tinyAPI.swift:340:5: warning: 'public' modifier is redundant for instance method declared in a public extension
338 |
339 |     // POST request with Codable body
340 |     public func post<T: Codable & Sendable, U: Codable & Sendable>(
    |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
341 |         to baseURL: String,
342 |         path: String,
Build complete! (4.63s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "tinyAPI",
  "name" : "tinyAPI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "tvos",
      "version" : "15.0"
    },
    {
      "name" : "watchos",
      "version" : "8.0"
    }
  ],
  "products" : [
    {
      "name" : "tinyAPI",
      "targets" : [
        "tinyAPI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "tinyAPI",
      "module_type" : "SwiftTarget",
      "name" : "tinyAPI",
      "path" : "Sources/tinyAPI",
      "product_memberships" : [
        "tinyAPI"
      ],
      "sources" : [
        "tinyAPI.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.