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 SwiftEdgeTTS, reference main (0877a6), with Swift 6.1 for macOS (SPM) on 8 Nov 2025 11:08:10 UTC.

Swift 6 data race errors: 1

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 -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/herrkaefer/SwiftEdgeTTS.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/herrkaefer/SwiftEdgeTTS
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 0877a62 v1.2.0: Implement hardcoded voices with exact-match filtering
Cloned https://github.com/herrkaefer/SwiftEdgeTTS.git
Revision (git rev-parse @):
0877a62b3473e3af30000830bfb3028fcb9be71b
SUCCESS checkout https://github.com/herrkaefer/SwiftEdgeTTS.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/herrkaefer/SwiftEdgeTTS.git
https://github.com/herrkaefer/SwiftEdgeTTS.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftEdgeTTS",
  "name" : "SwiftEdgeTTS",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftEdgeTTS",
      "targets" : [
        "SwiftEdgeTTS"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftEdgeTTSTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftEdgeTTSTests",
      "path" : "Tests/SwiftEdgeTTSTests",
      "sources" : [
        "EdgeTTSServiceTests.swift"
      ],
      "target_dependencies" : [
        "SwiftEdgeTTS"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftEdgeTTS",
      "module_type" : "SwiftTarget",
      "name" : "SwiftEdgeTTS",
      "path" : "Sources/SwiftEdgeTTS",
      "product_memberships" : [
        "SwiftEdgeTTS"
      ],
      "sources" : [
        "EdgeTTSClient.swift",
        "EdgeTTSService.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
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 -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/5] Compiling SwiftEdgeTTS EdgeTTSClient.swift
[4/5] Compiling SwiftEdgeTTS EdgeTTSService.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftEdgeTTS/EdgeTTSService.swift:219:24: warning: static property 'hardcodedVoicesData' is not concurrency-safe because non-'Sendable' type '[String : [EdgeTTSVoice]]' may have shared mutable state; this is an error in the Swift 6 language mode
 217 |     }
 218 |
 219 |     private static let hardcodedVoicesData: [String: [EdgeTTSVoice]] = [
     |                        |- warning: static property 'hardcodedVoicesData' is not concurrency-safe because non-'Sendable' type '[String : [EdgeTTSVoice]]' may have shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: add '@MainActor' to make static property 'hardcodedVoicesData' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 220 |         "af": [
 221 |             make("af-ZA-AdriNeural", "Female", "General", "Friendly, Positive", "af-ZA"),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftEdgeTTS/EdgeTTSClient.swift:60:15: note: consider making struct 'EdgeTTSVoice' conform to the 'Sendable' protocol
 58 | /// Edge-TTS Voice model
 59 | @available(macOS 12.0, iOS 15.0, *)
 60 | public struct EdgeTTSVoice: Codable {
    |               `- note: consider making struct 'EdgeTTSVoice' conform to the 'Sendable' protocol
 61 |     public let shortName: String
 62 |     public let gender: String
[5/5] Emitting module SwiftEdgeTTS
/Users/admin/builder/spi-builder-workspace/Sources/SwiftEdgeTTS/EdgeTTSService.swift:219:24: warning: static property 'hardcodedVoicesData' is not concurrency-safe because non-'Sendable' type '[String : [EdgeTTSVoice]]' may have shared mutable state; this is an error in the Swift 6 language mode
 217 |     }
 218 |
 219 |     private static let hardcodedVoicesData: [String: [EdgeTTSVoice]] = [
     |                        |- warning: static property 'hardcodedVoicesData' is not concurrency-safe because non-'Sendable' type '[String : [EdgeTTSVoice]]' may have shared mutable state; this is an error in the Swift 6 language mode
     |                        |- note: add '@MainActor' to make static property 'hardcodedVoicesData' part of global actor 'MainActor'
     |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 220 |         "af": [
 221 |             make("af-ZA-AdriNeural", "Female", "General", "Friendly, Positive", "af-ZA"),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftEdgeTTS/EdgeTTSClient.swift:60:15: note: consider making struct 'EdgeTTSVoice' conform to the 'Sendable' protocol
 58 | /// Edge-TTS Voice model
 59 | @available(macOS 12.0, iOS 15.0, *)
 60 | public struct EdgeTTSVoice: Codable {
    |               `- note: consider making struct 'EdgeTTSVoice' conform to the 'Sendable' protocol
 61 |     public let shortName: String
 62 |     public let gender: String
Build complete! (7.94s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftEdgeTTS",
  "name" : "SwiftEdgeTTS",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftEdgeTTS",
      "targets" : [
        "SwiftEdgeTTS"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftEdgeTTSTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftEdgeTTSTests",
      "path" : "Tests/SwiftEdgeTTSTests",
      "sources" : [
        "EdgeTTSServiceTests.swift"
      ],
      "target_dependencies" : [
        "SwiftEdgeTTS"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftEdgeTTS",
      "module_type" : "SwiftTarget",
      "name" : "SwiftEdgeTTS",
      "path" : "Sources/SwiftEdgeTTS",
      "product_memberships" : [
        "SwiftEdgeTTS"
      ],
      "sources" : [
        "EdgeTTSClient.swift",
        "EdgeTTSService.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.