The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of EasyInject, reference 1.4.0 (721920), with Swift 6.0 for macOS (SPM) on 1 Nov 2024 08:36:31 UTC.

Swift 6 data race errors: 5

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/vknabel/EasyInject.git
Reference: 1.4.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/vknabel/EasyInject
 * tag               1.4.0      -> FETCH_HEAD
HEAD is now at 7219204 Upgraded to Swift 5-Package-Syntax
Cloned https://github.com/vknabel/EasyInject.git
Revision (git rev-parse @):
7219204554c55d805b0e91cdb3b5b6cd713f31b5
SUCCESS checkout https://github.com/vknabel/EasyInject.git at 1.4.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",
  "dependencies": [
    {
      "identity": "easyinject",
      "name": "EasyInject",
      "url": "https://github.com/vknabel/EasyInject.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/EasyInject",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/vknabel/EasyInject.git
[1/1176] Fetching easyinject
Fetched https://github.com/vknabel/EasyInject.git from cache (1.25s)
Creating working copy for https://github.com/vknabel/EasyInject.git
Working copy of https://github.com/vknabel/EasyInject.git resolved at 1.4.0 (7219204)
warning: '.resolve-product-dependencies': dependency 'easyinject' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/vknabel/EasyInject.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/13] Compiling EasyInject LazyInjector.swift
[4/14] Compiling EasyInject StrictlyInjectedProvider.swift
[5/14] Compiling EasyInject StrictInjector.swift
[6/14] Compiling EasyInject LazilyInjectedProvider.swift
[7/14] Compiling EasyInject GlobalInjector.swift
[8/14] Compiling EasyInject Extensions.swift
[9/14] Compiling EasyInject Core.swift
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:129:8: warning: associated value 'keyNotProvided' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
125 |
126 | /// Errors, that may occur while resolving from a `Provider`.
127 | public enum InjectionError<Key: ProvidableKey>: Error, Equatable {
    |                            `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
128 |   /// There has been no value provided with the `ProvidableKey`.
129 |   case keyNotProvided(Key)
    |        `- warning: associated value 'keyNotProvided' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
130 |
131 |   /// The given `Provider`'s `Value`-type did not match with the stored one.
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:134:8: warning: associated value 'nonMatchingType(provided:expected:)' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
132 |   /// - Note: When issue arised, you probably have defined two different `Provider`s
133 |   /// using the same `key`, but a different `Value`-Type.
134 |   case nonMatchingType(provided: Any, expected: Providable.Type)
    |        `- warning: associated value 'nonMatchingType(provided:expected:)' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
135 |
136 |   /// Any specific Error that may occur in your custom implementations.
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:141:8: warning: associated value 'cyclicDependency' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
125 |
126 | /// Errors, that may occur while resolving from a `Provider`.
127 | public enum InjectionError<Key: ProvidableKey>: Error, Equatable {
    |                            `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
128 |   /// There has been no value provided with the `ProvidableKey`.
129 |   case keyNotProvided(Key)
    :
139 |
140 |   /// Will be thrown if the dependency graph is recursive.
141 |   case cyclicDependency(Key)
    |        `- warning: associated value 'cyclicDependency' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
142 |
143 |   /// Tests for equality.
[10/14] Compiling EasyInject CoreExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/CoreExtensions.swift:104:29: warning: generic parameter 'V' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
102 |   /// - Returns: A new `Provider` with a `String` as `ProvidableKey`,
103 |   /// containing type information and the caller's `function`.
104 |   public static func derive<V: Providable, K: ProvidableKey & ExpressibleByStringLiteral>(
    |                             `- warning: generic parameter 'V' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
105 |     function: String = #function
106 |   ) -> Provider<K, V> where K.StringLiteralType == String {
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:8:42: note: 'V' previously declared here
  6 |
  7 | /// Adds type information to a `ProvidableKey`.
  8 | public struct Provider<K: ProvidableKey, V: Providable>: CustomDebugStringConvertible {
    |                                          `- note: 'V' previously declared here
  9 |   /// Type of `Providable`s that will be associated with `Provider.key`.
 10 |   public typealias Value = V
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/CoreExtensions.swift:104:44: warning: generic parameter 'K' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
102 |   /// - Returns: A new `Provider` with a `String` as `ProvidableKey`,
103 |   /// containing type information and the caller's `function`.
104 |   public static func derive<V: Providable, K: ProvidableKey & ExpressibleByStringLiteral>(
    |                                            `- warning: generic parameter 'K' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
105 |     function: String = #function
106 |   ) -> Provider<K, V> where K.StringLiteralType == String {
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:8:24: note: 'K' previously declared here
  6 |
  7 | /// Adds type information to a `ProvidableKey`.
  8 | public struct Provider<K: ProvidableKey, V: Providable>: CustomDebugStringConvertible {
    |                        `- note: 'K' previously declared here
  9 |   /// Type of `Providable`s that will be associated with `Provider.key`.
 10 |   public typealias Value = V
[11/14] Emitting module EasyInject
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:129:8: warning: associated value 'keyNotProvided' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
125 |
126 | /// Errors, that may occur while resolving from a `Provider`.
127 | public enum InjectionError<Key: ProvidableKey>: Error, Equatable {
    |                            `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
128 |   /// There has been no value provided with the `ProvidableKey`.
129 |   case keyNotProvided(Key)
    |        `- warning: associated value 'keyNotProvided' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
130 |
131 |   /// The given `Provider`'s `Value`-type did not match with the stored one.
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:134:8: warning: associated value 'nonMatchingType(provided:expected:)' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
132 |   /// - Note: When issue arised, you probably have defined two different `Provider`s
133 |   /// using the same `key`, but a different `Value`-Type.
134 |   case nonMatchingType(provided: Any, expected: Providable.Type)
    |        `- warning: associated value 'nonMatchingType(provided:expected:)' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
135 |
136 |   /// Any specific Error that may occur in your custom implementations.
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:141:8: warning: associated value 'cyclicDependency' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
125 |
126 | /// Errors, that may occur while resolving from a `Provider`.
127 | public enum InjectionError<Key: ProvidableKey>: Error, Equatable {
    |                            `- note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
128 |   /// There has been no value provided with the `ProvidableKey`.
129 |   case keyNotProvided(Key)
    :
139 |
140 |   /// Will be thrown if the dependency graph is recursive.
141 |   case cyclicDependency(Key)
    |        `- warning: associated value 'cyclicDependency' of 'Sendable'-conforming generic enum 'InjectionError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
142 |
143 |   /// Tests for equality.
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/CoreExtensions.swift:104:29: warning: generic parameter 'V' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
102 |   /// - Returns: A new `Provider` with a `String` as `ProvidableKey`,
103 |   /// containing type information and the caller's `function`.
104 |   public static func derive<V: Providable, K: ProvidableKey & ExpressibleByStringLiteral>(
    |                             `- warning: generic parameter 'V' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
105 |     function: String = #function
106 |   ) -> Provider<K, V> where K.StringLiteralType == String {
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:8:42: note: 'V' previously declared here
  6 |
  7 | /// Adds type information to a `ProvidableKey`.
  8 | public struct Provider<K: ProvidableKey, V: Providable>: CustomDebugStringConvertible {
    |                                          `- note: 'V' previously declared here
  9 |   /// Type of `Providable`s that will be associated with `Provider.key`.
 10 |   public typealias Value = V
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/CoreExtensions.swift:104:44: warning: generic parameter 'K' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
102 |   /// - Returns: A new `Provider` with a `String` as `ProvidableKey`,
103 |   /// containing type information and the caller's `function`.
104 |   public static func derive<V: Providable, K: ProvidableKey & ExpressibleByStringLiteral>(
    |                                            `- warning: generic parameter 'K' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
105 |     function: String = #function
106 |   ) -> Provider<K, V> where K.StringLiteralType == String {
/Users/admin/builder/spi-builder-workspace/Sources/EasyInject/Core.swift:8:24: note: 'K' previously declared here
  6 |
  7 | /// Adds type information to a `ProvidableKey`.
  8 | public struct Provider<K: ProvidableKey, V: Providable>: CustomDebugStringConvertible {
    |                        `- note: 'K' previously declared here
  9 |   /// Type of `Providable`s that will be associated with `Provider.key`.
 10 |   public typealias Value = V
[12/14] Compiling EasyInject AnyInjector.swift
[13/14] Compiling EasyInject ComposedInjector.swift
[14/14] Compiling EasyInject GenericProvidableKey.swift
Build complete! (6.27s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "EasyInject",
  "name" : "EasyInject",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "EasyInject",
      "targets" : [
        "EasyInject"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EasyInjectTests",
      "module_type" : "SwiftTarget",
      "name" : "EasyInjectTests",
      "path" : "Tests/EasyInjectTests",
      "sources" : [
        "AnyInjectorTests.swift",
        "AnyMutableInjectorTests.swift",
        "ComposedInjectorTests.swift",
        "EasyInjectTests.swift",
        "GenericProvidableKeyTests.swift",
        "GlobalInjectorTests.swift",
        "InjectionErrorTests.swift",
        "InjectorTestCase.swift",
        "LazyInjectorTests.swift",
        "MutableInjectorTestCase.swift",
        "StrictInjectorTests.swift"
      ],
      "target_dependencies" : [
        "EasyInject"
      ],
      "type" : "test"
    },
    {
      "c99name" : "EasyInject",
      "module_type" : "SwiftTarget",
      "name" : "EasyInject",
      "path" : "Sources/EasyInject",
      "product_memberships" : [
        "EasyInject"
      ],
      "sources" : [
        "AnyInjector.swift",
        "ComposedInjector.swift",
        "Core.swift",
        "CoreExtensions.swift",
        "Extensions.swift",
        "GenericProvidableKey.swift",
        "GlobalInjector.swift",
        "LazilyInjectedProvider.swift",
        "LazyInjector.swift",
        "StrictInjector.swift",
        "StrictlyInjectedProvider.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.