Build Information
Failed to build SwiftDI, reference 1.0.1 (9fc350
), with Swift 6.1 for macOS (SPM) on 24 Apr 2025 21:54:24 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/litecode/swiftdi.git
Reference: 1.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/litecode/swiftdi
* tag 1.0.1 -> FETCH_HEAD
HEAD is now at 9fc3502 Update to new Xcode 11 beta 3 API
Cloned https://github.com/litecode/swiftdi.git
Revision (git rev-parse @):
9fc3502b1d1a48dc2d96136911f6abe279853254
SUCCESS checkout https://github.com/litecode/swiftdi.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": "swiftdi",
"name": "SwiftDI",
"url": "https://github.com/litecode/swiftdi.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swiftdi",
"dependencies": [
]
}
]
}
Fetching https://github.com/litecode/swiftdi.git
[1/1150] Fetching swiftdi
Fetched https://github.com/litecode/swiftdi.git from cache (1.15s)
Creating working copy for https://github.com/litecode/swiftdi.git
Working copy of https://github.com/litecode/swiftdi.git resolved at 1.0.1 (9fc3502)
warning: '.resolve-product-dependencies': dependency 'swiftdi' 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/litecode/swiftdi.git
https://github.com/litecode/swiftdi.git
{
"dependencies" : [
],
"manifest_display_name" : "SwiftDI",
"name" : "SwiftDI",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SwiftDI",
"targets" : [
"SwiftDI"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftDITests",
"module_type" : "SwiftTarget",
"name" : "SwiftDITests",
"path" : "Tests/SwiftDITests",
"sources" : [
"SwiftDITests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"SwiftDI"
],
"type" : "test"
},
{
"c99name" : "SwiftDI",
"module_type" : "SwiftTarget",
"name" : "SwiftDI",
"path" : "Sources",
"product_memberships" : [
"SwiftDI"
],
"sources" : [
"SwiftDI/DIComponentContext.swift",
"SwiftDI/DIComponentManager.swift",
"SwiftDI/DIContainer.swift",
"SwiftDI/DIContainerConvertible.swift",
"SwiftDI/DIObject.swift",
"SwiftDI/DIPart.swift",
"SwiftDI/Extensions.swift",
"SwiftDI/Injectable.swift",
"SwiftDI/InjectableObjectBinding.swift",
"SwiftDI/InjectableProperty.swift",
"SwiftDI/Resolver.swift",
"SwiftDI/SwiftDI.swift",
"SwiftDI/Utils.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
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/15] Compiling SwiftDI SwiftDI.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/SwiftDI.swift:8:27: warning: static property 'lifeCycle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | public enum Defaults {
7 | /// Set life time for you instantces. By default is `DILifeCycle.objectGraph`
8 | public static var lifeCycle = DILifeCycle.objectGraph
| |- warning: static property 'lifeCycle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'lifeCycle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'lifeCycle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/SwiftDI.swift:11:38: warning: static property 'sharedContainer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | }
10 |
11 | internal private(set) static var sharedContainer: DIContainerConvertible = DIContainer()
| |- warning: static property 'sharedContainer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'sharedContainer' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'sharedContainer' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | /// Use container for inject dependencies using `@Injectable` and `@InjecatableObjectBinding`.
[4/15] Compiling SwiftDI InjectableProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:107: error: cannot find type 'BindableObject' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'BindableObject' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableProperty.swift:28:11: error: 'InjectableObjectBinding' is only available in macOS 10.15 or newer
26 |
27 | @available(iOS 13.0, *)
28 | extension InjectableObjectBinding: InjectableProperty {
| | `- error: 'InjectableObjectBinding' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing extension
29 | var type: Any.Type {
30 | return BindableObjectType.self
[5/16] Compiling SwiftDI DIContainer.swift
[6/16] Compiling SwiftDI DIContainerConvertible.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[7/16] Compiling SwiftDI DIComponentContext.swift
[8/16] Compiling SwiftDI DIComponentManager.swift
[9/16] Emitting module SwiftDI
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:107: error: cannot find type 'BindableObject' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'BindableObject' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:30:29: warning: property wrapper's 'wrapperValue' property should be renamed to 'projectedValue'; use of 'wrapperValue' is deprecated
28 | }
29 |
30 | public private(set) var wrapperValue: ObjectBinding<BindableObjectType>.Wrapper
| `- warning: property wrapper's 'wrapperValue' property should be renamed to 'projectedValue'; use of 'wrapperValue' is deprecated
31 | }
32 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:30:43: error: cannot find type 'ObjectBinding' in scope
28 | }
29 |
30 | public private(set) var wrapperValue: ObjectBinding<BindableObjectType>.Wrapper
| `- error: cannot find type 'ObjectBinding' in scope
31 | }
32 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:17:24: error: cannot find type 'ObjectBinding' in scope
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
| `- error: cannot find type 'ObjectBinding' in scope
18 |
19 | public init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:60: error: cannot find type 'DynamicViewProperty' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'DynamicViewProperty' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableProperty.swift:28:11: error: 'InjectableObjectBinding' is only available in macOS 10.15 or newer
26 |
27 | @available(iOS 13.0, *)
28 | extension InjectableObjectBinding: InjectableProperty {
| | `- error: 'InjectableObjectBinding' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing extension
29 | var type: Any.Type {
30 | return BindableObjectType.self
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/SwiftDI.swift:8:27: warning: static property 'lifeCycle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
6 | public enum Defaults {
7 | /// Set life time for you instantces. By default is `DILifeCycle.objectGraph`
8 | public static var lifeCycle = DILifeCycle.objectGraph
| |- warning: static property 'lifeCycle' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'lifeCycle' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'lifeCycle' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
9 | }
10 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/SwiftDI.swift:11:38: warning: static property 'sharedContainer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
9 | }
10 |
11 | internal private(set) static var sharedContainer: DIContainerConvertible = DIContainer()
| |- warning: static property 'sharedContainer' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'sharedContainer' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'sharedContainer' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |
13 | /// Use container for inject dependencies using `@Injectable` and `@InjecatableObjectBinding`.
[10/16] Compiling SwiftDI Utils.swift
[11/16] Compiling SwiftDI Resolver.swift
[12/16] Compiling SwiftDI Extensions.swift
[13/16] Compiling SwiftDI Injectable.swift
[14/16] Compiling SwiftDI DIObject.swift
[15/16] Compiling SwiftDI DIPart.swift
[16/16] Compiling SwiftDI InjectableObjectBinding.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:107: error: cannot find type 'BindableObject' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'BindableObject' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:30:29: warning: property wrapper's 'wrapperValue' property should be renamed to 'projectedValue'; use of 'wrapperValue' is deprecated
28 | }
29 |
30 | public private(set) var wrapperValue: ObjectBinding<BindableObjectType>.Wrapper
| `- warning: property wrapper's 'wrapperValue' property should be renamed to 'projectedValue'; use of 'wrapperValue' is deprecated
31 | }
32 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:30:43: error: cannot find type 'ObjectBinding' in scope
28 | }
29 |
30 | public private(set) var wrapperValue: ObjectBinding<BindableObjectType>.Wrapper
| `- error: cannot find type 'ObjectBinding' in scope
31 | }
32 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:17:24: error: cannot find type 'ObjectBinding' in scope
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
| `- error: cannot find type 'ObjectBinding' in scope
18 |
19 | public init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:60: error: cannot find type 'DynamicViewProperty' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'DynamicViewProperty' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:20:34: error: cannot convert value of type 'BindableObjectType.Type' to expected argument type 'AnyClass' (aka 'any AnyObject.Type')
18 |
19 | public init() {
20 | let bundle = Bundle(for: BindableObjectType.self)
| `- error: cannot convert value of type 'BindableObjectType.Type' to expected argument type 'AnyClass' (aka 'any AnyObject.Type')
21 | let value: BindableObjectType = SwiftDI.sharedContainer.resolve(bundle: bundle)
22 | _bindingValue = ObjectBinding<BindableObjectType>(initialValue: value)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:22:25: error: cannot find 'ObjectBinding' in scope
20 | let bundle = Bundle(for: BindableObjectType.self)
21 | let value: BindableObjectType = SwiftDI.sharedContainer.resolve(bundle: bundle)
22 | _bindingValue = ObjectBinding<BindableObjectType>(initialValue: value)
| `- error: cannot find 'ObjectBinding' in scope
23 | self.wrapperValue = _bindingValue.wrapperValue
24 | }
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/14] Compiling SwiftDI SwiftDI.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/15] Compiling SwiftDI Extensions.swift
[4/15] Compiling SwiftDI InjectableProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:107: error: cannot find type 'BindableObject' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'BindableObject' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableProperty.swift:28:11: error: 'InjectableObjectBinding' is only available in macOS 10.15 or newer
26 |
27 | @available(iOS 13.0, *)
28 | extension InjectableObjectBinding: InjectableProperty {
| | `- error: 'InjectableObjectBinding' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing extension
29 | var type: Any.Type {
30 | return BindableObjectType.self
[5/15] Compiling SwiftDI InjectableObjectBinding.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:107: error: cannot find type 'BindableObject' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'BindableObject' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:30:29: warning: property wrapper's 'wrapperValue' property should be renamed to 'projectedValue'; use of 'wrapperValue' is deprecated
28 | }
29 |
30 | public private(set) var wrapperValue: ObjectBinding<BindableObjectType>.Wrapper
| `- warning: property wrapper's 'wrapperValue' property should be renamed to 'projectedValue'; use of 'wrapperValue' is deprecated
31 | }
32 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:30:43: error: cannot find type 'ObjectBinding' in scope
28 | }
29 |
30 | public private(set) var wrapperValue: ObjectBinding<BindableObjectType>.Wrapper
| `- error: cannot find type 'ObjectBinding' in scope
31 | }
32 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:17:24: error: cannot find type 'ObjectBinding' in scope
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
| `- error: cannot find type 'ObjectBinding' in scope
18 |
19 | public init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:60: error: cannot find type 'DynamicViewProperty' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'DynamicViewProperty' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:20:34: error: cannot convert value of type 'BindableObjectType.Type' to expected argument type 'AnyClass' (aka 'any AnyObject.Type')
18 |
19 | public init() {
20 | let bundle = Bundle(for: BindableObjectType.self)
| `- error: cannot convert value of type 'BindableObjectType.Type' to expected argument type 'AnyClass' (aka 'any AnyObject.Type')
21 | let value: BindableObjectType = SwiftDI.sharedContainer.resolve(bundle: bundle)
22 | _bindingValue = ObjectBinding<BindableObjectType>(initialValue: value)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:22:25: error: cannot find 'ObjectBinding' in scope
20 | let bundle = Bundle(for: BindableObjectType.self)
21 | let value: BindableObjectType = SwiftDI.sharedContainer.resolve(bundle: bundle)
22 | _bindingValue = ObjectBinding<BindableObjectType>(initialValue: value)
| `- error: cannot find 'ObjectBinding' in scope
23 | self.wrapperValue = _bindingValue.wrapperValue
24 | }
[6/15] Compiling SwiftDI DIContainer.swift
[7/15] Compiling SwiftDI DIContainerConvertible.swift
[8/15] Compiling SwiftDI DIComponentContext.swift
[9/15] Compiling SwiftDI DIComponentManager.swift
[10/15] Compiling SwiftDI DIObject.swift
[11/15] Compiling SwiftDI DIPart.swift
[12/15] Emitting module SwiftDI
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:107: error: cannot find type 'BindableObject' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'BindableObject' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:30:29: warning: property wrapper's 'wrapperValue' property should be renamed to 'projectedValue'; use of 'wrapperValue' is deprecated
28 | }
29 |
30 | public private(set) var wrapperValue: ObjectBinding<BindableObjectType>.Wrapper
| `- warning: property wrapper's 'wrapperValue' property should be renamed to 'projectedValue'; use of 'wrapperValue' is deprecated
31 | }
32 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:30:43: error: cannot find type 'ObjectBinding' in scope
28 | }
29 |
30 | public private(set) var wrapperValue: ObjectBinding<BindableObjectType>.Wrapper
| `- error: cannot find type 'ObjectBinding' in scope
31 | }
32 | #endif
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:17:24: error: cannot find type 'ObjectBinding' in scope
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
| `- error: cannot find type 'ObjectBinding' in scope
18 |
19 | public init() {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableObjectBinding.swift:15:60: error: cannot find type 'DynamicViewProperty' in scope
13 | @available(iOS 13.0, OSX 10.15, tvOS 13.0, watchOS 6.0, *)
14 | @propertyWrapper
15 | public struct InjectableObjectBinding<BindableObjectType>: DynamicViewProperty where BindableObjectType : BindableObject {
| `- error: cannot find type 'DynamicViewProperty' in scope
16 |
17 | var _bindingValue: ObjectBinding<BindableObjectType>
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDI/InjectableProperty.swift:28:11: error: 'InjectableObjectBinding' is only available in macOS 10.15 or newer
26 |
27 | @available(iOS 13.0, *)
28 | extension InjectableObjectBinding: InjectableProperty {
| | `- error: 'InjectableObjectBinding' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing extension
29 | var type: Any.Type {
30 | return BindableObjectType.self
[13/15] Compiling SwiftDI Injectable.swift
[14/15] Compiling SwiftDI Resolver.swift
[15/15] Compiling SwiftDI Utils.swift
BUILD FAILURE 6.1 macosSpm