The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of Atem, reference 2.0.0-alpha.2 (fd8d07), with Swift 6.0 for Linux on 1 Nov 2024 07:16:53 UTC.

Swift 6 data race errors: 56

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
    |                     |- warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'component' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:155:21: warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
    |                     |- warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'composite' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:156:21: warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
    |                     |- warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sVideo' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |
158 | 		public static let none = ExternalInterfaces([])
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:158:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
158 | 		public static let none = ExternalInterfaces([])
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |
160 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:178:21: warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
176 | 		}
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
    |                     |- warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'auxiliary' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:179:21: warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
    |                     |- warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'multiviewer' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:180:21: warning: static property 'superSourceArt' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
    |                     |- warning: static property 'superSourceArt' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'superSourceArt' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:181:21: warning: static property 'superSourceBox' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
    |                     |- warning: static property 'superSourceBox' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'superSourceBox' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
183 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:182:21: warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
    |                     |- warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'keySource' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 |
184 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:202:21: warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
200 | 		}
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
    |                     |- warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me1AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:203:21: warning: static property 'me2AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
    |                     |- warning: static property 'me2AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me2AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
204 |
205 | 		public static let none = MixEffects([])
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:205:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
205 | 		public static let none = MixEffects([])
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 |
207 | 		public func describe() -> String? {
[268/295] Compiling Atem RawRepresentable+decode.swift
/host/spi-builder-workspace/Sources/Atem/Utilities/RawRepresentable+decode.swift:14:6: warning: stored property 'value' of 'Sendable'-conforming generic struct 'UnsupportedRawValue' has non-sendable type 'R.RawValue'; this is an error in the Swift 6 language mode
12 | struct UnsupportedRawValue<R: RawRepresentable>: LocalizedError {
13 | 	/// The value that is not supported by the `RawRepresentable`
14 | 	let value: R.RawValue
   |      `- warning: stored property 'value' of 'Sendable'-conforming generic struct 'UnsupportedRawValue' has non-sendable type 'R.RawValue'; this is an error in the Swift 6 language mode
15 |
16 | 	/// A textual description of the error
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:152:21: warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
150 | 		}
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
    |                     |- warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sdi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:153:21: warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
    |                     |- warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hdmi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:154:21: warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
    |                     |- warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'component' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:155:21: warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
    |                     |- warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'composite' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:156:21: warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
    |                     |- warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sVideo' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |
158 | 		public static let none = ExternalInterfaces([])
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:158:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
158 | 		public static let none = ExternalInterfaces([])
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |
160 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:178:21: warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
176 | 		}
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
    |                     |- warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'auxiliary' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:179:21: warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
    |                     |- warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'multiviewer' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:180:21: warning: static property 'superSourceArt' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
    |                     |- warning: static property 'superSourceArt' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'superSourceArt' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:181:21: warning: static property 'superSourceBox' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
    |                     |- warning: static property 'superSourceBox' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'superSourceBox' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
183 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:182:21: warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
    |                     |- warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'keySource' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 |
184 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:202:21: warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
200 | 		}
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
    |                     |- warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me1AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:203:21: warning: static property 'me2AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
    |                     |- warning: static property 'me2AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me2AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
204 |
205 | 		public static let none = MixEffects([])
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:205:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
205 | 		public static let none = MixEffects([])
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 |
207 | 		public func describe() -> String? {
[269/295] Compiling Atem VideoSource.swift
/host/spi-builder-workspace/Sources/Atem/Utilities/RawRepresentable+decode.swift:14:6: warning: stored property 'value' of 'Sendable'-conforming generic struct 'UnsupportedRawValue' has non-sendable type 'R.RawValue'; this is an error in the Swift 6 language mode
12 | struct UnsupportedRawValue<R: RawRepresentable>: LocalizedError {
13 | 	/// The value that is not supported by the `RawRepresentable`
14 | 	let value: R.RawValue
   |      `- warning: stored property 'value' of 'Sendable'-conforming generic struct 'UnsupportedRawValue' has non-sendable type 'R.RawValue'; this is an error in the Swift 6 language mode
15 |
16 | 	/// A textual description of the error
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:152:21: warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
150 | 		}
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
    |                     |- warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sdi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:153:21: warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
    |                     |- warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hdmi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:154:21: warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
    |                     |- warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'component' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:155:21: warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
    |                     |- warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'composite' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:156:21: warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
    |                     |- warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sVideo' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |
158 | 		public static let none = ExternalInterfaces([])
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:158:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
158 | 		public static let none = ExternalInterfaces([])
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |
160 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:178:21: warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
176 | 		}
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
    |                     |- warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'auxiliary' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:179:21: warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
    |                     |- warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'multiviewer' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:180:21: warning: static property 'superSourceArt' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
    |                     |- warning: static property 'superSourceArt' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'superSourceArt' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:181:21: warning: static property 'superSourceBox' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
    |                     |- warning: static property 'superSourceBox' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'superSourceBox' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
183 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:182:21: warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
    |                     |- warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'keySource' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 |
184 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:202:21: warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
200 | 		}
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
    |                     |- warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me1AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:203:21: warning: static property 'me2AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
    |                     |- warning: static property 'me2AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me2AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
