Build Information
Successful build of SwiftOCA, reference main (097833
), with Swift 6.0 for macOS (SPM) on 14 Sep 2025 01:46:03 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Build Log
189 |
190 | public func propertyKeyPath(for name: String) async -> AnyKeyPath? {
191 | await OcaPropertyKeyPathCache.shared.lookupProperty(byName: name, for: self)
| `- warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
192 | }
193 | }
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:282:19: warning: converting non-sendable function value to '@Sendable (OcaEvent, Data) async throws -> ()' may introduce data races
280 | label: "com.padl.SwiftOCA.OcaRoot",
281 | event: event,
282 | callback: onPropertyEvent
| `- warning: converting non-sendable function value to '@Sendable (OcaEvent, Data) async throws -> ()' may introduce data races
283 | )
284 | } catch Ocp1Error.alreadySubscribedToEvent {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:160:27: warning: passing closure as a 'sending' parameter risks causing data races between global actor 'OcaConnection'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
158 | ) { taskGroup in
159 | for (_, propertyKeyPath) in await allPropertyKeyPaths {
160 | taskGroup.addTask {
| `- warning: passing closure as a 'sending' parameter risks causing data races between global actor 'OcaConnection'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
161 | let property =
162 | self[keyPath: propertyKeyPath] as! (any OcaPropertySubjectRepresentable)
| `- note: closure captures 'propertyKeyPath' which is accessible to global actor 'OcaConnection'-isolated code
163 | var dict = [String: Sendable]()
164 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:301:22: warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
299 | for (_, keyPath) in await allPropertyKeyPaths {
300 | let property = (self[keyPath: keyPath] as! any OcaPropertyRepresentable)
301 | await property.refresh(self)
| |- warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending global actor 'OcaConnection'-isolated 'property' to nonisolated instance method 'refresh' risks causing data races between nonisolated and global actor 'OcaConnection'-isolated uses
302 | }
303 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:313:22: warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
311 | // reconnection time
312 | guard property.hasValueOrError, !property.isImmutable else { continue }
313 | await property.refreshAndSubscribe(self)
| |- warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending global actor 'OcaConnection'-isolated 'property' to nonisolated callee risks causing data races between nonisolated and global actor 'OcaConnection'-isolated uses
314 | }
315 | }
[673/778] Compiling SwiftOCA Gain.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:166:40: warning: conditional cast from '[String : Any]' to '[String : any Sendable]' always succeeds
164 |
165 | if let jsonValue = try? await property.getJsonValue(self, flags: flags),
166 | let jsonValue = jsonValue as? [String: Sendable]
| `- warning: conditional cast from '[String : Any]' to '[String : any Sendable]' always succeeds
167 | {
168 | dict.merge(jsonValue) { current, _ in current }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:159:41: warning: non-sendable type '[String : AnyKeyPath]' in asynchronous access to global actor 'OcaConnection'-isolated property 'allPropertyKeyPaths' cannot cross actor boundary; this is an error in the Swift 6 language mode
157 | returning: [String: Sendable].self
158 | ) { taskGroup in
159 | for (_, propertyKeyPath) in await allPropertyKeyPaths {
| `- warning: non-sendable type '[String : AnyKeyPath]' in asynchronous access to global actor 'OcaConnection'-isolated property 'allPropertyKeyPaths' cannot cross actor boundary; this is an error in the Swift 6 language mode
160 | taskGroup.addTask {
161 | let property =
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:187:42: warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
185 |
186 | public func propertyKeyPath(for propertyID: OcaPropertyID) async -> AnyKeyPath? {
187 | await OcaPropertyKeyPathCache.shared.lookupProperty(byID: propertyID, for: self)
| `- warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
188 | }
189 |
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:191:42: warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
189 |
190 | public func propertyKeyPath(for name: String) async -> AnyKeyPath? {
191 | await OcaPropertyKeyPathCache.shared.lookupProperty(byName: name, for: self)
| `- warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
192 | }
193 | }
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:282:19: warning: converting non-sendable function value to '@Sendable (OcaEvent, Data) async throws -> ()' may introduce data races
280 | label: "com.padl.SwiftOCA.OcaRoot",
281 | event: event,
282 | callback: onPropertyEvent
| `- warning: converting non-sendable function value to '@Sendable (OcaEvent, Data) async throws -> ()' may introduce data races
283 | )
284 | } catch Ocp1Error.alreadySubscribedToEvent {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:160:27: warning: passing closure as a 'sending' parameter risks causing data races between global actor 'OcaConnection'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
158 | ) { taskGroup in
159 | for (_, propertyKeyPath) in await allPropertyKeyPaths {
160 | taskGroup.addTask {
| `- warning: passing closure as a 'sending' parameter risks causing data races between global actor 'OcaConnection'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
161 | let property =
162 | self[keyPath: propertyKeyPath] as! (any OcaPropertySubjectRepresentable)
| `- note: closure captures 'propertyKeyPath' which is accessible to global actor 'OcaConnection'-isolated code
163 | var dict = [String: Sendable]()
164 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:301:22: warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
299 | for (_, keyPath) in await allPropertyKeyPaths {
300 | let property = (self[keyPath: keyPath] as! any OcaPropertyRepresentable)
301 | await property.refresh(self)
| |- warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending global actor 'OcaConnection'-isolated 'property' to nonisolated instance method 'refresh' risks causing data races between nonisolated and global actor 'OcaConnection'-isolated uses
302 | }
303 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:313:22: warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
311 | // reconnection time
312 | guard property.hasValueOrError, !property.isImmutable else { continue }
313 | await property.refreshAndSubscribe(self)
| |- warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending global actor 'OcaConnection'-isolated 'property' to nonisolated callee risks causing data races between nonisolated and global actor 'OcaConnection'-isolated uses
314 | }
315 | }
[674/778] Compiling SwiftOCA Mute.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:166:40: warning: conditional cast from '[String : Any]' to '[String : any Sendable]' always succeeds
164 |
165 | if let jsonValue = try? await property.getJsonValue(self, flags: flags),
166 | let jsonValue = jsonValue as? [String: Sendable]
| `- warning: conditional cast from '[String : Any]' to '[String : any Sendable]' always succeeds
167 | {
168 | dict.merge(jsonValue) { current, _ in current }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:159:41: warning: non-sendable type '[String : AnyKeyPath]' in asynchronous access to global actor 'OcaConnection'-isolated property 'allPropertyKeyPaths' cannot cross actor boundary; this is an error in the Swift 6 language mode
157 | returning: [String: Sendable].self
158 | ) { taskGroup in
159 | for (_, propertyKeyPath) in await allPropertyKeyPaths {
| `- warning: non-sendable type '[String : AnyKeyPath]' in asynchronous access to global actor 'OcaConnection'-isolated property 'allPropertyKeyPaths' cannot cross actor boundary; this is an error in the Swift 6 language mode
160 | taskGroup.addTask {
161 | let property =
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:187:42: warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
185 |
186 | public func propertyKeyPath(for propertyID: OcaPropertyID) async -> AnyKeyPath? {
187 | await OcaPropertyKeyPathCache.shared.lookupProperty(byID: propertyID, for: self)
| `- warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
188 | }
189 |
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:191:42: warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
189 |
190 | public func propertyKeyPath(for name: String) async -> AnyKeyPath? {
191 | await OcaPropertyKeyPathCache.shared.lookupProperty(byName: name, for: self)
| `- warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
192 | }
193 | }
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:282:19: warning: converting non-sendable function value to '@Sendable (OcaEvent, Data) async throws -> ()' may introduce data races
280 | label: "com.padl.SwiftOCA.OcaRoot",
281 | event: event,
282 | callback: onPropertyEvent
| `- warning: converting non-sendable function value to '@Sendable (OcaEvent, Data) async throws -> ()' may introduce data races
283 | )
284 | } catch Ocp1Error.alreadySubscribedToEvent {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:160:27: warning: passing closure as a 'sending' parameter risks causing data races between global actor 'OcaConnection'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
158 | ) { taskGroup in
159 | for (_, propertyKeyPath) in await allPropertyKeyPaths {
160 | taskGroup.addTask {
| `- warning: passing closure as a 'sending' parameter risks causing data races between global actor 'OcaConnection'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
161 | let property =
162 | self[keyPath: propertyKeyPath] as! (any OcaPropertySubjectRepresentable)
| `- note: closure captures 'propertyKeyPath' which is accessible to global actor 'OcaConnection'-isolated code
163 | var dict = [String: Sendable]()
164 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:301:22: warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
299 | for (_, keyPath) in await allPropertyKeyPaths {
300 | let property = (self[keyPath: keyPath] as! any OcaPropertyRepresentable)
301 | await property.refresh(self)
| |- warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending global actor 'OcaConnection'-isolated 'property' to nonisolated instance method 'refresh' risks causing data races between nonisolated and global actor 'OcaConnection'-isolated uses
302 | }
303 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:313:22: warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
311 | // reconnection time
312 | guard property.hasValueOrError, !property.isImmutable else { continue }
313 | await property.refreshAndSubscribe(self)
| |- warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending global actor 'OcaConnection'-isolated 'property' to nonisolated callee risks causing data races between nonisolated and global actor 'OcaConnection'-isolated uses
314 | }
315 | }
[675/778] Compiling SwiftOCA PanBalance.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:166:40: warning: conditional cast from '[String : Any]' to '[String : any Sendable]' always succeeds
164 |
165 | if let jsonValue = try? await property.getJsonValue(self, flags: flags),
166 | let jsonValue = jsonValue as? [String: Sendable]
| `- warning: conditional cast from '[String : Any]' to '[String : any Sendable]' always succeeds
167 | {
168 | dict.merge(jsonValue) { current, _ in current }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:159:41: warning: non-sendable type '[String : AnyKeyPath]' in asynchronous access to global actor 'OcaConnection'-isolated property 'allPropertyKeyPaths' cannot cross actor boundary; this is an error in the Swift 6 language mode
157 | returning: [String: Sendable].self
158 | ) { taskGroup in
159 | for (_, propertyKeyPath) in await allPropertyKeyPaths {
| `- warning: non-sendable type '[String : AnyKeyPath]' in asynchronous access to global actor 'OcaConnection'-isolated property 'allPropertyKeyPaths' cannot cross actor boundary; this is an error in the Swift 6 language mode
160 | taskGroup.addTask {
161 | let property =
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:187:42: warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
185 |
186 | public func propertyKeyPath(for propertyID: OcaPropertyID) async -> AnyKeyPath? {
187 | await OcaPropertyKeyPathCache.shared.lookupProperty(byID: propertyID, for: self)
| `- warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
188 | }
189 |
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:191:42: warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
189 |
190 | public func propertyKeyPath(for name: String) async -> AnyKeyPath? {
191 | await OcaPropertyKeyPathCache.shared.lookupProperty(byName: name, for: self)
| `- warning: non-sendable type 'AnyKeyPath?' returned by call to global actor 'OcaConnection'-isolated function cannot cross actor boundary; this is an error in the Swift 6 language mode
192 | }
193 | }
Swift.AnyKeyPath:1:14: note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
1 | public class AnyKeyPath : _AppendKeyPath {
| `- note: class 'AnyKeyPath' does not conform to the 'Sendable' protocol
2 | @inlinable public static var rootType: any Any.Type { get }
3 | @inlinable public static var valueType: any Any.Type { get }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:282:19: warning: converting non-sendable function value to '@Sendable (OcaEvent, Data) async throws -> ()' may introduce data races
280 | label: "com.padl.SwiftOCA.OcaRoot",
281 | event: event,
282 | callback: onPropertyEvent
| `- warning: converting non-sendable function value to '@Sendable (OcaEvent, Data) async throws -> ()' may introduce data races
283 | )
284 | } catch Ocp1Error.alreadySubscribedToEvent {
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:160:27: warning: passing closure as a 'sending' parameter risks causing data races between global actor 'OcaConnection'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
158 | ) { taskGroup in
159 | for (_, propertyKeyPath) in await allPropertyKeyPaths {
160 | taskGroup.addTask {
| `- warning: passing closure as a 'sending' parameter risks causing data races between global actor 'OcaConnection'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
161 | let property =
162 | self[keyPath: propertyKeyPath] as! (any OcaPropertySubjectRepresentable)
| `- note: closure captures 'propertyKeyPath' which is accessible to global actor 'OcaConnection'-isolated code
163 | var dict = [String: Sendable]()
164 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:301:22: warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
299 | for (_, keyPath) in await allPropertyKeyPaths {
300 | let property = (self[keyPath: keyPath] as! any OcaPropertyRepresentable)
301 | await property.refresh(self)
| |- warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending global actor 'OcaConnection'-isolated 'property' to nonisolated instance method 'refresh' risks causing data races between nonisolated and global actor 'OcaConnection'-isolated uses
302 | }
303 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/ControlClasses/Root.swift:313:22: warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
311 | // reconnection time
312 | guard property.hasValueOrError, !property.isImmutable else { continue }
313 | await property.refreshAndSubscribe(self)
| |- warning: sending 'property' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending global actor 'OcaConnection'-isolated 'property' to nonisolated callee risks causing data races between nonisolated and global actor 'OcaConnection'-isolated uses
314 | }
315 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCC/PropertyTypes/Property.swift:266:44: warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
264 | let observableSendHelper: ObservableSendHelper = { @Sendable [subject] object, newValue in
265 | guard let object else { return }
266 | (object as! T).withMutation(keyPath: wrappedKeyPath) {
| `- warning: capture of 'wrappedKeyPath' with non-sendable type 'ReferenceWritableKeyPath<T, OcaProperty<Value>.PropertyValue>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
267 | subject.send(newValue)
268 | }
Swift.ReferenceWritableKeyPath:1:14: note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
1 | public class ReferenceWritableKeyPath<Root, Value> : WritableKeyPath<Root, Value> {
| `- note: generic class 'ReferenceWritableKeyPath' does not conform to the 'Sendable' protocol
2 | @objc deinit
3 | }
[689/778] Compiling SwiftOCA Response.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[690/778] Compiling SwiftOCA Ocp1CFSocketConnection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[691/778] Compiling SwiftOCA Ocp1FlyingSocksConnection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[692/778] Compiling SwiftOCA Ocp1IORingConnection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[693/778] Compiling SwiftOCA Ocp1NWConnection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[694/778] Compiling SwiftOCA KeyedBinaryDecodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[695/778] Compiling SwiftOCA SingleValueBinaryDecodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[696/778] Compiling SwiftOCA UnkeyedBinaryDecodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[697/778] Compiling SwiftOCA Ocp1Decoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[698/778] Compiling SwiftOCA Ocp1DecoderImpl.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[699/778] Compiling SwiftOCA Ocp1DecodingState.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[700/778] Compiling SwiftOCA KeyedOcp1EncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[701/778] Compiling SwiftOCA SingleValueOcp1EncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1CFSocketConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:26:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
24 | #else
25 | @preconcurrency
26 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCA' may lead to instability during execution
27 | #endif
28 | import Foundation
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Backend/Ocp1NWConnection.swift:82:37: warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
80 | super.init(options: options)
81 | nwConnection = try NWConnection(to: nwEndpoint, using: parameters)
82 | nwConnection.stateUpdateHandler = { [weak self] state in
| `- warning: converting non-sendable function value to '@Sendable (NWConnection.State) -> Void' may introduce data races
83 | if let self, state == .cancelled {
84 | Task { try await self.disconnect() }
[702/778] Compiling SwiftOCA List2D.swift
[703/778] Compiling SwiftOCA Agent.swift
[704/778] Compiling SwiftOCA CounterNotifier.swift
[705/778] Compiling SwiftOCA CounterSetAgent.swift
[706/778] Compiling SwiftOCA EventHandler.swift
[707/778] Compiling SwiftOCA Group.swift
[708/778] Compiling SwiftOCA Grouper.swift
[709/778] Compiling SwiftOCA MediaClock3.swift
[710/778] Compiling SwiftOCA PhysicalPosition.swift
[711/778] Compiling SwiftOCA TimeSource.swift
[712/778] Compiling SwiftOCA ApplicationNetwork.swift
[713/778] Compiling SwiftOCA ControlNetwork.swift
[714/778] Compiling SwiftOCA MediaTransportNetwork.swift
[715/778] Compiling SwiftOCA Dataset.swift
[716/778] Compiling SwiftOCA Polarity.swift
[717/778] Compiling SwiftOCA SignalInput.swift
[718/778] Compiling SwiftOCA SignalOutput.swift
[719/778] Compiling SwiftOCA SummingPoint.swift
[720/778] Compiling SwiftOCA Switch.swift
[721/778] Compiling SwiftOCA Block.swift
[722/778] Compiling SwiftOCA Matrix.swift
[723/778] Compiling SwiftOCA DataSetWorker.swift
[724/778] Compiling SwiftOCA MediaRecorderPlayer.swift
[725/778] Compiling SwiftOCA AudioLevelSensor.swift
[726/778] Compiling SwiftOCA BasicSensors.swift
[727/778] Compiling SwiftOCA IdentificationSensor.swift
[728/778] Compiling SwiftOCA LevelSensor.swift
[729/778] Compiling SwiftOCA Sensor.swift
[730/778] Compiling SwiftOCA MediaClockDataTypes.swift
[731/778] Compiling SwiftOCA MediaDataTypes.swift
[732/778] Compiling SwiftOCA MediaStreamDataTypes.swift
[733/778] Compiling SwiftOCA MiscFrameworkDataTypes.swift
[734/778] Compiling SwiftOCA ModelDataTypes.swift
[735/778] Compiling SwiftOCA NetworkApplicationDataTypes.swift
[736/778] Compiling SwiftOCA NetworkDataTypes.swift
[737/778] Compiling SwiftOCA PowerManagerDataTypes.swift
[738/778] Compiling SwiftOCA ProgrammingDataTypes.swift
[739/778] Compiling SwiftOCA SearchDataTypes.swift
[740/778] Compiling SwiftOCA TaskManagerDataTypes.swift
[741/778] Compiling SwiftOCA TimeDataTypes.swift
[742/778] Compiling SwiftOCA WellKnownObjectNumbers.swift
[757/778] Compiling SwiftOCA UnkeyedOcp1EncodingContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[758/778] Compiling SwiftOCA Ocp1Encoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[759/778] Compiling SwiftOCA Ocp1EncoderImpl.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[760/778] Compiling SwiftOCA Ocp1EncodingState.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[761/778] Compiling SwiftOCA Ocp1CoderAPI.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[762/778] Compiling SwiftOCA Ocp1Connection+Codable.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[763/778] Compiling SwiftOCA Ocp1Connection+Connect.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[764/778] Compiling SwiftOCA Ocp1Connection+Messages.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[765/778] Compiling SwiftOCA Ocp1Connection+Objects.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[766/778] Compiling SwiftOCA Ocp1Connection+Subscribe.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[767/778] Compiling SwiftOCA Ocp1Connection.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[768/778] Compiling SwiftOCA Ocp1ConnectionMonitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[769/778] Compiling SwiftOCA ReflectionMirror.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCA/OCP.1/Ocp1Connection.swift:352:9: warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
270 | @OcaConnection
271 | final class Monitor: @unchecked
272 | Sendable, CustomStringConvertible {
| `- note: add '@preconcurrency' to the 'CustomStringConvertible' conformance to defer isolation checking to run time
273 | typealias Continuation = UnsafeContinuation<Ocp1Response, Error>
274 |
:
350 | }
351 |
352 | var description: String {
| `- warning: global actor 'OcaConnection'-isolated property 'description' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
353 | let connectionString: String = if let connection { connection.description }
354 | else { "<null>" }
Swift.CustomStringConvertible:2:9: note: 'description' declared here
1 | public protocol CustomStringConvertible {
2 | var description: String { get }
| `- note: 'description' declared here
3 | }
[770/883] Emitting module OCAEventBenchmark
[771/883] Compiling OCAEventBenchmark EventBenchmark.swift
[771/883] Write Objects.LinkFileList
[773/883] Emitting module SwiftOCADevice
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFController.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFDeviceEndpoint.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:138:16: warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
115 | var sdRef: DNSServiceRef?
116 |
117 | let error = txtRecordBuffer.withUnsafeBufferPointer { txtRecordBufferPointer in
| `- note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from this init
118 | DNSServiceRegister(
119 | &sdRef,
:
136 | }
137 |
138 | self.sdRef = sdRef
| `- warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
139 | }
140 |
[774/890] Compiling SwiftOCADevice Ocp1FlyingFoxDeviceEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramController.swift:76:50: warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
74 | let localAddress = localAddress != nil ? AnySocketAddress(localAddress!) : nil
75 |
76 | try await sendOcp1EncodedMessage(AsyncSocket.Message(
| |- warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
| `- note: use 'init(peerAddress:payload:)' instead
77 | peerAddress: peerAddress,
78 | bytes: Array(data),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramDeviceEndpoint.swift:202:81: warning: 'bytes' is deprecated: renamed to 'payload'
200 | )
201 | do {
202 | let messages = try await controller.decodeMessages(from: messagePdu.bytes)
| |- warning: 'bytes' is deprecated: renamed to 'payload'
| `- note: use 'payload' instead
203 | for (message, rrq) in messages {
204 | try await controller.handle(for: self, message: message, rrq: rrq)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksStreamController.swift:194:31: warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
189 |
190 | extension OcaDevice {
191 | static func asyncReceiveMessages(_ read: (Int) async throws -> [UInt8]) async throws
| `- note: parameter 'read' is implicitly non-sendable
192 | -> AsyncSyncSequence<[Ocp1ControllerInternal.ControllerMessage]>
193 | {
194 | try await receiveMessages(read).async
| `- warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
195 | }
196 | }
[775/890] Compiling SwiftOCADevice Ocp1FlyingSocksDatagramController.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramController.swift:76:50: warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
74 | let localAddress = localAddress != nil ? AnySocketAddress(localAddress!) : nil
75 |
76 | try await sendOcp1EncodedMessage(AsyncSocket.Message(
| |- warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
| `- note: use 'init(peerAddress:payload:)' instead
77 | peerAddress: peerAddress,
78 | bytes: Array(data),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramDeviceEndpoint.swift:202:81: warning: 'bytes' is deprecated: renamed to 'payload'
200 | )
201 | do {
202 | let messages = try await controller.decodeMessages(from: messagePdu.bytes)
| |- warning: 'bytes' is deprecated: renamed to 'payload'
| `- note: use 'payload' instead
203 | for (message, rrq) in messages {
204 | try await controller.handle(for: self, message: message, rrq: rrq)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksStreamController.swift:194:31: warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
189 |
190 | extension OcaDevice {
191 | static func asyncReceiveMessages(_ read: (Int) async throws -> [UInt8]) async throws
| `- note: parameter 'read' is implicitly non-sendable
192 | -> AsyncSyncSequence<[Ocp1ControllerInternal.ControllerMessage]>
193 | {
194 | try await receiveMessages(read).async
| `- warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
195 | }
196 | }
[776/890] Compiling SwiftOCADevice Ocp1FlyingSocksDatagramDeviceEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramController.swift:76:50: warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
74 | let localAddress = localAddress != nil ? AnySocketAddress(localAddress!) : nil
75 |
76 | try await sendOcp1EncodedMessage(AsyncSocket.Message(
| |- warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
| `- note: use 'init(peerAddress:payload:)' instead
77 | peerAddress: peerAddress,
78 | bytes: Array(data),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramDeviceEndpoint.swift:202:81: warning: 'bytes' is deprecated: renamed to 'payload'
200 | )
201 | do {
202 | let messages = try await controller.decodeMessages(from: messagePdu.bytes)
| |- warning: 'bytes' is deprecated: renamed to 'payload'
| `- note: use 'payload' instead
203 | for (message, rrq) in messages {
204 | try await controller.handle(for: self, message: message, rrq: rrq)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksStreamController.swift:194:31: warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
189 |
190 | extension OcaDevice {
191 | static func asyncReceiveMessages(_ read: (Int) async throws -> [UInt8]) async throws
| `- note: parameter 'read' is implicitly non-sendable
192 | -> AsyncSyncSequence<[Ocp1ControllerInternal.ControllerMessage]>
193 | {
194 | try await receiveMessages(read).async
| `- warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
195 | }
196 | }
[777/890] Compiling SwiftOCADevice Ocp1FlyingSocksLogging.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramController.swift:76:50: warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
74 | let localAddress = localAddress != nil ? AnySocketAddress(localAddress!) : nil
75 |
76 | try await sendOcp1EncodedMessage(AsyncSocket.Message(
| |- warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
| `- note: use 'init(peerAddress:payload:)' instead
77 | peerAddress: peerAddress,
78 | bytes: Array(data),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramDeviceEndpoint.swift:202:81: warning: 'bytes' is deprecated: renamed to 'payload'
200 | )
201 | do {
202 | let messages = try await controller.decodeMessages(from: messagePdu.bytes)
| |- warning: 'bytes' is deprecated: renamed to 'payload'
| `- note: use 'payload' instead
203 | for (message, rrq) in messages {
204 | try await controller.handle(for: self, message: message, rrq: rrq)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksStreamController.swift:194:31: warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
189 |
190 | extension OcaDevice {
191 | static func asyncReceiveMessages(_ read: (Int) async throws -> [UInt8]) async throws
| `- note: parameter 'read' is implicitly non-sendable
192 | -> AsyncSyncSequence<[Ocp1ControllerInternal.ControllerMessage]>
193 | {
194 | try await receiveMessages(read).async
| `- warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
195 | }
196 | }
[778/890] Compiling SwiftOCADevice Ocp1FlyingSocksStreamController.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramController.swift:76:50: warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
74 | let localAddress = localAddress != nil ? AnySocketAddress(localAddress!) : nil
75 |
76 | try await sendOcp1EncodedMessage(AsyncSocket.Message(
| |- warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
| `- note: use 'init(peerAddress:payload:)' instead
77 | peerAddress: peerAddress,
78 | bytes: Array(data),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramDeviceEndpoint.swift:202:81: warning: 'bytes' is deprecated: renamed to 'payload'
200 | )
201 | do {
202 | let messages = try await controller.decodeMessages(from: messagePdu.bytes)
| |- warning: 'bytes' is deprecated: renamed to 'payload'
| `- note: use 'payload' instead
203 | for (message, rrq) in messages {
204 | try await controller.handle(for: self, message: message, rrq: rrq)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksStreamController.swift:194:31: warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
189 |
190 | extension OcaDevice {
191 | static func asyncReceiveMessages(_ read: (Int) async throws -> [UInt8]) async throws
| `- note: parameter 'read' is implicitly non-sendable
192 | -> AsyncSyncSequence<[Ocp1ControllerInternal.ControllerMessage]>
193 | {
194 | try await receiveMessages(read).async
| `- warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
195 | }
196 | }
[779/890] Compiling SwiftOCADevice Ocp1FlyingSocksStreamDeviceEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramController.swift:76:50: warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
74 | let localAddress = localAddress != nil ? AnySocketAddress(localAddress!) : nil
75 |
76 | try await sendOcp1EncodedMessage(AsyncSocket.Message(
| |- warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
| `- note: use 'init(peerAddress:payload:)' instead
77 | peerAddress: peerAddress,
78 | bytes: Array(data),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramDeviceEndpoint.swift:202:81: warning: 'bytes' is deprecated: renamed to 'payload'
200 | )
201 | do {
202 | let messages = try await controller.decodeMessages(from: messagePdu.bytes)
| |- warning: 'bytes' is deprecated: renamed to 'payload'
| `- note: use 'payload' instead
203 | for (message, rrq) in messages {
204 | try await controller.handle(for: self, message: message, rrq: rrq)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksStreamController.swift:194:31: warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
189 |
190 | extension OcaDevice {
191 | static func asyncReceiveMessages(_ read: (Int) async throws -> [UInt8]) async throws
| `- note: parameter 'read' is implicitly non-sendable
192 | -> AsyncSyncSequence<[Ocp1ControllerInternal.ControllerMessage]>
193 | {
194 | try await receiveMessages(read).async
| `- warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
195 | }
196 | }
[780/890] Compiling SwiftOCADevice Ocp1IORingController.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramController.swift:76:50: warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
74 | let localAddress = localAddress != nil ? AnySocketAddress(localAddress!) : nil
75 |
76 | try await sendOcp1EncodedMessage(AsyncSocket.Message(
| |- warning: 'init(peerAddress:bytes:interfaceIndex:localAddress:)' is deprecated: replaced by 'init(peerAddress:payload:)'
| `- note: use 'init(peerAddress:payload:)' instead
77 | peerAddress: peerAddress,
78 | bytes: Array(data),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramDeviceEndpoint.swift:202:81: warning: 'bytes' is deprecated: renamed to 'payload'
200 | )
201 | do {
202 | let messages = try await controller.decodeMessages(from: messagePdu.bytes)
| |- warning: 'bytes' is deprecated: renamed to 'payload'
| `- note: use 'payload' instead
203 | for (message, rrq) in messages {
204 | try await controller.handle(for: self, message: message, rrq: rrq)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksStreamController.swift:194:31: warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
189 |
190 | extension OcaDevice {
191 | static func asyncReceiveMessages(_ read: (Int) async throws -> [UInt8]) async throws
| `- note: parameter 'read' is implicitly non-sendable
192 | -> AsyncSyncSequence<[Ocp1ControllerInternal.ControllerMessage]>
193 | {
194 | try await receiveMessages(read).async
| `- warning: passing non-sendable parameter 'read' to function expecting a @Sendable closure
195 | }
196 | }
[781/890] Compiling SwiftOCADevice DeviceTimeManager.swift
[782/890] Compiling SwiftOCADevice DiagnosticManager.swift
[783/890] Compiling SwiftOCADevice FirmwareManager.swift
[784/890] Compiling SwiftOCADevice LockManager.swift
[785/890] Compiling SwiftOCADevice Manager.swift
[786/890] Compiling SwiftOCADevice MediaClockManager.swift
[787/890] Compiling SwiftOCADevice NetworkManager.swift
[788/890] Compiling SwiftOCADevice SubscriptionManager.swift
[789/890] Compiling SwiftOCADevice AudioLevelSensor.swift
[790/890] Compiling SwiftOCADevice BasicSensors.swift
[791/890] Compiling SwiftOCADevice IdentificationSensor.swift
[792/890] Compiling SwiftOCADevice LevelSensor.swift
[793/890] Compiling SwiftOCADevice Sensor.swift
[794/890] Compiling SwiftOCADevice TemperatureSensor.swift
[795/890] Compiling SwiftOCADevice Worker.swift
[796/890] Compiling SwiftOCADevice BoundedDeviceProperty.swift
[797/890] Compiling SwiftOCADevice DeviceProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFController.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFDeviceEndpoint.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:67:37: warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
65 |
66 | var messages: AsyncExtensions.AnyAsyncSequence<ControllerMessage> {
67 | inputStream.ocp1DecodedMessages.eraseToAnyAsyncSequence()
| `- warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:19:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
17 | #if os(macOS) || os(iOS)
18 |
19 | import AsyncExtensions
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
20 | import FlyingFox
21 | import FlyingSocks
[798/890] Compiling SwiftOCADevice VectorDeviceProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFController.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFDeviceEndpoint.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:67:37: warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
65 |
66 | var messages: AsyncExtensions.AnyAsyncSequence<ControllerMessage> {
67 | inputStream.ocp1DecodedMessages.eraseToAnyAsyncSequence()
| `- warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:19:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
17 | #if os(macOS) || os(iOS)
18 |
19 | import AsyncExtensions
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
20 | import FlyingFox
21 | import FlyingSocks
[799/890] Compiling SwiftOCADevice Ocp1CFController.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFController.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFDeviceEndpoint.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:67:37: warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
65 |
66 | var messages: AsyncExtensions.AnyAsyncSequence<ControllerMessage> {
67 | inputStream.ocp1DecodedMessages.eraseToAnyAsyncSequence()
| `- warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:19:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
17 | #if os(macOS) || os(iOS)
18 |
19 | import AsyncExtensions
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
20 | import FlyingFox
21 | import FlyingSocks
[800/890] Compiling SwiftOCADevice Ocp1CFDeviceEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFController.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFDeviceEndpoint.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:67:37: warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
65 |
66 | var messages: AsyncExtensions.AnyAsyncSequence<ControllerMessage> {
67 | inputStream.ocp1DecodedMessages.eraseToAnyAsyncSequence()
| `- warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:19:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
17 | #if os(macOS) || os(iOS)
18 |
19 | import AsyncExtensions
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
20 | import FlyingFox
21 | import FlyingSocks
[801/890] Compiling SwiftOCADevice DatagramProxyController.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFController.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFDeviceEndpoint.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:67:37: warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
65 |
66 | var messages: AsyncExtensions.AnyAsyncSequence<ControllerMessage> {
67 | inputStream.ocp1DecodedMessages.eraseToAnyAsyncSequence()
| `- warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:19:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
17 | #if os(macOS) || os(iOS)
18 |
19 | import AsyncExtensions
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
20 | import FlyingFox
21 | import FlyingSocks
[802/890] Compiling SwiftOCADevice DatagramProxyDeviceEndpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFController.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFDeviceEndpoint.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:67:37: warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
65 |
66 | var messages: AsyncExtensions.AnyAsyncSequence<ControllerMessage> {
67 | inputStream.ocp1DecodedMessages.eraseToAnyAsyncSequence()
| `- warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:19:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
17 | #if os(macOS) || os(iOS)
18 |
19 | import AsyncExtensions
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
20 | import FlyingFox
21 | import FlyingSocks
[803/890] Compiling SwiftOCADevice Ocp1FlyingFoxController.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFController.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/CF/Ocp1CFDeviceEndpoint.swift:24:22: warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
22 | internal import CoreFoundation
23 | #else
24 | @_implementationOnly import CoreFoundation
| `- warning: using '@_implementationOnly' without enabling library evolution for 'SwiftOCADevice' may lead to instability during execution
25 | #endif
26 | #if canImport(FoundationEssentials)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:67:37: warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
65 |
66 | var messages: AsyncExtensions.AnyAsyncSequence<ControllerMessage> {
67 | inputStream.ocp1DecodedMessages.eraseToAnyAsyncSequence()
| `- warning: type 'AnyAsyncSequence<(any Ocp1Message, Bool)>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
68 | }
69 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift:19:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
17 | #if os(macOS) || os(iOS)
18 |
19 | import AsyncExtensions
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncExtensions'
20 | import FlyingFox
21 | import FlyingSocks
[803/890] Linking OCAEventBenchmark
[804/890] Applying OCAEventBenchmark
[806/890] Compiling SwiftOCADevice Ocp1IORingDeviceEndpoint.swift
[807/890] Compiling SwiftOCADevice LocalConnection.swift
[808/890] Compiling SwiftOCADevice LocalController.swift
[809/890] Compiling SwiftOCADevice LocalDeviceEndpoint.swift
[810/890] Compiling SwiftOCADevice Logger+Ocp1ControllerInternal.swift
[811/890] Compiling SwiftOCADevice Ocp1Controller.swift
[812/890] Compiling SwiftOCADevice Ocp1ControllerInternal.swift
[813/890] Compiling SwiftOCADevice PortsRepresentable.swift
[814/890] Compiling SwiftOCADevice Root+Commands.swift
[815/890] Compiling SwiftOCADevice Root.swift
[816/890] Compiling SwiftOCADevice Actuator.swift
[817/890] Compiling SwiftOCADevice BasicActuators.swift
[818/890] Compiling SwiftOCADevice Frequency.swift
[819/890] Compiling SwiftOCADevice Gain.swift
[820/890] Compiling SwiftOCADevice Mute.swift
[821/890] Compiling SwiftOCADevice PanBalance.swift
[822/890] Compiling SwiftOCADevice PolarityState.swift
[823/890] Compiling SwiftOCADevice SignalInput.swift
[824/890] Compiling SwiftOCADevice SignalOutput.swift
[825/890] Compiling SwiftOCADevice SummingPoint.swift
[826/890] Compiling SwiftOCADevice Switch.swift
[827/890] Compiling SwiftOCADevice Block.swift
[828/890] Compiling SwiftOCADevice Matrix.swift
[829/890] Compiling SwiftOCADevice FileDatasetStorageProvider.swift
[830/890] Compiling SwiftOCADevice Device.swift
[831/890] Compiling SwiftOCADevice DeviceEndpoint.swift
[832/893] Compiling SwiftOCADevice ConnectionBroker.swift
[833/893] Compiling SwiftOCADevice Controller.swift
[834/893] Compiling SwiftOCADevice ControllerDefaultSubscribing.swift
[835/893] Compiling SwiftOCADevice DatasetStorageProvider.swift
[836/893] Compiling SwiftOCADevice Group.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/PropertyTableView.swift:79:25: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
77 | }
78 | }.task {
79 | for property in object.allPropertyKeyPaths {
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
80 | await (object[keyPath: property.value] as! any OcaPropertyRepresentable)
81 | .subscribe(object)
[837/893] Compiling SwiftOCADevice Grouper.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/PropertyTableView.swift:79:25: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
77 | }
78 | }.task {
79 | for property in object.allPropertyKeyPaths {
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
80 | await (object[keyPath: property.value] as! any OcaPropertyRepresentable)
81 | .subscribe(object)
[838/893] Compiling SwiftOCADevice MediaClock3.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/PropertyTableView.swift:79:25: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
77 | }
78 | }.task {
79 | for property in object.allPropertyKeyPaths {
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
80 | await (object[keyPath: property.value] as! any OcaPropertyRepresentable)
81 | .subscribe(object)
[839/893] Compiling SwiftOCADevice TimeSource.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/PropertyTableView.swift:79:25: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
77 | }
78 | }.task {
79 | for property in object.allPropertyKeyPaths {
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
80 | await (object[keyPath: property.value] as! any OcaPropertyRepresentable)
81 | .subscribe(object)
[840/893] Emitting module SwiftOCAUI
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDiscoveryView.swift:22:1: warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | import SwiftUI
21 |
22 | extension NetService: Identifiable {
| |- warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public typealias ID = String
24 |
[841/893] Compiling SwiftOCADevice DeviceEndpointRegistrar.swift
[842/893] Compiling SwiftOCADevice Agent.swift
[843/893] Compiling SwiftOCADevice CounterNotifier.swift
[844/893] Compiling SwiftOCADevice CounterSetAgent.swift
[845/893] Compiling SwiftOCADevice Dataset.swift
[846/893] Compiling SwiftOCADevice FileDataset.swift
[847/893] Compiling SwiftOCADevice Serialization.swift
[848/893] Compiling SwiftOCADevice ApplicationNetwork.swift
[849/893] Compiling SwiftOCADevice ControlNetwork.swift
[850/893] Compiling SwiftOCADevice MediaTransportNetwork.swift
[851/893] Compiling SwiftOCAUI BasicSensorViews.swift
[852/893] Compiling SwiftOCAUI IdentificationSensorView.swift
[853/893] Compiling SwiftOCAUI LevelSensorView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:56:11: warning: main actor-isolated property 'isConnected' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
22 | var connection: Ocp1Connection? = nil
23 | @State
24 | var isConnected = false
| `- note: mutation of this property is only permitted within the actor
25 | @State
26 | var lastError: Error? = nil
:
54 | Task { @OcaConnection in
55 | if let connection {
56 | isConnected = false
| `- warning: main actor-isolated property 'isConnected' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
57 | try await connection.disconnect()
58 | self.connection = nil
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:58:16: warning: main actor-isolated property 'connection' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
20 | public struct OcaBonjourDeviceView: View {
21 | @State
22 | var connection: Ocp1Connection? = nil
| `- note: mutation of this property is only permitted within the actor
23 | @State
24 | var isConnected = false
:
56 | isConnected = false
57 | try await connection.disconnect()
58 | self.connection = nil
| `- warning: main actor-isolated property 'connection' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:55:16: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
53 | }.onDisappear {
54 | Task { @OcaConnection in
55 | if let connection {
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
56 | isConnected = false
57 | try await connection.disconnect()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDiscoveryView.swift:22:1: warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | import SwiftUI
21 |
22 | extension NetService: Identifiable {
| |- warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public typealias ID = String
24 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:56:11: warning: main actor-isolated property 'isConnected' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
22 | var connection: Ocp1Connection? = nil
23 | @State
24 | var isConnected = false
| `- note: mutation of this property is only permitted within the actor
25 | @State
26 | var lastError: Error? = nil
:
54 | Task { @OcaConnection in
55 | if let connection {
56 | isConnected = false
| `- warning: main actor-isolated property 'isConnected' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
57 | try await connection.disconnect()
58 | self.connection = nil
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:58:16: warning: main actor-isolated property 'connection' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
20 | public struct OcaBonjourDeviceView: View {
21 | @State
22 | var connection: Ocp1Connection? = nil
| `- note: mutation of this property is only permitted within the actor
23 | @State
24 | var isConnected = false
:
56 | isConnected = false
57 | try await connection.disconnect()
58 | self.connection = nil
| `- warning: main actor-isolated property 'connection' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:55:16: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
53 | }.onDisappear {
54 | Task { @OcaConnection in
55 | if let connection {
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
56 | isConnected = false
57 | try await connection.disconnect()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDiscoveryView.swift:22:1: warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | import SwiftUI
21 |
22 | extension NetService: Identifiable {
| |- warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public typealias ID = String
24 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:56:11: warning: main actor-isolated property 'isConnected' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
22 | var connection: Ocp1Connection? = nil
23 | @State
24 | var isConnected = false
| `- note: mutation of this property is only permitted within the actor
25 | @State
26 | var lastError: Error? = nil
:
54 | Task { @OcaConnection in
55 | if let connection {
56 | isConnected = false
| `- warning: main actor-isolated property 'isConnected' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
57 | try await connection.disconnect()
58 | self.connection = nil
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:58:16: warning: main actor-isolated property 'connection' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
20 | public struct OcaBonjourDeviceView: View {
21 | @State
22 | var connection: Ocp1Connection? = nil
| `- note: mutation of this property is only permitted within the actor
23 | @State
24 | var isConnected = false
:
56 | isConnected = false
57 | try await connection.disconnect()
58 | self.connection = nil
| `- warning: main actor-isolated property 'connection' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:55:16: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
53 | }.onDisappear {
54 | Task { @OcaConnection in
55 | if let connection {
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
56 | isConnected = false
57 | try await connection.disconnect()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDiscoveryView.swift:22:1: warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | import SwiftUI
21 |
22 | extension NetService: Identifiable {
| |- warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public typealias ID = String
24 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:56:11: warning: main actor-isolated property 'isConnected' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
22 | var connection: Ocp1Connection? = nil
23 | @State
24 | var isConnected = false
| `- note: mutation of this property is only permitted within the actor
25 | @State
26 | var lastError: Error? = nil
:
54 | Task { @OcaConnection in
55 | if let connection {
56 | isConnected = false
| `- warning: main actor-isolated property 'isConnected' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
57 | try await connection.disconnect()
58 | self.connection = nil
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:58:16: warning: main actor-isolated property 'connection' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
20 | public struct OcaBonjourDeviceView: View {
21 | @State
22 | var connection: Ocp1Connection? = nil
| `- note: mutation of this property is only permitted within the actor
23 | @State
24 | var isConnected = false
:
56 | isConnected = false
57 | try await connection.disconnect()
58 | self.connection = nil
| `- warning: main actor-isolated property 'connection' can not be mutated from global actor 'OcaConnection'; this is an error in the Swift 6 language mode
59 | }
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDeviceView.swift:55:16: warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
53 | }.onDisappear {
54 | Task { @OcaConnection in
55 | if let connection {
| |- warning: expression is 'async' but is not marked with 'await'; this is an error in the Swift 6 language mode
| `- note: property access is 'async'
56 | isConnected = false
57 | try await connection.disconnect()
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCAUI/Views/Discovery/BonjourDiscoveryView.swift:22:1: warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
20 | import SwiftUI
21 |
22 | extension NetService: Identifiable {
| |- warning: extension declares a conformance of imported type 'NetService' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
23 | public typealias ID = String
24 |
[858/893] Compiling SwiftOCADevice AudioProcessingManager.swift
[859/893] Compiling SwiftOCADevice CodingManager.swift
[860/893] Compiling SwiftOCADevice DeviceManager.swift
[864/896] Compiling OCABrowser resource_bundle_accessor.swift
[865/896] Compiling OCABrowser BrowserApp.swift
[866/896] Emitting module OCABrowser
[866/896] Write Objects.LinkFileList
[867/896] Linking OCABrowser
[868/896] Applying OCABrowser
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:149:5: warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
147 |
148 | deinit {
149 | if let sdRef {
| `- warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
150 | DNSServiceRefDeallocate(sdRef)
151 | }
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:138:16: warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
115 | var sdRef: DNSServiceRef?
116 |
117 | let error = txtRecordBuffer.withUnsafeBufferPointer { txtRecordBufferPointer in
| `- note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from this init
118 | DNSServiceRegister(
119 | &sdRef,
:
136 | }
137 |
138 | self.sdRef = sdRef
| `- warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:149:5: warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
147 |
148 | deinit {
149 | if let sdRef {
| `- warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
150 | DNSServiceRefDeallocate(sdRef)
151 | }
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:138:16: warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
115 | var sdRef: DNSServiceRef?
116 |
117 | let error = txtRecordBuffer.withUnsafeBufferPointer { txtRecordBufferPointer in
| `- note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from this init
118 | DNSServiceRegister(
119 | &sdRef,
:
136 | }
137 |
138 | self.sdRef = sdRef
| `- warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:149:5: warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
147 |
148 | deinit {
149 | if let sdRef {
| `- warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
150 | DNSServiceRefDeallocate(sdRef)
151 | }
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:138:16: warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
115 | var sdRef: DNSServiceRef?
116 |
117 | let error = txtRecordBuffer.withUnsafeBufferPointer { txtRecordBufferPointer in
| `- note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from this init
118 | DNSServiceRegister(
119 | &sdRef,
:
136 | }
137 |
138 | self.sdRef = sdRef
| `- warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:149:5: warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
147 |
148 | deinit {
149 | if let sdRef {
| `- warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
150 | DNSServiceRefDeallocate(sdRef)
151 | }
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:138:16: warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
115 | var sdRef: DNSServiceRef?
116 |
117 | let error = txtRecordBuffer.withUnsafeBufferPointer { txtRecordBufferPointer in
| `- note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from this init
118 | DNSServiceRegister(
119 | &sdRef,
:
136 | }
137 |
138 | self.sdRef = sdRef
| `- warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:149:5: warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
147 |
148 | deinit {
149 | if let sdRef {
| `- warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
150 | DNSServiceRefDeallocate(sdRef)
151 | }
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:138:16: warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
115 | var sdRef: DNSServiceRef?
116 |
117 | let error = txtRecordBuffer.withUnsafeBufferPointer { txtRecordBufferPointer in
| `- note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from this init
118 | DNSServiceRegister(
119 | &sdRef,
:
136 | }
137 |
138 | self.sdRef = sdRef
| `- warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:149:5: warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
147 |
148 | deinit {
149 | if let sdRef {
| `- warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
150 | DNSServiceRefDeallocate(sdRef)
151 | }
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:138:16: warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
115 | var sdRef: DNSServiceRef?
116 |
117 | let error = txtRecordBuffer.withUnsafeBufferPointer { txtRecordBufferPointer in
| `- note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from this init
118 | DNSServiceRegister(
119 | &sdRef,
:
136 | }
137 |
138 | self.sdRef = sdRef
| `- warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:149:5: warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
147 |
148 | deinit {
149 | if let sdRef {
| `- warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
150 | DNSServiceRefDeallocate(sdRef)
151 | }
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:138:16: warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
115 | var sdRef: DNSServiceRef?
116 |
117 | let error = txtRecordBuffer.withUnsafeBufferPointer { txtRecordBufferPointer in
| `- note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from this init
118 | DNSServiceRegister(
119 | &sdRef,
:
136 | }
137 |
138 | self.sdRef = sdRef
| `- warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:149:5: warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
147 |
148 | deinit {
149 | if let sdRef {
| `- warning: cannot access property 'sdRef' with a non-sendable type 'DNSServiceRef?' (aka 'Optional<OpaquePointer>') from nonisolated deinit; this is an error in the Swift 6 language mode
150 | DNSServiceRefDeallocate(sdRef)
151 | }
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCA/DeviceEndpointRegistrar.swift:138:16: warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
115 | var sdRef: DNSServiceRef?
116 |
117 | let error = txtRecordBuffer.withUnsafeBufferPointer { txtRecordBufferPointer in
| `- note: after making a copy of 'self', only nonisolated properties of 'self' can be accessed from this init
118 | DNSServiceRegister(
119 | &sdRef,
:
136 | }
137 |
138 | self.sdRef = sdRef
| `- warning: cannot access property 'sdRef' here in nonisolated initializer; this is an error in the Swift 6 language mode
139 | }
140 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:136:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
134 | root[datasetMimeTypeJSONKey] = OcaParamDatasetMimeType
135 |
136 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
137 | }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:207:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
205 | root[datasetParamDatasetsJSONKey] = Array(paramDatasetONos)
206 |
207 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:136:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
134 | root[datasetMimeTypeJSONKey] = OcaParamDatasetMimeType
135 |
136 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
137 | }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:207:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
205 | root[datasetParamDatasetsJSONKey] = Array(paramDatasetONos)
206 |
207 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:136:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
134 | root[datasetMimeTypeJSONKey] = OcaParamDatasetMimeType
135 |
136 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
137 | }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:207:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
205 | root[datasetParamDatasetsJSONKey] = Array(paramDatasetONos)
206 |
207 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:136:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
134 | root[datasetMimeTypeJSONKey] = OcaParamDatasetMimeType
135 |
136 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
137 | }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:207:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
205 | root[datasetParamDatasetsJSONKey] = Array(paramDatasetONos)
206 |
207 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:136:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
134 | root[datasetMimeTypeJSONKey] = OcaParamDatasetMimeType
135 |
136 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
137 | }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:207:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
205 | root[datasetParamDatasetsJSONKey] = Array(paramDatasetONos)
206 |
207 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:136:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
134 | root[datasetMimeTypeJSONKey] = OcaParamDatasetMimeType
135 |
136 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
137 | }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:207:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
205 | root[datasetParamDatasetsJSONKey] = Array(paramDatasetONos)
206 |
207 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:136:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
134 | root[datasetMimeTypeJSONKey] = OcaParamDatasetMimeType
135 |
136 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
137 | }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:207:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
205 | root[datasetParamDatasetsJSONKey] = Array(paramDatasetONos)
206 |
207 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:136:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
134 | root[datasetMimeTypeJSONKey] = OcaParamDatasetMimeType
135 |
136 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
137 | }
138 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Dataset/Serialization.swift:207:12: warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
205 | root[datasetParamDatasetsJSONKey] = Array(paramDatasetONos)
206 |
207 | return root
| `- warning: type 'Any' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
208 | }
209 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Agents/Grouper.swift:538:57: warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
536 | var hasReconnectedAtLeastOnce = false
537 |
538 | for try await connectionState in await connection.connectionState {
| `- warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
539 | var changeType: OcaGrouperStatusChangeType?
540 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Agents/Grouper.swift:538:57: warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
536 | var hasReconnectedAtLeastOnce = false
537 |
538 | for try await connectionState in await connection.connectionState {
| `- warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
539 | var changeType: OcaGrouperStatusChangeType?
540 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Agents/Grouper.swift:538:57: warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
536 | var hasReconnectedAtLeastOnce = false
537 |
538 | for try await connectionState in await connection.connectionState {
| `- warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
539 | var changeType: OcaGrouperStatusChangeType?
540 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Agents/Grouper.swift:538:57: warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
536 | var hasReconnectedAtLeastOnce = false
537 |
538 | for try await connectionState in await connection.connectionState {
| `- warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
539 | var changeType: OcaGrouperStatusChangeType?
540 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Agents/Grouper.swift:538:57: warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
536 | var hasReconnectedAtLeastOnce = false
537 |
538 | for try await connectionState in await connection.connectionState {
| `- warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
539 | var changeType: OcaGrouperStatusChangeType?
540 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Agents/Grouper.swift:538:57: warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
536 | var hasReconnectedAtLeastOnce = false
537 |
538 | for try await connectionState in await connection.connectionState {
| `- warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
539 | var changeType: OcaGrouperStatusChangeType?
540 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Agents/Grouper.swift:538:57: warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
536 | var hasReconnectedAtLeastOnce = false
537 |
538 | for try await connectionState in await connection.connectionState {
| `- warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
539 | var changeType: OcaGrouperStatusChangeType?
540 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftOCADevice/OCC/ControlClasses/Agents/Grouper.swift:538:57: warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
536 | var hasReconnectedAtLeastOnce = false
537 |
538 | for try await connectionState in await connection.connectionState {
| `- warning: non-sendable type 'AnyAsyncSequence<Ocp1ConnectionState>' in implicitly asynchronous access to global actor 'OcaConnection'-isolated property 'connectionState' cannot cross actor boundary; this is an error in the Swift 6 language mode
539 | var changeType: OcaGrouperStatusChangeType?
540 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AsyncExtensions/Sources/Operators/AsyncSequence+EraseToAnyAsyncSequence.swift:17:15: note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
15 |
16 | /// Type erased version of an AsyncSequence.
17 | public struct AnyAsyncSequence<Element>: AsyncSequence {
| `- note: generic struct 'AnyAsyncSequence' does not conform to the 'Sendable' protocol
18 | public typealias AsyncIterator = AnyAsyncIterator<Element>
19 |
[894/898] Emitting module OCADevice
[895/898] Compiling OCADevice DeviceApp.swift
[895/898] Write Objects.LinkFileList
[896/898] Linking OCADevice
[897/898] Applying OCADevice
Build complete! (42.68s)
Fetching https://github.com/Flight-School/AnyCodable
Fetching https://github.com/swhitty/FlyingFox
Fetching https://github.com/apple/swift-atomics
Fetching https://github.com/PADL/SocketAddress
Fetching https://github.com/spacenation/swiftui-sliders
Fetching https://github.com/lhoward/AsyncExtensions
Fetching https://github.com/1024jp/GzipSwift
[1/1814] Fetching swift-atomics
[74/2596] Fetching swift-atomics, anycodable
[75/2664] Fetching swift-atomics, anycodable, socketaddress
[233/8274] Fetching swift-atomics, anycodable, socketaddress, flyingfox
[346/8956] Fetching swift-atomics, anycodable, socketaddress, flyingfox, asyncextensions
[548/10513] Fetching swift-atomics, anycodable, socketaddress, flyingfox, asyncextensions, gzipswift
[1307/12046] Fetching swift-atomics, anycodable, socketaddress, flyingfox, asyncextensions, gzipswift, swiftui-sliders
Fetched https://github.com/swhitty/FlyingFox from cache (1.05s)
Fetched https://github.com/lhoward/AsyncExtensions from cache (1.05s)
Fetching https://github.com/apple/swift-log
Fetching https://github.com/apple/swift-system
[4540/5754] Fetching swift-atomics, anycodable, socketaddress, gzipswift, swiftui-sliders
Fetched https://github.com/Flight-School/AnyCodable from cache (1.21s)
Fetched https://github.com/PADL/SocketAddress from cache (1.21s)
Fetched https://github.com/spacenation/swiftui-sliders from cache (1.21s)
Fetched https://github.com/apple/swift-atomics from cache (1.21s)
Fetched https://github.com/1024jp/GzipSwift from cache (1.21s)
Fetching https://github.com/apple/swift-async-algorithms
[1/4944] Fetching swift-system
[100/8847] Fetching swift-system, swift-log
[2630/14245] Fetching swift-system, swift-log, swift-async-algorithms
Fetched https://github.com/apple/swift-system from cache (1.04s)
Fetched https://github.com/apple/swift-log from cache (1.04s)
[1404/5398] Fetching swift-async-algorithms
Fetched https://github.com/apple/swift-async-algorithms from cache (1.05s)
Computing version for https://github.com/spacenation/swiftui-sliders
Computed https://github.com/spacenation/swiftui-sliders at 2.1.0 (0.64s)
Computing version for https://github.com/1024jp/GzipSwift
warning: 'gzipswift': /Package.swift:5:15: warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
3 | import PackageDescription
4 |
5 | let package = Package(
| |- warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
| `- note: use 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)' instead
6 | name: "GzipSwift",
7 | products: [
Computed https://github.com/1024jp/GzipSwift at 6.1.0 (0.57s)
Computing version for https://github.com/Flight-School/AnyCodable
Computed https://github.com/Flight-School/AnyCodable at 0.6.7 (0.61s)
Computing version for https://github.com/apple/swift-atomics
Computed https://github.com/apple/swift-atomics at 1.3.0 (0.51s)
Computing version for https://github.com/lhoward/AsyncExtensions
Computed https://github.com/lhoward/AsyncExtensions at 0.9.2 (0.50s)
Fetching https://github.com/apple/swift-collections.git
[1/17460] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.67s)
Computing version for https://github.com/PADL/SocketAddress
Computed https://github.com/PADL/SocketAddress at 0.0.3 (0.51s)
Computing version for https://github.com/apple/swift-log
Computed https://github.com/apple/swift-log at 1.6.4 (0.57s)
Computing version for https://github.com/apple/swift-async-algorithms
Computed https://github.com/apple/swift-async-algorithms at 1.0.4 (0.64s)
Computing version for https://github.com/swhitty/FlyingFox
Computed https://github.com/swhitty/FlyingFox at 0.25.0 (0.54s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.1 (0.61s)
Computing version for https://github.com/apple/swift-system
Computed https://github.com/apple/swift-system at 1.6.2 (0.58s)
Creating working copy for https://github.com/Flight-School/AnyCodable
Working copy of https://github.com/Flight-School/AnyCodable resolved at 0.6.7
Creating working copy for https://github.com/apple/swift-log
Working copy of https://github.com/apple/swift-log resolved at 1.6.4
Creating working copy for https://github.com/spacenation/swiftui-sliders
Working copy of https://github.com/spacenation/swiftui-sliders resolved at 2.1.0
Creating working copy for https://github.com/apple/swift-atomics
Working copy of https://github.com/apple/swift-atomics resolved at 1.3.0
Creating working copy for https://github.com/lhoward/AsyncExtensions
Working copy of https://github.com/lhoward/AsyncExtensions resolved at 0.9.2
Creating working copy for https://github.com/apple/swift-async-algorithms
Working copy of https://github.com/apple/swift-async-algorithms resolved at 1.0.4
Creating working copy for https://github.com/PADL/SocketAddress
Working copy of https://github.com/PADL/SocketAddress resolved at 0.0.3
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-system
Working copy of https://github.com/apple/swift-system resolved at 1.6.2
Creating working copy for https://github.com/1024jp/GzipSwift
Working copy of https://github.com/1024jp/GzipSwift resolved at 6.1.0
Creating working copy for https://github.com/swhitty/FlyingFox
Working copy of https://github.com/swhitty/FlyingFox resolved at 0.25.0
warning: 'gzipswift': /Users/admin/builder/spi-builder-workspace/.build/checkouts/GzipSwift/Package.swift:5:15: warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
3 | import PackageDescription
4 |
5 | let package = Package(
| |- warning: 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageVersions:cLanguageStandard:cxxLanguageStandard:)' is deprecated: replaced by 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)'
| `- note: use 'init(name:defaultLocalization:platforms:pkgConfig:providers:products:dependencies:targets:swiftLanguageModes:cLanguageStandard:cxxLanguageStandard:)' instead
6 | name: "GzipSwift",
7 | products: [
Build complete.
{
"dependencies" : [
{
"identity" : "swift-async-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-async-algorithms"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log"
},
{
"identity" : "swift-system",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-system"
},
{
"identity" : "swift-atomics",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-atomics"
},
{
"identity" : "socketaddress",
"requirement" : {
"range" : [
{
"lower_bound" : "0.0.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/PADL/SocketAddress"
},
{
"identity" : "asyncextensions",
"requirement" : {
"range" : [
{
"lower_bound" : "0.9.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/lhoward/AsyncExtensions"
},
{
"identity" : "anycodable",
"requirement" : {
"range" : [
{
"lower_bound" : "0.6.7",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Flight-School/AnyCodable"
},
{
"identity" : "gzipswift",
"requirement" : {
"range" : [
{
"lower_bound" : "6.1.0",
"upper_bound" : "7.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/1024jp/GzipSwift"
},
{
"identity" : "flyingfox",
"requirement" : {
"range" : [
{
"lower_bound" : "0.20.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swhitty/FlyingFox"
},
{
"identity" : "swiftui-sliders",
"requirement" : {
"range" : [
{
"lower_bound" : "2.1.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/spacenation/swiftui-sliders"
}
],
"manifest_display_name" : "SwiftOCA",
"name" : "SwiftOCA",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "14.0"
},
{
"name" : "ios",
"version" : "17.0"
}
],
"products" : [
{
"name" : "SwiftOCA",
"targets" : [
"SwiftOCA"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftOCADevice",
"targets" : [
"SwiftOCADevice"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SwiftOCAUI",
"targets" : [
"SwiftOCAUI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "OCAEventBenchmark",
"targets" : [
"OCAEventBenchmark"
],
"type" : {
"executable" : null
}
},
{
"name" : "OCADevice",
"targets" : [
"OCADevice"
],
"type" : {
"executable" : null
}
},
{
"name" : "OCABrowser",
"targets" : [
"OCABrowser"
],
"type" : {
"executable" : null
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "dnssd",
"module_type" : "SystemLibraryTarget",
"name" : "dnssd",
"path" : "Sources/dnssd",
"sources" : [
],
"type" : "system-target"
},
{
"c99name" : "SwiftOCAUI",
"module_type" : "SwiftTarget",
"name" : "SwiftOCAUI",
"path" : "Sources/SwiftOCAUI",
"product_dependencies" : [
"Sliders"
],
"product_memberships" : [
"SwiftOCAUI",
"OCABrowser"
],
"sources" : [
"Conformances/Array+Extras.swift",
"Conformances/EnvironmentValues.swift",
"Conformances/OcaArray2D+Extras.swift",
"Conformances/OcaDB+Linear.swift",
"Conformances/OcaRoot+Binding.swift",
"Conformances/OcaRoot+Identifiable.swift",
"ViewModifiers/RefreshableToInitialState.swift",
"ViewModifiers/ShowProgressIfWaiting.swift",
"ViewModifiers/SystemToggleStyle.swift",
"Views/DetailView.swift",
"Views/Discovery/BonjourDeviceView.swift",
"Views/Discovery/BonjourDiscoveryView.swift",
"Views/DynamicStack.swift",
"Views/Managers/DeviceManager.swift",
"Views/NavigationLabel.swift",
"Views/PropertyTableView.swift",
"Views/Utility/DiscreteSliderView.swift",
"Views/Utility/LogSliderView.swift",
"Views/Utility/ScaledLegendView.swift",
"Views/Utility/VariableSliderView.swift",
"Views/View.swift",
"Views/Workers/Actuators/BooleanActuatorView.swift",
"Views/Workers/Actuators/Float32ActuatorView.swift",
"Views/Workers/Actuators/GainView.swift",
"Views/Workers/Actuators/MuteView.swift",
"Views/Workers/Actuators/PanBalanceView.swift",
"Views/Workers/Actuators/PolarityView.swift",
"Views/Workers/BlockNavigationSplitView.swift",
"Views/Workers/BlockNavigationStackView.swift",
"Views/Workers/MatrixNavigationSplitView.swift",
"Views/Workers/RootBlockView.swift",
"Views/Workers/Sensors/BasicSensorViews.swift",
"Views/Workers/Sensors/IdentificationSensorView.swift",
"Views/Workers/Sensors/LevelSensorView.swift"
],
"target_dependencies" : [
"SwiftOCA"
],
"type" : "library"
},
{
"c99name" : "SwiftOCATests",
"module_type" : "SwiftTarget",
"name" : "SwiftOCATests",
"path" : "Tests/SwiftOCATests",
"sources" : [
"SwiftOCATests.swift"
],
"target_dependencies" : [
"SwiftOCADevice"
],
"type" : "test"
},
{
"c99name" : "SwiftOCADeviceTests",
"module_type" : "SwiftTarget",
"name" : "SwiftOCADeviceTests",
"path" : "Tests/SwiftOCADeviceTests",
"sources" : [
"SwiftOCADeviceTests.swift"
],
"target_dependencies" : [
"SwiftOCADevice"
],
"type" : "test"
},
{
"c99name" : "SwiftOCADevice",
"module_type" : "SwiftTarget",
"name" : "SwiftOCADevice",
"path" : "Sources/SwiftOCADevice",
"product_dependencies" : [
"Logging",
"Gzip",
"FlyingFox",
"FlyingSocks"
],
"product_memberships" : [
"SwiftOCADevice",
"OCADevice"
],
"sources" : [
"OCA/ConnectionBroker.swift",
"OCA/Controller.swift",
"OCA/ControllerDefaultSubscribing.swift",
"OCA/DatasetStorageProviders/DatasetStorageProvider.swift",
"OCA/DatasetStorageProviders/FileDatasetStorageProvider.swift",
"OCA/Device.swift",
"OCA/DeviceEndpoint.swift",
"OCA/DeviceEndpointRegistrar.swift",
"OCC/ControlClasses/Agents/Agent.swift",
"OCC/ControlClasses/Agents/CounterNotifier.swift",
"OCC/ControlClasses/Agents/CounterSetAgent.swift",
"OCC/ControlClasses/Agents/Group.swift",
"OCC/ControlClasses/Agents/Grouper.swift",
"OCC/ControlClasses/Agents/MediaClock3.swift",
"OCC/ControlClasses/Agents/TimeSource.swift",
"OCC/ControlClasses/ApplicationNetworks/ApplicationNetwork.swift",
"OCC/ControlClasses/ApplicationNetworks/ControlNetwork.swift",
"OCC/ControlClasses/ApplicationNetworks/MediaTransportNetwork.swift",
"OCC/ControlClasses/Dataset/Dataset.swift",
"OCC/ControlClasses/Dataset/FileDataset.swift",
"OCC/ControlClasses/Dataset/Serialization.swift",
"OCC/ControlClasses/Managers/AudioProcessingManager.swift",
"OCC/ControlClasses/Managers/CodingManager.swift",
"OCC/ControlClasses/Managers/DeviceManager.swift",
"OCC/ControlClasses/Managers/DeviceTimeManager.swift",
"OCC/ControlClasses/Managers/DiagnosticManager.swift",
"OCC/ControlClasses/Managers/FirmwareManager.swift",
"OCC/ControlClasses/Managers/LockManager.swift",
"OCC/ControlClasses/Managers/Manager.swift",
"OCC/ControlClasses/Managers/MediaClockManager.swift",
"OCC/ControlClasses/Managers/NetworkManager.swift",
"OCC/ControlClasses/Managers/SubscriptionManager.swift",
"OCC/ControlClasses/PortsRepresentable.swift",
"OCC/ControlClasses/Root+Commands.swift",
"OCC/ControlClasses/Root.swift",
"OCC/ControlClasses/Workers/Actuators/Actuator.swift",
"OCC/ControlClasses/Workers/Actuators/BasicActuators.swift",
"OCC/ControlClasses/Workers/Actuators/Frequency.swift",
"OCC/ControlClasses/Workers/Actuators/Gain.swift",
"OCC/ControlClasses/Workers/Actuators/Mute.swift",
"OCC/ControlClasses/Workers/Actuators/PanBalance.swift",
"OCC/ControlClasses/Workers/Actuators/PolarityState.swift",
"OCC/ControlClasses/Workers/Actuators/SignalInput.swift",
"OCC/ControlClasses/Workers/Actuators/SignalOutput.swift",
"OCC/ControlClasses/Workers/Actuators/SummingPoint.swift",
"OCC/ControlClasses/Workers/Actuators/Switch.swift",
"OCC/ControlClasses/Workers/BlocksAndMatrices/Block.swift",
"OCC/ControlClasses/Workers/BlocksAndMatrices/Matrix.swift",
"OCC/ControlClasses/Workers/Sensors/AudioLevelSensor.swift",
"OCC/ControlClasses/Workers/Sensors/BasicSensors.swift",
"OCC/ControlClasses/Workers/Sensors/IdentificationSensor.swift",
"OCC/ControlClasses/Workers/Sensors/LevelSensor.swift",
"OCC/ControlClasses/Workers/Sensors/Sensor.swift",
"OCC/ControlClasses/Workers/Sensors/TemperatureSensor.swift",
"OCC/ControlClasses/Workers/Worker.swift",
"OCC/PropertyTypes/BoundedDeviceProperty.swift",
"OCC/PropertyTypes/DeviceProperty.swift",
"OCC/PropertyTypes/VectorDeviceProperty.swift",
"OCP.1/Backend/CF/Ocp1CFController.swift",
"OCP.1/Backend/CF/Ocp1CFDeviceEndpoint.swift",
"OCP.1/Backend/DatagramProxy/DatagramProxyController.swift",
"OCP.1/Backend/DatagramProxy/DatagramProxyDeviceEndpoint.swift",
"OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxController.swift",
"OCP.1/Backend/FlyingSocks/Ocp1FlyingFoxDeviceEndpoint.swift",
"OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramController.swift",
"OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksDatagramDeviceEndpoint.swift",
"OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksLogging.swift",
"OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksStreamController.swift",
"OCP.1/Backend/FlyingSocks/Ocp1FlyingSocksStreamDeviceEndpoint.swift",
"OCP.1/Backend/IORing/Ocp1IORingController.swift",
"OCP.1/Backend/IORing/Ocp1IORingDeviceEndpoint.swift",
"OCP.1/Backend/Local/LocalConnection.swift",
"OCP.1/Backend/Local/LocalController.swift",
"OCP.1/Backend/Local/LocalDeviceEndpoint.swift",
"OCP.1/Logger+Ocp1ControllerInternal.swift",
"OCP.1/Ocp1Controller.swift",
"OCP.1/Ocp1ControllerInternal.swift"
],
"target_dependencies" : [
"SwiftOCA"
],
"type" : "library"
},
{
"c99name" : "SwiftOCA",
"module_type" : "SwiftTarget",
"name" : "SwiftOCA",
"path" : "Sources/SwiftOCA",
"product_dependencies" : [
"AsyncExtensions",
"AnyCodable",
"SocketAddress",
"AsyncAlgorithms",
"SystemPackage",
"Logging",
"Atomics",
"FlyingFox",
"FlyingSocks"
],
"product_memberships" : [
"SwiftOCA",
"SwiftOCADevice",
"SwiftOCAUI",
"OCAEventBenchmark",
"OCADevice",
"OCABrowser"
],
"sources" : [
"OCA/Browser.swift",
"OCA/ClassRegistry.swift",
"OCA/Connection.swift",
"OCA/Helpers/Data+Hex.swift",
"OCA/Helpers/Data+IntegerCodable.swift",
"OCA/Helpers/DeviceAddressToString.swift",
"OCA/Helpers/LengthTaggedData16.swift",
"OCA/Helpers/LengthTaggedData32.swift",
"OCA/Helpers/Locking.swift",
"OCA/Helpers/Sequence+AsyncMap.swift",
"OCA/Helpers/Task+Timeout.swift",
"OCA/Helpers/UnsafeMutablePointer+PropertyBasePointer.swift",
"OCA/Helpers/Weak.swift",
"OCC/CollectionTypes/Array2D.swift",
"OCC/CollectionTypes/List2D.swift",
"OCC/ControlClasses/Agents/Agent.swift",
"OCC/ControlClasses/Agents/CounterNotifier.swift",
"OCC/ControlClasses/Agents/CounterSetAgent.swift",
"OCC/ControlClasses/Agents/EventHandler.swift",
"OCC/ControlClasses/Agents/Group.swift",
"OCC/ControlClasses/Agents/Grouper.swift",
"OCC/ControlClasses/Agents/MediaClock3.swift",
"OCC/ControlClasses/Agents/PhysicalPosition.swift",
"OCC/ControlClasses/Agents/TimeSource.swift",
"OCC/ControlClasses/ApplicationNetworks/ApplicationNetwork.swift",
"OCC/ControlClasses/ApplicationNetworks/ControlNetwork.swift",
"OCC/ControlClasses/ApplicationNetworks/MediaTransportNetwork.swift",
"OCC/ControlClasses/Dataset/Dataset.swift",
"OCC/ControlClasses/Dataset/Log.swift",
"OCC/ControlClasses/Managers/AudioProcessingManager.swift",
"OCC/ControlClasses/Managers/CodingManager.swift",
"OCC/ControlClasses/Managers/DeviceManager.swift",
"OCC/ControlClasses/Managers/DeviceTimeManager.swift",
"OCC/ControlClasses/Managers/DiagnosticManager.swift",
"OCC/ControlClasses/Managers/FirmwareManager.swift",
"OCC/ControlClasses/Managers/LibraryManager.swift",
"OCC/ControlClasses/Managers/LockManager.swift",
"OCC/ControlClasses/Managers/Manager.swift",
"OCC/ControlClasses/Managers/MediaClockManager.swift",
"OCC/ControlClasses/Managers/NetworkManager.swift",
"OCC/ControlClasses/Managers/PowerManager.swift",
"OCC/ControlClasses/Managers/SecurityManager.swift",
"OCC/ControlClasses/Managers/SubscriptionManager.swift",
"OCC/ControlClasses/Managers/TaskManager.swift",
"OCC/ControlClasses/Networks/MediaTransportApplication.swift",
"OCC/ControlClasses/Networks/NetworkApplication.swift",
"OCC/ControlClasses/Networks/NetworkInterface.swift",
"OCC/ControlClasses/Root+Commands.swift",
"OCC/ControlClasses/Root+JSON.swift",
"OCC/ControlClasses/Root.swift",
"OCC/ControlClasses/Workers/Actuators/Actuator.swift",
"OCC/ControlClasses/Workers/Actuators/BasicActuators.swift",
"OCC/ControlClasses/Workers/Actuators/Frequency.swift",
"OCC/ControlClasses/Workers/Actuators/Gain.swift",
"OCC/ControlClasses/Workers/Actuators/Mute.swift",
"OCC/ControlClasses/Workers/Actuators/PanBalance.swift",
"OCC/ControlClasses/Workers/Actuators/Polarity.swift",
"OCC/ControlClasses/Workers/Actuators/SignalInput.swift",
"OCC/ControlClasses/Workers/Actuators/SignalOutput.swift",
"OCC/ControlClasses/Workers/Actuators/SummingPoint.swift",
"OCC/ControlClasses/Workers/Actuators/Switch.swift",
"OCC/ControlClasses/Workers/BlocksAndMatrices/Block.swift",
"OCC/ControlClasses/Workers/BlocksAndMatrices/Matrix.swift",
"OCC/ControlClasses/Workers/DataSets/DataSetWorker.swift",
"OCC/ControlClasses/Workers/DataSets/MediaRecorderPlayer.swift",
"OCC/ControlClasses/Workers/Sensors/AudioLevelSensor.swift",
"OCC/ControlClasses/Workers/Sensors/BasicSensors.swift",
"OCC/ControlClasses/Workers/Sensors/IdentificationSensor.swift",
"OCC/ControlClasses/Workers/Sensors/LevelSensor.swift",
"OCC/ControlClasses/Workers/Sensors/Sensor.swift",
"OCC/ControlClasses/Workers/Sensors/TemperatureSensor.swift",
"OCC/ControlClasses/Workers/Worker.swift",
"OCC/ControlDataTypes/ApplicationNetworkDataTypes.swift",
"OCC/ControlDataTypes/BaseDataTypes.swift",
"OCC/ControlDataTypes/CommandSetDataTypes.swift",
"OCC/ControlDataTypes/CounterDataTypes.swift",
"OCC/ControlDataTypes/DataSetDataTypes.swift",
"OCC/ControlDataTypes/DeviceManagerDataTypes.swift",
"OCC/ControlDataTypes/EventDataTypes.swift",
"OCC/ControlDataTypes/FirmwareManagerDataTypes.swift",
"OCC/ControlDataTypes/GrouperDataTypes.swift",
"OCC/ControlDataTypes/LibraryManagerDataTypes.swift",
"OCC/ControlDataTypes/LoggingDataTypes.swift",
"OCC/ControlDataTypes/ManagerDataTypes.swift",
"OCC/ControlDataTypes/MediaClockDataTypes.swift",
"OCC/ControlDataTypes/MediaDataTypes.swift",
"OCC/ControlDataTypes/MediaStreamDataTypes.swift",
"OCC/ControlDataTypes/MiscFrameworkDataTypes.swift",
"OCC/ControlDataTypes/ModelDataTypes.swift",
"OCC/ControlDataTypes/NetworkApplicationDataTypes.swift",
"OCC/ControlDataTypes/NetworkDataTypes.swift",
"OCC/ControlDataTypes/PowerManagerDataTypes.swift",
"OCC/ControlDataTypes/ProgrammingDataTypes.swift",
"OCC/ControlDataTypes/SearchDataTypes.swift",
"OCC/ControlDataTypes/TaskManagerDataTypes.swift",
"OCC/ControlDataTypes/TimeDataTypes.swift",
"OCC/ControlDataTypes/WellKnownObjectNumbers.swift",
"OCC/ControlDataTypes/WorkerDataTypes.swift",
"OCC/PropertyTypes/BoundedProperty.swift",
"OCC/PropertyTypes/ListProperty.swift",
"OCC/PropertyTypes/MapProperty.swift",
"OCC/PropertyTypes/Property.swift",
"OCC/PropertyTypes/VectorProperty.swift",
"OCF/Errors.swift",
"OCF/Messages/Command.swift",
"OCF/Messages/Header.swift",
"OCF/Messages/KeepAlive.swift",
"OCF/Messages/MessageType.swift",
"OCF/Messages/Notification1.swift",
"OCF/Messages/Notification2.swift",
"OCF/Messages/Response.swift",
"OCP.1/Backend/Ocp1CFSocketConnection.swift",
"OCP.1/Backend/Ocp1FlyingSocksConnection.swift",
"OCP.1/Backend/Ocp1IORingConnection.swift",
"OCP.1/Backend/Ocp1NWConnection.swift",
"OCP.1/Decoder/Container/KeyedBinaryDecodingContainer.swift",
"OCP.1/Decoder/Container/SingleValueBinaryDecodingContainer.swift",
"OCP.1/Decoder/Container/UnkeyedBinaryDecodingContainer.swift",
"OCP.1/Decoder/Ocp1Decoder.swift",
"OCP.1/Decoder/Ocp1DecoderImpl.swift",
"OCP.1/Decoder/Ocp1DecodingState.swift",
"OCP.1/Encoder/Container/KeyedOcp1EncodingContainer.swift",
"OCP.1/Encoder/Container/SingleValueOcp1EncodingContainer.swift",
"OCP.1/Encoder/Container/UnkeyedOcp1EncodingContainer.swift",
"OCP.1/Encoder/Ocp1Encoder.swift",
"OCP.1/Encoder/Ocp1EncoderImpl.swift",
"OCP.1/Encoder/Ocp1EncodingState.swift",
"OCP.1/Ocp1CoderAPI.swift",
"OCP.1/Ocp1Connection+Codable.swift",
"OCP.1/Ocp1Connection+Connect.swift",
"OCP.1/Ocp1Connection+Messages.swift",
"OCP.1/Ocp1Connection+Objects.swift",
"OCP.1/Ocp1Connection+Subscribe.swift",
"OCP.1/Ocp1Connection.swift",
"OCP.1/Ocp1ConnectionMonitor.swift",
"OCP.1/ReflectionMirror/ReflectionMirror.swift"
],
"type" : "library"
},
{
"c99name" : "OCAEventBenchmark",
"module_type" : "SwiftTarget",
"name" : "OCAEventBenchmark",
"path" : "Examples/OCAEventBenchmark",
"product_memberships" : [
"OCAEventBenchmark"
],
"sources" : [
"EventBenchmark.swift"
],
"target_dependencies" : [
"SwiftOCA"
],
"type" : "executable"
},
{
"c99name" : "OCADevice",
"module_type" : "SwiftTarget",
"name" : "OCADevice",
"path" : "Examples/OCADevice",
"product_memberships" : [
"OCADevice"
],
"sources" : [
"DeviceApp.swift"
],
"target_dependencies" : [
"SwiftOCADevice"
],
"type" : "executable"
},
{
"c99name" : "OCABrowser",
"module_type" : "SwiftTarget",
"name" : "OCABrowser",
"path" : "Examples/OCABrowser",
"product_memberships" : [
"OCABrowser"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Examples/OCABrowser/Assets.xcassets",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Examples/OCABrowser/OCABrowser.entitlements",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Examples/OCABrowser/Preview Content/Preview Assets.xcassets",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"BrowserApp.swift"
],
"target_dependencies" : [
"SwiftOCAUI"
],
"type" : "executable"
}
],
"tools_version" : "5.9"
}
Done.