204 |
205 | 		public static let none = MixEffects([])
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:205:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
205 | 		public static let none = MixEffects([])
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 |
207 | 		public func describe() -> String? {
[270/295] Emitting module Atem
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:13:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | 	/// Performs a cut on the atem
 12 | 	public struct Cut: SerializableMessage {
 13 | 		public static let title = Message.Title(string: "DCut")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 14 | 		public let debugDescription = "cut"
 15 | 		public let mixEffectBlock: UInt8
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:35:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 33 | 	/// Informs a switcher that the preview bus should be changed
 34 | 	public struct ChangePreviewBus: SerializableMessage {
 35 | 		public static let title = Message.Title(string: "CPvI")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 36 |
 37 | 		public let mixEffect: UInt8
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:61:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 59 | 	/// Informs a controller that the preview bus has changed
 60 | 	public struct ChangePreviewBus: SerializableMessage {
 61 | 		public static let title = Message.Title(string: "PrvI")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 62 |
 63 | 		public let mixEffect: UInt8
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:88:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 86 | 	/// Informs a switcher that the program bus shoud be changed
 87 | 	public struct ChangeProgramBus: SerializableMessage {
 88 | 		public static let title = Message.Title(string: "CPgI")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |
 90 | 		public let mixEffect: UInt8
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:114:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
112 | 	/// Informs a controller that the program bus has changed
113 | 	public struct ChangeProgramBus: SerializableMessage {
114 | 		public static let title = Message.Title(string: "PrgI")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |
116 | 		public let mixEffect: UInt8
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:142:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
140 | 	/// Informs a switcher that a source should be assigned to the specified auxiliary output
141 | 	public struct ChangeAuxiliaryOutput: SerializableMessage {
142 | 		public static let title = Message.Title(string: "CAuS")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
143 |
144 | 		/// The source that should be assigned to the auxiliary output
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:174:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
172 | 	/// Informs a controller that a source has been routed to an auxiliary output
173 | 	public struct ChangeAuxiliaryOutput: SerializableMessage {
174 | 		public static let title = Message.Title(string: "AuxS")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 |
176 | 		/// The source that has been routed to the auxiliary output
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:207:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
205 | extension Message.Do {
206 | 	public struct GetTimecode: SerializableMessage {
207 | 		public static let title = Message.Title(string: "TiRq")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
208 |
209 | 		public init(with bytes: ArraySlice<UInt8>) throws {}
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:220:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
218 | 	public struct GetTimecode: SerializableMessage {
219 | 		public typealias Timecode = (hour: UInt8, minute: UInt8, second: UInt8, frame: UInt8)
220 | 		public static let title = Message.Title(string: "Time")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
221 | 		public let timecode: Timecode
222 |
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:254:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
252 | 	/// Informs the switcher that it should update its transition position
253 | 	public struct ChangeTransitionPosition: SerializableMessage {
254 | 		public static let title = Message.Title(string: "CTPs")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
255 | 		public let mixEffect: UInt8
256 | 		public let position: UInt16
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:278:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
276 | 	/// Informs the controller that the transition position has changed
277 | 	public struct ChangeTransitionPosition: SerializableMessage {
278 | 		public static let title = Message.Title(string: "TrPs")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
279 | 		public let mixEffect: UInt8
280 | 		public let position: UInt16
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:315:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
313 | 	/// Informs a controller that the some tally lights might have changed.
314 | 	public struct ChangeSourceTallies: SerializableMessage {
315 | 		public static let title = Message.Title(string: "TlSr")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
316 |
317 | 		/// The state of the tally lights for each source of the Atem switcher
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:364:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
362 | 	@available(OSX 10.12, iOS 10.0, *)
363 | 	public struct ChangeKeyDVE: SerializableMessage {
364 | 		public static let title = Message.Title(string: "CKDV")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
365 |
366 | 		public let changedElements: ChangeMask
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:416:22: warning: static property 'rotation' is not concurrency-safe because non-'Sendable' type 'Message.Do.ChangeKeyDVE.ChangeMask' may have shared mutable state; this is an error in the Swift 6 language mode
407 | 		}
408 |
409 | 		public struct ChangeMask: OptionSet {
    |                 `- note: consider making struct 'ChangeMask' conform to the 'Sendable' protocol
410 | 			public let rawValue: UInt32
411 |
    :
414 | 			}
415 |
416 | 			public static let rotation = Self(rawValue: 1 << 4)
    |                      |- warning: static property 'rotation' is not concurrency-safe because non-'Sendable' type 'Message.Do.ChangeKeyDVE.ChangeMask' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'rotation' with '@MainActor' if property should only be accessed from the main actor
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
417 | 		}
418 | 	}
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:425:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
423 | public extension Message.Did {
424 | 	struct ChangeMediaPlayerFrameDescription: DeserializableMessage {
425 | 		public static let title = Message.Title(string: "MPfe")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
426 |
427 | 		public let id: MediaPool.ID
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/Atem/Messages/Actions.swift:450:15: warning: static property 'name' is not concurrency-safe because non-'Sendable' type '(Int) -> Range<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
448 | 			static let frameIndex = 2..<4
449 | 			static let nameLength = 22..<24
450 | 			static let name = { length in nameLength.endIndex ..< nameLength.endIndex + length }
    |               |- warning: static property 'name' is not concurrency-safe because non-'Sendable' type '(Int) -> Range<Int>' may have shared mutable state; this is an error in the Swift 6 language mode
    |               |- note: annotate 'name' with '@MainActor' if property should only be accessed from the main actor
    |               `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
451 | 		}
452 | 	}
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:14:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | 	/// There are two version numbers in ATEM world: One for the ATEM Software Control application (for instance version 6.0), which is what people usually refer to, and one for the firmware which is often updated with the PC/Mac application versions (for instance 2.15). The latter version number is what "_ver" gives you and a number you can not find anywhere in the application to our knowledge.
 13 | 	public struct ProtocolVersion: SerializableMessage {
 14 | 		public static let title = Message.Title(string: "_ver")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 | 		static let majorPosition = 0..<2
 16 | 		static let minorPosition = 2..<4
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:36:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 34 | 	/// Information about the ATEM product
 35 | 	public struct ProductInfo: SerializableMessage {
 36 | 		public static let title = Message.Title(string: "_pin")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 37 | 		static let namePosition = 0..<40
 38 | 		static let tooLongNameCount = namePosition.count + 1
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:88:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 86 | 	///  - [Qt ATEM protocol implementation](https://github.com/petersimonsson/libqatemcontrol/blob/master/qatemconnection.cpp)
 87 | 	public struct Topology: SerializableMessage {
 88 | 		public static let title = Message.Title(string: "_top")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 |
 90 | 		public let mixEffectBlocks: UInt8
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:180:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
178 |
179 | 	public struct MixEffect: SerializableMessage {
180 | 		public static let title = Message.Title(string: "_MeC")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
181 |
182 | 		/// The block index. Starts counting at 0 so first block is 0
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:208:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
206 |
207 | 	public struct MediaPool: SerializableMessage {
208 | 		public static let title = Message.Title(string: "_mpl")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
209 |
210 | 		/// The number of stills that can be stored
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:235:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
233 |
234 | 	public struct MultiView: SerializableMessage {
235 | 		public static let title = Message.Title(string: "_MvC")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |
237 | 		/// The number inputs that are included in the multiview
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:268:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
266 | 	/// This message should be sent at the end of the connection initiation. The connection initiation is the sequence of packets that is sent at the very beginning of a connection and they contain messages that represent the state of the device at the moment of conection.
267 | 	public struct InitiationComplete: SerializableMessage {
268 | 		public static let title = Message.Title(string: "InCm")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
269 |
270 | 		public init(with bytes: ArraySlice<UInt8>) throws {
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:293:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
291 | 	/// The properties (like name and port types) of a video source
292 | 	public struct DidChangeProperties: SerializableMessage {
293 | 		public static let title: Message.Title = Message.Title(string: "InPr")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
294 | 		static let defaultText = " ".data(using: .utf8)! + [0]
295 |
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:389:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
387 |
388 | 	public struct DoChangeProperties: SerializableMessage {
389 | 		public static let title = Message.Title(string: "CInL")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
390 |
391 | 		public let changeMask: ChangeMask
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:454:22: warning: static property 'longName' is not concurrency-safe because non-'Sendable' type 'VideoSource.DoChangeProperties.ChangeMask' may have shared mutable state; this is an error in the Swift 6 language mode
445 | 		}
446 |
447 | 		public struct ChangeMask: OptionSet {
    |                 `- note: consider making struct 'ChangeMask' conform to the 'Sendable' protocol
448 | 			public let rawValue: UInt8
449 |
    :
452 | 			}
453 |
454 | 			public static let longName  = Self(rawValue: 1 << 0)
    |                      |- warning: static property 'longName' is not concurrency-safe because non-'Sendable' type 'VideoSource.DoChangeProperties.ChangeMask' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'longName' with '@MainActor' if property should only be accessed from the main actor
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
455 | 			public static let shortName = Self(rawValue: 1 << 1)
456 | 			public static let externalPortType = Self(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:455:22: warning: static property 'shortName' is not concurrency-safe because non-'Sendable' type 'VideoSource.DoChangeProperties.ChangeMask' may have shared mutable state; this is an error in the Swift 6 language mode
445 | 		}
446 |
447 | 		public struct ChangeMask: OptionSet {
    |                 `- note: consider making struct 'ChangeMask' conform to the 'Sendable' protocol
448 | 			public let rawValue: UInt8
449 |
    :
453 |
454 | 			public static let longName  = Self(rawValue: 1 << 0)
455 | 			public static let shortName = Self(rawValue: 1 << 1)
    |                      |- warning: static property 'shortName' is not concurrency-safe because non-'Sendable' type 'VideoSource.DoChangeProperties.ChangeMask' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'shortName' with '@MainActor' if property should only be accessed from the main actor
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
456 | 			public static let externalPortType = Self(rawValue: 1 << 2)
457 | 		}
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:456:22: warning: static property 'externalPortType' is not concurrency-safe because non-'Sendable' type 'VideoSource.DoChangeProperties.ChangeMask' may have shared mutable state; this is an error in the Swift 6 language mode
445 | 		}
446 |
447 | 		public struct ChangeMask: OptionSet {
    |                 `- note: consider making struct 'ChangeMask' conform to the 'Sendable' protocol
448 | 			public let rawValue: UInt8
449 |
    :
454 | 			public static let longName  = Self(rawValue: 1 << 0)
455 | 			public static let shortName = Self(rawValue: 1 << 1)
456 | 			public static let externalPortType = Self(rawValue: 1 << 2)
    |                      |- warning: static property 'externalPortType' is not concurrency-safe because non-'Sendable' type 'VideoSource.DoChangeProperties.ChangeMask' may have shared mutable state; this is an error in the Swift 6 language mode
    |                      |- note: annotate 'externalPortType' with '@MainActor' if property should only be accessed from the main actor
    |                      `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
457 | 		}
458 | 	}
/host/spi-builder-workspace/Sources/Atem/Messages/DataTransfer.swift:10:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | extension Message.Do {
  9 | 	public struct RequestLock: SerializableMessage {
 10 | 		public static let title = Message.Title(string: "LOCK")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 | 		public let store: UInt16
 12 | 		public let state: UInt16
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/DataTransfer.swift:32:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |
 31 | 	public struct RequestLockPosition: SerializableMessage {
 32 | 		public static let title = Message.Title(string: "PLCK")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 | 		public let store: UInt16
 34 | 		public let index: UInt16
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/DataTransfer.swift:66:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 64 | extension Message.Did {
 65 | 	public struct ChangeLock: SerializableMessage {
 66 | 		public static let title = Message.Title(string: "LKST")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 67 | 		public let store: UInt16
 68 | 		public let isLocked: Bool
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/DataTransfer.swift:88:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
 86 |
 87 | 	public struct ObtainLock: SerializableMessage {
 88 | 		public static let title = Message.Title(string: "LKOB")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 89 | 		public let store: UInt16
 90 |
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/DataTransfer.swift:109:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
107 | extension Message.Do {
108 | 	public struct StartDataTransfer: SerializableMessage {
109 | 		public static let title = Message.Title(string: "FTSD")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |
111 | 		public let transferID: UInt16
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/DataTransfer.swift:164:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
162 |
163 | 	public struct RequestDataChunks: SerializableMessage {
164 | 		public static let title = Message.Title(string: "FTCD")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
165 |
166 | 		public let transferID:   UInt16
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/DataTransfer.swift:208:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
206 |
207 | 	public struct SetFileDescription: SerializableMessage {
208 | 		public static let title = Message.Title(string: "FTFD")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
209 |
210 | 		public let transferID: UInt16
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/DataTransfer.swift:271:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
269 |
270 | 	public struct TransferData: SerializableMessage {
271 | 		public static let title = Message.Title(string: "FTDa")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
272 |
273 | 		public let transferID: UInt16
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/Messages/DataTransfer.swift:308:21: warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
306 | extension Message.Did {
307 | 	public struct FinishDataTransfer: SerializableMessage {
308 | 		public static let title = Message.Title(string: "FTDC")
    |                     |- warning: static property 'title' is not concurrency-safe because non-'Sendable' type 'Message.Title' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'title' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
309 |
310 | 		public let transferID: UInt16
/host/spi-builder-workspace/Sources/Atem/Messages/Message.swift:21:16: note: consider making struct 'Title' conform to the 'Sendable' protocol
 19 | public enum Message {
 20 | 	/// An ASCII String of exactly 4 characters. A list of available titles can be found in [Skarhoj's protocol description](http://skaarhoj.com/fileadmin/BMDPROTOCOL.html) under the column "CMD".
 21 | 	public struct Title: CustomStringConvertible {
    |                `- note: consider making struct 'Title' conform to the 'Sendable' protocol
 22 | 		/// The position of the title in a message. (Ignoring the first four bytes of a message)
 23 | 		/// Slice `0 ..< 4`
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:24:24: warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
22 | 	}
23 |
24 | 	public static let     off = TallyLight([])
   |                        |- warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'off' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | 	public static let program = TallyLight(rawValue: 1)
26 | 	public static let preview = TallyLight(rawValue: 2)
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:25:20: warning: static property 'program' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
23 |
24 | 	public static let     off = TallyLight([])
25 | 	public static let program = TallyLight(rawValue: 1)
   |                    |- warning: static property 'program' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'program' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | 	public static let preview = TallyLight(rawValue: 2)
27 |
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:26:20: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
24 | 	public static let     off = TallyLight([])
25 | 	public static let program = TallyLight(rawValue: 1)
26 | 	public static let preview = TallyLight(rawValue: 2)
   |                    |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | 	public var debugDescription: String {
/host/spi-builder-workspace/Sources/Atem/Utilities/InitialSwitcherStateMessages.swift:10:5: warning: let 'inputProperties' is not concurrency-safe because non-'Sendable' type '[VideoSource.DidChangeProperties]' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | let inputProperties = [
    |     |- warning: let 'inputProperties' is not concurrency-safe because non-'Sendable' type '[VideoSource.DidChangeProperties]' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: annotate 'inputProperties' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 | 	VideoSource.DidChangeProperties(
 12 | 		source: .black,
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:292:16: note: consider making struct 'DidChangeProperties' conform to the 'Sendable' protocol
290 | extension VideoSource {
291 | 	/// The properties (like name and port types) of a video source
292 | 	public struct DidChangeProperties: SerializableMessage {
    |                `- note: consider making struct 'DidChangeProperties' conform to the 'Sendable' protocol
293 | 		public static let title: Message.Title = Message.Title(string: "InPr")
294 | 		static let defaultText = " ".data(using: .utf8)! + [0]
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:178:21: warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
176 | 		}
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
    |                     |- warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'auxiliary' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:179:21: warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
    |                     |- warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'multiviewer' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:182:21: warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
    |                     |- warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'keySource' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 |
184 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:202:21: warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
200 | 		}
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
    |                     |- warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me1AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:152:21: warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
150 | 		}
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
    |                     |- warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sdi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:153:21: warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
    |                     |- warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hdmi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:154:21: warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
    |                     |- warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'component' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:155:21: warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
    |                     |- warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'composite' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:156:21: warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
    |                     |- warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sVideo' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |
158 | 		public static let none = ExternalInterfaces([])
/host/spi-builder-workspace/Sources/Atem/Utilities/RawRepresentable+decode.swift:14:6: warning: stored property 'value' of 'Sendable'-conforming generic struct 'UnsupportedRawValue' has non-sendable type 'R.RawValue'; this is an error in the Swift 6 language mode
12 | struct UnsupportedRawValue<R: RawRepresentable>: LocalizedError {
13 | 	/// The value that is not supported by the `RawRepresentable`
14 | 	let value: R.RawValue
   |      `- warning: stored property 'value' of 'Sendable'-conforming generic struct 'UnsupportedRawValue' has non-sendable type 'R.RawValue'; this is an error in the Swift 6 language mode
15 |
16 | 	/// A textual description of the error
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:158:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
158 | 		public static let none = ExternalInterfaces([])
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
159 |
160 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:180:21: warning: static property 'superSourceArt' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
    |                     |- warning: static property 'superSourceArt' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'superSourceArt' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:181:21: warning: static property 'superSourceBox' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
    |                     |- warning: static property 'superSourceBox' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'superSourceBox' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
183 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:203:21: warning: static property 'me2AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
    |                     |- warning: static property 'me2AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me2AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
204 |
205 | 		public static let none = MixEffects([])
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:205:21: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
205 | 		public static let none = MixEffects([])
    |                     |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
206 |
207 | 		public func describe() -> String? {
[271/295] Compiling Atem TallyLight.swift
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:24:24: warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
22 | 	}
23 |
24 | 	public static let     off = TallyLight([])
   |                        |- warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'off' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | 	public static let program = TallyLight(rawValue: 1)
26 | 	public static let preview = TallyLight(rawValue: 2)
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:25:20: warning: static property 'program' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
23 |
24 | 	public static let     off = TallyLight([])
25 | 	public static let program = TallyLight(rawValue: 1)
   |                    |- warning: static property 'program' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'program' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | 	public static let preview = TallyLight(rawValue: 2)
27 |
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:26:20: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
24 | 	public static let     off = TallyLight([])
25 | 	public static let program = TallyLight(rawValue: 1)
26 | 	public static let preview = TallyLight(rawValue: 2)
   |                    |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | 	public var debugDescription: String {
[272/295] Compiling Atem ArrayOperations.swift
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:24:24: warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
22 | 	}
23 |
24 | 	public static let     off = TallyLight([])
   |                        |- warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'off' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | 	public static let program = TallyLight(rawValue: 1)
26 | 	public static let preview = TallyLight(rawValue: 2)
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:25:20: warning: static property 'program' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
23 |
24 | 	public static let     off = TallyLight([])
25 | 	public static let program = TallyLight(rawValue: 1)
   |                    |- warning: static property 'program' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'program' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | 	public static let preview = TallyLight(rawValue: 2)
27 |
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:26:20: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
24 | 	public static let     off = TallyLight([])
25 | 	public static let program = TallyLight(rawValue: 1)
26 | 	public static let preview = TallyLight(rawValue: 2)
   |                    |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | 	public var debugDescription: String {
[273/295] Compiling Atem EventLoopGroup.swift
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:24:24: warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
22 | 	}
23 |
24 | 	public static let     off = TallyLight([])
   |                        |- warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: annotate 'off' with '@MainActor' if property should only be accessed from the main actor
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | 	public static let program = TallyLight(rawValue: 1)
26 | 	public static let preview = TallyLight(rawValue: 2)
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:25:20: warning: static property 'program' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
23 |
24 | 	public static let     off = TallyLight([])
25 | 	public static let program = TallyLight(rawValue: 1)
   |                    |- warning: static property 'program' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'program' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
26 | 	public static let preview = TallyLight(rawValue: 2)
27 |
/host/spi-builder-workspace/Sources/Atem/TallyLight.swift:26:20: warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
15 | ///  - `.preview`
16 | ///  - both `.program` & `.preview`
17 | public struct TallyLight: OptionSet, CustomDebugStringConvertible {
   |               `- note: consider making struct 'TallyLight' conform to the 'Sendable' protocol
18 | 	public let rawValue: UInt8
19 |
   :
24 | 	public static let     off = TallyLight([])
25 | 	public static let program = TallyLight(rawValue: 1)
26 | 	public static let preview = TallyLight(rawValue: 2)
   |                    |- warning: static property 'preview' is not concurrency-safe because non-'Sendable' type 'TallyLight' may have shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: annotate 'preview' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 | 	public var debugDescription: String {
[274/295] Compiling Atem HandlerWithTimer.swift
/host/spi-builder-workspace/Sources/Atem/Utilities/HandlerWithTimer.swift:36:22: warning: capture of 'self' with non-sendable type 'HandlerWithTimer?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | import NIO
 9 |
10 | class HandlerWithTimer: ChannelInboundHandler {
   |       `- note: class 'HandlerWithTimer' does not conform to the 'Sendable' protocol
11 | 	static let sendInterval = TimeAmount.milliseconds(30)
12 |
   :
34 | 		if active {
35 | 			nextKeepAliveTask = context.eventLoop.scheduleTask(in: Self.sendInterval) { [weak self] in
36 | 				if let handler = self {
   |                      `- warning: capture of 'self' with non-sendable type 'HandlerWithTimer?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 					handler.executeTimerTask(context: context)
38 | 					handler.startLoop(in: context)
/host/spi-builder-workspace/Sources/Atem/Utilities/HandlerWithTimer.swift:37:40: warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | 			nextKeepAliveTask = context.eventLoop.scheduleTask(in: Self.sendInterval) { [weak self] in
36 | 				if let handler = self {
37 | 					handler.executeTimerTask(context: context)
   |                                        `- warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 | 					handler.startLoop(in: context)
39 | 				}
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift:1507:20: note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1505 | /// at the right point in time. Often, the right behaviour is to react to an event and then forward it to the next
1506 | /// `ChannelHandler`.
1507 | public final class ChannelHandlerContext: ChannelInvoker {
     |                    `- note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1508 |     // visible for ChannelPipeline to modify
1509 |     fileprivate var next: Optional<ChannelHandlerContext>
/host/spi-builder-workspace/Sources/Atem/Utilities/InitialSwitcherStateMessages.swift:10:5: warning: let 'inputProperties' is not concurrency-safe because non-'Sendable' type '[VideoSource.DidChangeProperties]' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | let inputProperties = [
    |     |- warning: let 'inputProperties' is not concurrency-safe because non-'Sendable' type '[VideoSource.DidChangeProperties]' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: annotate 'inputProperties' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 | 	VideoSource.DidChangeProperties(
 12 | 		source: .black,
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:292:16: note: consider making struct 'DidChangeProperties' conform to the 'Sendable' protocol
290 | extension VideoSource {
291 | 	/// The properties (like name and port types) of a video source
292 | 	public struct DidChangeProperties: SerializableMessage {
    |                `- note: consider making struct 'DidChangeProperties' conform to the 'Sendable' protocol
293 | 		public static let title: Message.Title = Message.Title(string: "InPr")
294 | 		static let defaultText = " ".data(using: .utf8)! + [0]
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:178:21: warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
176 | 		}
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
    |                     |- warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'auxiliary' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:179:21: warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
    |                     |- warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'multiviewer' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:182:21: warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
    |                     |- warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'keySource' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 |
184 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:202:21: warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
200 | 		}
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
    |                     |- warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me1AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:152:21: warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
150 | 		}
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
    |                     |- warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sdi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:153:21: warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
    |                     |- warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hdmi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:154:21: warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
    |                     |- warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'component' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:155:21: warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
    |                     |- warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'composite' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:156:21: warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
    |                     |- warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sVideo' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |
158 | 		public static let none = ExternalInterfaces([])
[275/295] Compiling Atem InitialSwitcherStateMessages.swift
/host/spi-builder-workspace/Sources/Atem/Utilities/HandlerWithTimer.swift:36:22: warning: capture of 'self' with non-sendable type 'HandlerWithTimer?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | import NIO
 9 |
10 | class HandlerWithTimer: ChannelInboundHandler {
   |       `- note: class 'HandlerWithTimer' does not conform to the 'Sendable' protocol
11 | 	static let sendInterval = TimeAmount.milliseconds(30)
12 |
   :
34 | 		if active {
35 | 			nextKeepAliveTask = context.eventLoop.scheduleTask(in: Self.sendInterval) { [weak self] in
36 | 				if let handler = self {
   |                      `- warning: capture of 'self' with non-sendable type 'HandlerWithTimer?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 					handler.executeTimerTask(context: context)
38 | 					handler.startLoop(in: context)
/host/spi-builder-workspace/Sources/Atem/Utilities/HandlerWithTimer.swift:37:40: warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | 			nextKeepAliveTask = context.eventLoop.scheduleTask(in: Self.sendInterval) { [weak self] in
36 | 				if let handler = self {
37 | 					handler.executeTimerTask(context: context)
   |                                        `- warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 | 					handler.startLoop(in: context)
39 | 				}
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift:1507:20: note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1505 | /// at the right point in time. Often, the right behaviour is to react to an event and then forward it to the next
1506 | /// `ChannelHandler`.
1507 | public final class ChannelHandlerContext: ChannelInvoker {
     |                    `- note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1508 |     // visible for ChannelPipeline to modify
1509 |     fileprivate var next: Optional<ChannelHandlerContext>
/host/spi-builder-workspace/Sources/Atem/Utilities/InitialSwitcherStateMessages.swift:10:5: warning: let 'inputProperties' is not concurrency-safe because non-'Sendable' type '[VideoSource.DidChangeProperties]' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | let inputProperties = [
    |     |- warning: let 'inputProperties' is not concurrency-safe because non-'Sendable' type '[VideoSource.DidChangeProperties]' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: annotate 'inputProperties' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 | 	VideoSource.DidChangeProperties(
 12 | 		source: .black,
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:292:16: note: consider making struct 'DidChangeProperties' conform to the 'Sendable' protocol
290 | extension VideoSource {
291 | 	/// The properties (like name and port types) of a video source
292 | 	public struct DidChangeProperties: SerializableMessage {
    |                `- note: consider making struct 'DidChangeProperties' conform to the 'Sendable' protocol
293 | 		public static let title: Message.Title = Message.Title(string: "InPr")
294 | 		static let defaultText = " ".data(using: .utf8)! + [0]
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:178:21: warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
176 | 		}
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
    |                     |- warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'auxiliary' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:179:21: warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
    |                     |- warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'multiviewer' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:182:21: warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
    |                     |- warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'keySource' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 |
184 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:202:21: warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
200 | 		}
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
    |                     |- warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me1AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:152:21: warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
150 | 		}
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
    |                     |- warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sdi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:153:21: warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
    |                     |- warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hdmi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:154:21: warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
    |                     |- warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'component' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:155:21: warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
    |                     |- warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'composite' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:156:21: warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
    |                     |- warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sVideo' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |
158 | 		public static let none = ExternalInterfaces([])
[276/295] Compiling Atem IntOperators.swift
/host/spi-builder-workspace/Sources/Atem/Utilities/HandlerWithTimer.swift:36:22: warning: capture of 'self' with non-sendable type 'HandlerWithTimer?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | import NIO
 9 |
10 | class HandlerWithTimer: ChannelInboundHandler {
   |       `- note: class 'HandlerWithTimer' does not conform to the 'Sendable' protocol
11 | 	static let sendInterval = TimeAmount.milliseconds(30)
12 |
   :
34 | 		if active {
35 | 			nextKeepAliveTask = context.eventLoop.scheduleTask(in: Self.sendInterval) { [weak self] in
36 | 				if let handler = self {
   |                      `- warning: capture of 'self' with non-sendable type 'HandlerWithTimer?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
37 | 					handler.executeTimerTask(context: context)
38 | 					handler.startLoop(in: context)
/host/spi-builder-workspace/Sources/Atem/Utilities/HandlerWithTimer.swift:37:40: warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a `@Sendable` closure; this is an error in the Swift 6 language mode
35 | 			nextKeepAliveTask = context.eventLoop.scheduleTask(in: Self.sendInterval) { [weak self] in
36 | 				if let handler = self {
37 | 					handler.executeTimerTask(context: context)
   |                                        `- warning: capture of 'context' with non-sendable type 'ChannelHandlerContext' in a `@Sendable` closure; this is an error in the Swift 6 language mode
38 | 					handler.startLoop(in: context)
39 | 				}
/host/spi-builder-workspace/.build/checkouts/swift-nio/Sources/NIOCore/ChannelPipeline.swift:1507:20: note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1505 | /// at the right point in time. Often, the right behaviour is to react to an event and then forward it to the next
1506 | /// `ChannelHandler`.
1507 | public final class ChannelHandlerContext: ChannelInvoker {
     |                    `- note: class 'ChannelHandlerContext' does not conform to the 'Sendable' protocol
1508 |     // visible for ChannelPipeline to modify
1509 |     fileprivate var next: Optional<ChannelHandlerContext>
/host/spi-builder-workspace/Sources/Atem/Utilities/InitialSwitcherStateMessages.swift:10:5: warning: let 'inputProperties' is not concurrency-safe because non-'Sendable' type '[VideoSource.DidChangeProperties]' may have shared mutable state; this is an error in the Swift 6 language mode
  8 | import Foundation
  9 |
 10 | let inputProperties = [
    |     |- warning: let 'inputProperties' is not concurrency-safe because non-'Sendable' type '[VideoSource.DidChangeProperties]' may have shared mutable state; this is an error in the Swift 6 language mode
    |     |- note: annotate 'inputProperties' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 | 	VideoSource.DidChangeProperties(
 12 | 		source: .black,
/host/spi-builder-workspace/Sources/Atem/Messages/Configuration.swift:292:16: note: consider making struct 'DidChangeProperties' conform to the 'Sendable' protocol
290 | extension VideoSource {
291 | 	/// The properties (like name and port types) of a video source
292 | 	public struct DidChangeProperties: SerializableMessage {
    |                `- note: consider making struct 'DidChangeProperties' conform to the 'Sendable' protocol
293 | 		public static let title: Message.Title = Message.Title(string: "InPr")
294 | 		static let defaultText = " ".data(using: .utf8)! + [0]
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:178:21: warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
176 | 		}
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
    |                     |- warning: static property 'auxiliary' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'auxiliary' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:179:21: warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
177 |
178 | 		public static let auxiliary =      RoutingOptions(rawValue: 1 << 0)
179 | 		public static let multiviewer =    RoutingOptions(rawValue: 1 << 1)
    |                     |- warning: static property 'multiviewer' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'multiviewer' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:182:21: warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
170 | 	}
171 |
172 | 	public struct RoutingOptions: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'RoutingOptions' conform to the 'Sendable' protocol
173 | 		public let rawValue: UInt8
174 | 		public init(rawValue: UInt8) {
    :
180 | 		public static let superSourceArt = RoutingOptions(rawValue: 1 << 2)
181 | 		public static let superSourceBox = RoutingOptions(rawValue: 1 << 3)
182 | 		public static let keySource =      RoutingOptions(rawValue: 1 << 4)
    |                     |- warning: static property 'keySource' is not concurrency-safe because non-'Sendable' type 'VideoSource.RoutingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'keySource' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
183 |
184 | 		public func describe() -> String? {
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:202:21: warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
194 | 	}
195 |
196 | 	public struct MixEffects: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'MixEffects' conform to the 'Sendable' protocol
197 | 		public let rawValue: UInt8
198 | 		public init(rawValue: UInt8) {
    :
200 | 		}
201 |
202 | 		public static let me1AndFillSources = MixEffects(rawValue: 1 << 0)
    |                     |- warning: static property 'me1AndFillSources' is not concurrency-safe because non-'Sendable' type 'VideoSource.MixEffects' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'me1AndFillSources' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
203 | 		public static let me2AndFillSources = MixEffects(rawValue: 1 << 1)
204 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:152:21: warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
150 | 		}
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
    |                     |- warning: static property 'sdi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sdi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:153:21: warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
151 |
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
    |                     |- warning: static property 'hdmi' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'hdmi' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:154:21: warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
152 | 		public static let sdi =       ExternalInterfaces(rawValue: 1 << 0)
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
    |                     |- warning: static property 'component' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'component' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:155:21: warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
153 | 		public static let hdmi =      ExternalInterfaces(rawValue: 1 << 1)
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
    |                     |- warning: static property 'composite' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'composite' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
157 |
/host/spi-builder-workspace/Sources/Atem/VideoSource.swift:156:21: warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
144 | 	}
145 |
146 | 	public struct ExternalInterfaces: OptionSet, SingleValueDescribable {
    |                `- note: consider making struct 'ExternalInterfaces' conform to the 'Sendable' protocol
147 | 		public let rawValue: UInt8
148 | 		public init(rawValue: UInt8) {
    :
154 | 		public static let component = ExternalInterfaces(rawValue: 1 << 2)
155 | 		public static let composite = ExternalInterfaces(rawValue: 1 << 3)
156 | 		public static let sVideo =    ExternalInterfaces(rawValue: 1 << 4)
    |                     |- warning: static property 'sVideo' is not concurrency-safe because non-'Sendable' type 'VideoSource.ExternalInterfaces' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'sVideo' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |
158 | 		public static let none = ExternalInterfaces([])
[277/302] Wrapping AST for Atem for debugging
[279/315] Emitting module TitleGenerator
[280/315] Compiling TitleGenerator Renderer.swift
[281/315] Compiling TitleGenerator Title.swift
[282/315] Compiling TitleGenerator main.swift
[284/316] Emitting module SourceLabeler
[285/316] Compiling SourceLabeler main.swift
[286/316] Compiling SourceLabeler Label.swift
[287/316] Emitting module PreviewSwitcher
[288/316] Compiling PreviewSwitcher main.swift
[289/316] Emitting module VersionDump
[290/316] Compiling VersionDump main.swift
[291/316] Compiling MessageDecoder IntOperators.swift
[292/317] Compiling SourceLabeler connect.swift
[293/317] Compiling SourceLabeler generate grid.swift
[293/317] Wrapping AST for TitleGenerator for debugging
[294/317] Write Objects.LinkFileList
[296/318] Emitting module Simulator
[297/318] Compiling Simulator main.swift
[299/319] Compiling SourceLabeler Analyze grid.swift
[301/320] Wrapping AST for PreviewSwitcher for debugging
[302/320] Write Objects.LinkFileList
[304/320] Wrapping AST for Simulator for debugging
[305/320] Write Objects.LinkFileList
[306/320] Wrapping AST for VersionDump for debugging
[307/320] Write Objects.LinkFileList
[308/320] Wrapping AST for SourceLabeler for debugging
[309/320] Write Objects.LinkFileList
[310/320] Linking TitleGenerator
[311/320] Linking Simulator
[313/320] Emitting module MessageDecoder
[313/320] Linking VersionDump
[314/320] Linking PreviewSwitcher
[315/320] Linking SourceLabeler
[317/320] Compiling MessageDecoder main.swift
[318/321] Wrapping AST for MessageDecoder for debugging
[319/321] Write Objects.LinkFileList
[320/321] Linking MessageDecoder
Build complete! (103.50s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-nio",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.32.3",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-nio.git"
    }
  ],
  "manifest_display_name" : "Atem",
  "name" : "Atem",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Atem",
      "targets" : [
        "Atem"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "AtemAppleDiscovery",
      "targets" : [
        "AtemAppleDiscovery"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "VersionDump",
      "targets" : [
        "VersionDump"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "Simulator",
      "targets" : [
        "Simulator"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "TitleGenerator",
      "targets" : [
        "TitleGenerator"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "PreviewSwitcher",
      "targets" : [
        "PreviewSwitcher"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "SourceLabeler",
      "targets" : [
        "SourceLabeler"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "MessageDecoder",
      "targets" : [
        "MessageDecoder"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "VersionDump",
      "module_type" : "SwiftTarget",
      "name" : "VersionDump",
      "path" : "Sources/VersionDump",
      "product_memberships" : [
        "VersionDump"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Atem"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "TitleGenerator",
      "module_type" : "SwiftTarget",
      "name" : "TitleGenerator",
      "path" : "Sources/TitleGenerator",
      "product_memberships" : [
        "TitleGenerator"
      ],
      "sources" : [
        "Renderer.swift",
        "Title.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "Atem"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SourceLabeler",
      "module_type" : "SwiftTarget",
      "name" : "SourceLabeler",
      "path" : "Sources/SourceLabeler",
      "product_memberships" : [
        "SourceLabeler"
      ],
      "sources" : [
        "Analyze grid.swift",
        "Label.swift",
        "connect.swift",
        "generate grid.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "Atem"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "Simulator",
      "module_type" : "SwiftTarget",
      "name" : "Simulator",
      "path" : "Sources/Simulator",
      "product_memberships" : [
        "Simulator"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Atem"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "PreviewSwitcher",
      "module_type" : "SwiftTarget",
      "name" : "PreviewSwitcher",
      "path" : "Sources/PreviewSwitcher",
      "product_memberships" : [
        "PreviewSwitcher"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "Atem"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "MessageDecoder",
      "module_type" : "SwiftTarget",
      "name" : "MessageDecoder",
      "path" : "Sources/MessageDecoder",
      "product_memberships" : [
        "MessageDecoder"
      ],
      "sources" : [
        "IntOperators.swift",
        "main.swift"
      ],
      "target_dependencies" : [
        "Atem"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "AtemTests",
      "module_type" : "SwiftTarget",
      "name" : "AtemTests",
      "path" : "Tests/AtemTests",
      "sources" : [
        "Atem_Tests.swift",
        "ColorConversionTests.swift",
        "DataTransferMessagesTests.swift",
        "EnvelopeWrapper.swift",
        "MessageTests.swift"
      ],
      "target_dependencies" : [
        "Atem"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AtemAppleDiscovery",
      "module_type" : "SwiftTarget",
      "name" : "AtemAppleDiscovery",
      "path" : "Sources/AtemAppleDiscovery",
      "product_dependencies" : [
        "NIO"
      ],
      "product_memberships" : [
        "AtemAppleDiscovery"
      ],
      "sources" : [
        "NetService.swift",
        "Network-framework.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Atem",
      "module_type" : "SwiftTarget",
      "name" : "Atem",
      "path" : "Sources/Atem",
      "product_dependencies" : [
        "NIO"
      ],
      "product_memberships" : [
        "Atem",
        "VersionDump",
        "Simulator",
        "TitleGenerator",
        "PreviewSwitcher",
        "SourceLabeler",
        "MessageDecoder"
      ],
      "sources" : [
        "Connection.swift",
        "Controller.swift",
        "MediaConverter/422 ABLARL YUV.swift",
        "MediaConverter/Decode input labels.swift",
        "MediaConverter/RunLength.swift",
        "MediaConverter/accelerate.swift",
        "MediaPool.swift",
        "MediaTransferManager.swift",
        "MessageHandler.swift",
        "Messages/Actions.swift",
        "Messages/Configuration.swift",
        "Messages/DataTransfer.swift",
        "Messages/Message.swift",
        "Model.swift",
        "Packet.swift",
        "PacketTypes.swift",
        "Switcher.swift",
        "TallyLight.swift",
        "Utilities/ArrayOperations.swift",
        "Utilities/EventLoopGroup.swift",
        "Utilities/HandlerWithTimer.swift",
        "Utilities/InitialSwitcherStateMessages.swift",
        "Utilities/IntOperators.swift",
        "Utilities/OptionSet+elements.swift",
        "Utilities/RawRepresentable+decode.swift",
        "VideoSource.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.