Build Information
Successful build of FZSwiftUtils, reference 1.1.8 (1cd580
), with Swift 6.1 for tvOS using Xcode 16.3 on 25 Apr 2025 05:55:09 UTC.
Swift 6 data race errors: 184
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme FZSwiftUtils -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let left = minX
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:32:23: warning: static property 'right' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let right = maxX
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:32:23: note: add '@MainActor' to make static property 'right' part of global actor 'MainActor'
public static let right = maxX
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let right = maxX
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:48:23: warning: static property 'bottom' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bottom = maxY
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:48:23: note: add '@MainActor' to make static property 'bottom' part of global actor 'MainActor'
public static let bottom = maxY
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bottom = maxY
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:50:23: warning: static property 'bottomLeft' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bottomLeft = minXMaxY
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:50:23: note: add '@MainActor' to make static property 'bottomLeft' part of global actor 'MainActor'
public static let bottomLeft = minXMaxY
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:50:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bottomLeft = minXMaxY
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:52:23: warning: static property 'bottomRight' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bottomRight = maxXMaxY
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:52:23: note: add '@MainActor' to make static property 'bottomRight' part of global actor 'MainActor'
public static let bottomRight = maxXMaxY
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:52:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bottomRight = maxXMaxY
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:54:23: warning: static property 'top' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let top = minY
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:54:23: note: add '@MainActor' to make static property 'top' part of global actor 'MainActor'
public static let top = minY
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let top = minY
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:56:23: warning: static property 'topLeft' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let topLeft = minXMinY
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:56:23: note: add '@MainActor' to make static property 'topLeft' part of global actor 'MainActor'
public static let topLeft = minXMinY
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let topLeft = minXMinY
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:58:23: warning: static property 'topRight' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let topRight = maxXMinY
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:58:23: note: add '@MainActor' to make static property 'topRight' part of global actor 'MainActor'
public static let topRight = maxXMinY
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let topRight = maxXMinY
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:61:23: warning: static property 'corners' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let corners: RectEdgeCorner = [.topLeft, .topRight, bottomLeft, .bottomRight]
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:61:23: note: add '@MainActor' to make static property 'corners' part of global actor 'MainActor'
public static let corners: RectEdgeCorner = [.topLeft, .topRight, bottomLeft, .bottomRight]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let corners: RectEdgeCorner = [.topLeft, .topRight, bottomLeft, .bottomRight]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:63:23: warning: static property 'edges' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let edges: RectEdgeCorner = [.top, .bottom, .left, .right]
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:63:23: note: add '@MainActor' to make static property 'edges' part of global actor 'MainActor'
public static let edges: RectEdgeCorner = [.top, .bottom, .left, .right]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let edges: RectEdgeCorner = [.top, .bottom, .left, .right]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:65:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all: RectEdgeCorner = [.topLeft, .topRight, bottomLeft, .bottomRight, .top, .bottom, .left, .right]
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:65:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static let all: RectEdgeCorner = [.topLeft, .topRight, bottomLeft, .bottomRight, .top, .bottom, .left, .right]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all: RectEdgeCorner = [.topLeft, .topRight, bottomLeft, .bottomRight, .top, .bottom, .left, .right]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:67:23: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'RectEdgeCorner' may have shared mutable state; this is an error in the Swift 6 language mode
public static let none: RectEdgeCorner = []
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:11:15: note: consider making struct 'RectEdgeCorner' conform to the 'Sendable' protocol
public struct RectEdgeCorner: OptionSet, CustomStringConvertible, Hashable, Codable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:67:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
public static let none: RectEdgeCorner = []
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/RectEdgeCorner.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let none: RectEdgeCorner = []
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Rotation.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Rotation.swift:23:23: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var zero: Rotation = .init()
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Rotation.swift:23:23: note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
public static var zero: Rotation = .init()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Rotation.swift:23:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
public static var zero: Rotation = .init()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Rotation.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var zero: Rotation = .init()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Scale.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Scale.swift:23:23: warning: static property 'zero' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var zero: Scale = .init(0, 0, 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Scale.swift:23:23: note: convert 'zero' to a 'let' constant to make 'Sendable' shared state immutable
public static var zero: Scale = .init(0, 0, 0)
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Scale.swift:23:23: note: add '@MainActor' to make static property 'zero' part of global actor 'MainActor'
public static var zero: Scale = .init(0, 0, 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Scale.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var zero: Scale = .init(0, 0, 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Scale.swift:26:23: warning: static property 'none' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var none: Scale = .init()
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Scale.swift:26:23: note: convert 'none' to a 'let' constant to make 'Sendable' shared state immutable
public static var none: Scale = .init()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Scale.swift:26:23: note: add '@MainActor' to make static property 'none' part of global actor 'MainActor'
public static var none: Scale = .init()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/Scale.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var none: Scale = .init()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:355:27: warning: static property 'nanoSecond' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let nanoSecond = Units(rawValue: 1 << 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:355:27: note: add '@MainActor' to make static property 'nanoSecond' part of global actor 'MainActor'
public static let nanoSecond = Units(rawValue: 1 << 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:355:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let nanoSecond = Units(rawValue: 1 << 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:357:27: warning: static property 'millisecond' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let millisecond = Units(rawValue: 1 << 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:357:27: note: add '@MainActor' to make static property 'millisecond' part of global actor 'MainActor'
public static let millisecond = Units(rawValue: 1 << 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:357:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let millisecond = Units(rawValue: 1 << 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:359:27: warning: static property 'second' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let second = Units(rawValue: 1 << 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:359:27: note: add '@MainActor' to make static property 'second' part of global actor 'MainActor'
public static let second = Units(rawValue: 1 << 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:359:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let second = Units(rawValue: 1 << 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:361:27: warning: static property 'minute' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let minute = Units(rawValue: 1 << 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:361:27: note: add '@MainActor' to make static property 'minute' part of global actor 'MainActor'
public static let minute = Units(rawValue: 1 << 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:361:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let minute = Units(rawValue: 1 << 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:363:27: warning: static property 'hour' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hour = Units(rawValue: 1 << 4)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:363:27: note: add '@MainActor' to make static property 'hour' part of global actor 'MainActor'
public static let hour = Units(rawValue: 1 << 4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:363:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hour = Units(rawValue: 1 << 4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:365:27: warning: static property 'day' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let day = Units(rawValue: 1 << 5)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:365:27: note: add '@MainActor' to make static property 'day' part of global actor 'MainActor'
public static let day = Units(rawValue: 1 << 5)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:365:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let day = Units(rawValue: 1 << 5)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:367:27: warning: static property 'week' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let week = Units(rawValue: 1 << 6)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:367:27: note: add '@MainActor' to make static property 'week' part of global actor 'MainActor'
public static let week = Units(rawValue: 1 << 6)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:367:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let week = Units(rawValue: 1 << 6)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:369:27: warning: static property 'month' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let month = Units(rawValue: 1 << 7)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:369:27: note: add '@MainActor' to make static property 'month' part of global actor 'MainActor'
public static let month = Units(rawValue: 1 << 7)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:369:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let month = Units(rawValue: 1 << 7)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:371:27: warning: static property 'year' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let year = Units(rawValue: 1 << 8)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:371:27: note: add '@MainActor' to make static property 'year' part of global actor 'MainActor'
public static let year = Units(rawValue: 1 << 8)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:371:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let year = Units(rawValue: 1 << 8)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:374:27: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let all = Units(rawValue: 1 << 9)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:374:27: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
public static let all = Units(rawValue: 1 << 9)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:374:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let all = Units(rawValue: 1 << 9)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:376:27: warning: static property 'allCompact' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allCompact = Units(rawValue: 1 << 10)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:376:27: note: add '@MainActor' to make static property 'allCompact' part of global actor 'MainActor'
public static let allCompact = Units(rawValue: 1 << 10)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:376:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allCompact = Units(rawValue: 1 << 10)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:378:27: warning: static property 'allDetailed' is not concurrency-safe because non-'Sendable' type 'TimeDuration.Units' may have shared mutable state; this is an error in the Swift 6 language mode
public static let allDetailed: Units = [.second, .minute, .hour, .hour, .day, .week, .month, .year]
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:378:27: note: add '@MainActor' to make static property 'allDetailed' part of global actor 'MainActor'
public static let allDetailed: Units = [.second, .minute, .hour, .hour, .day, .week, .month, .year]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:378:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let allDetailed: Units = [.second, .minute, .hour, .hour, .day, .week, .month, .year]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:390:20: warning: static property 'allCases' is not concurrency-safe because non-'Sendable' type '[TimeDuration.Units]' may have shared mutable state; this is an error in the Swift 6 language mode
static let allCases: [Units] = [.nanoSecond, .millisecond, .second, .minute, .hour, .day, .week, .month, .year]
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:352:12: note: consider making struct 'Units' conform to the 'Sendable' protocol
struct Units: OptionSet {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:390:20: note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
static let allCases: [Units] = [.nanoSecond, .millisecond, .second, .minute, .hour, .day, .week, .month, .year]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:390:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let allCases: [Units] = [.nanoSecond, .millisecond, .second, .minute, .hour, .day, .week, .month, .year]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:688:84: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
self.init(fire: fire, interval: interval.seconds, repeats: repeats, block: block)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:687:73: note: parameter 'block' is implicitly non-sendable
convenience init(fire: Date, interval: TimeDuration, repeats: Bool, block: @escaping ((Timer) -> Void)) {
^
@Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:720:76: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
self.init(timeInterval: interval.seconds, repeats: repeats, block: block)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:719:74: note: parameter 'block' is implicitly non-sendable
convenience init(timeInterval interval: TimeDuration, repeats: Bool, block: @escaping ((Timer) -> Void)) {
^
@Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:751:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
scheduledTimer(withTimeInterval: interval.seconds, repeats: repeats, block: block)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Datatypes/TimeDuration.swift:750:88: note: parameter 'block' is implicitly non-sendable
static func scheduledTimer(withTimeInterval interval: TimeDuration, repeats: Bool, block: @escaping ((Timer) -> Void)) -> Timer {
^
@Sendable
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-EI1ZV2GYB4WQJ5443CFW4G3R4.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability_internal-EI1ZV2GYB4WQJ5443CFW4G3R4.scan
SwiftDriverJobDiscovery normal arm64 Compiling Sequence+Identifable.swift, Sequence+Keypath.swift, Sequence+Occurency.swift, Sequence+Sort.swift, Sequence+String.swift, Sequence+Unique.swift, Set+.swift, Calendar+.swift, Date+.swift, DateComponentsFormatter+.swift, DateFormatter+.swift, DateFormatter+Components.swift, DateIntervalFormatter+.swift, RelativeDateTimeFormatter+.swift, NSCalendar+.swift, DispatchQueue+.swift, DispatchWorkItem+.swift, Collection+Decode.swift, Dictionary+Codable.swift, JSONEncoderDecoder+.swift, JSONEncoderDecoder+Codable.swift, Enum+Displayable.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-AZLAYBX3QE1A69GW49NZSU5R2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrauth-AZLAYBX3QE1A69GW49NZSU5R2.scan
SwiftDriverJobDiscovery normal arm64 Compiling HTTPURLResponse+.swift, URL+Redirect.swift, URLComponents+.swift, URLRequest+.swift, URLResponse+.swift, URLSession+.swift, URLSession+Sync.swift, URLSessionConfiguration+.swift, URLSessionDataTask+Resume.swift, URLSessionTask+.swift, Notification+.swift, Operation+.swift, OperationQueue+.swift, NSExpression+.swift, NSPredicate+.swift, NSPredicate+ComparisonExpression.swift, NSPredicate+Operator.swift, Predicates.swift, Progress+.swift, CFType.swift, CaseIterable+.swift, Comparable+.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-4RWMOR9GZXQD0MVLQSC1R9UH4.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stddef-4RWMOR9GZXQD0MVLQSC1R9UH4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-57R4BAEZA1W0596HH6WY4LMVH.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_iso646-57R4BAEZA1W0596HH6WY4LMVH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-2WU5ZYVF1G1SPOZ9UT3OVCKSX.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_fenv-2WU5ZYVF1G1SPOZ9UT3OVCKSX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-7CKZEE1A8MV0XSZDWWVKDR5UD.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_availability-7CKZEE1A8MV0XSZDWWVKDR5UD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-C8AMDRHTNNN6RI639FNJUHCL3.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_float-C8AMDRHTNNN6RI639FNJUHCL3.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-EUMVP9458IW14CTO9U8X8C3U.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdbool-EUMVP9458IW14CTO9U8X8C3U.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-93QTFLOXMR2SIHQTDLNJ9PCPK.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ptrcheck-93QTFLOXMR2SIHQTDLNJ9PCPK.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-1TX5JZO0GO2ABQHB93RODLT0B.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdarg-1TX5JZO0GO2ABQHB93RODLT0B.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-DTSECRTQIYTGRKVN5JED7WYZC.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_float-DTSECRTQIYTGRKVN5JED7WYZC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-7GXFU31E3MKVILMBZMXHN36CX.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/TargetConditionals-7GXFU31E3MKVILMBZMXHN36CX.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-17PPW1Q54MZS4HXFGJZL828P3.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/DarwinFoundation-17PPW1Q54MZS4HXFGJZL828P3.scan
SwiftCompile normal arm64 Compiling\ GIFImageProperties.swift,\ HEICImageProperties.swift,\ IPTCImageProperties.swift,\ ImageProperties.swift,\ JPEGImageProperties.swift,\ PNGImageProperties.swift,\ TIFFImageProperties.swift,\ ImageSource.swift,\ KeyValueCodable.swift,\ MeasureTime.swift,\ MutableProgress.swift,\ NotificationToken.swift,\ OSHash.swift,\ AsyncOperation.swift,\ PausableOperationQueue.swift,\ OutlineItem.swift,\ Reachability.swift,\ RuntimeError.swift,\ Swizzle.swift,\ Synchronized.swift,\ Weak.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/GIFImageProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/HEICImageProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/IPTCImageProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/ImageProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/JPEGImageProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/PNGImageProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/TIFFImageProperties.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/KeyValueCodable.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MeasureTime.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/OSHash.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/OutlineItem.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Reachability.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/RuntimeError.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Swizzle.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Synchronized.swift /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Weak.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/GIFImageProperties.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/HEICImageProperties.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/IPTCImageProperties.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/ImageProperties.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/JPEGImageProperties.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/PNGImageProperties.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageProperties/TIFFImageProperties.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/KeyValueCodable.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MeasureTime.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MeasureTime.swift:75:24: warning: static property 'measurements' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
private static var measurements = [(startTime: Double, title:String?)]()
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MeasureTime.swift:75:24: note: convert 'measurements' to a 'let' constant to make 'Sendable' shared state immutable
private static var measurements = [(startTime: Double, title:String?)]()
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MeasureTime.swift:75:24: note: add '@MainActor' to make static property 'measurements' part of global actor 'MainActor'
private static var measurements = [(startTime: Double, title:String?)]()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MeasureTime.swift:75:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private static var measurements = [(startTime: Double, title:String?)]()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/MutableProgress.swift:12:12: warning: class 'MutableProgress' must restate inherited '@unchecked Sendable' conformance
open class MutableProgress: Progress {
^
, @unchecked Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift:48:85: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
let token = addObserver(forName: name, object: object, queue: queue, using: block)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift:47:98: note: parameter 'block' is implicitly non-sendable
func observe(_ name: NSNotification.Name?, object: Any?, queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void) -> NotificationToken {
^
@Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift:63:82: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
let token = addObserver(forName: name, object: nil, queue: queue, using: block)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/NotificationToken.swift:62:84: note: parameter 'block' is implicitly non-sendable
func observe(_ name: NSNotification.Name?, queue: OperationQueue? = nil, using block: @escaping (Notification) -> Void) -> NotificationToken {
^
@Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/OSHash.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:17:12: warning: class 'AsyncOperation' must restate inherited '@unchecked Sendable' conformance
open class AsyncOperation: Operation, Pausable {
^
, @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:202:12: warning: class 'AsyncBlockOperation' must restate inherited '@unchecked Sendable' conformance
open class AsyncBlockOperation: AsyncOperation {
^
, @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:65:67: warning: capture of 'newValue' with non-sendable type 'AsyncOperation.State' in a '@Sendable' closure
stateQueue.async(flags: .barrier) { self._state = newValue }
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/AsyncOperation.swift:33:23: note: consider making enum 'State' conform to the 'Sendable' protocol
@objc public enum State: Int, Hashable, CustomStringConvertible {
^
, Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:103:20: warning: class 'BlockOperation' must restate inherited '@unchecked Sendable' conformance
internal class BlockOperation: Operation {
^
, @unchecked Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Operation/PausableOperationQueue.swift:25:12: warning: class 'PausableOperationQueue' must restate inherited '@unchecked Sendable' conformance
open class PausableOperationQueue: OperationQueue {
^
, @unchecked Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/OutlineItem.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Reachability.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/RuntimeError.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Swizzle.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Swizzle.swift:155:14: warning: associated value 'missingMethod' of 'Sendable'-conforming enum 'Error' has non-sendable type 'Swizzle.SelectorPair'; this is an error in the Swift 6 language mode
case missingMethod(_ type: AnyObject.Type, _ static: Bool, _ old: Bool, SelectorPair)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Swizzle.swift:198:12: note: consider making struct 'SelectorPair' conform to the 'Sendable' protocol
struct SelectorPair: CustomStringConvertible {
^
, Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Synchronized.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/Weak.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:57: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:106:84: warning: capture of 'options' with non-sendable type 'ImageSource.ImageOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateImageAtIndex(self.cgImageSource, index, options?.dic)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:12:12: note: consider making struct 'ImageOptions' conform to the 'Sendable' protocol
struct ImageOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:107:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:61: warning: capture of 'self' with non-sendable type 'ImageSource' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:13:14: note: class 'ImageSource' does not conform to the 'Sendable' protocol
public class ImageSource {
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:151:88: warning: capture of 'options' with non-sendable type 'ImageSource.ThumbnailOptions?' in a '@Sendable' closure
let image = CGImageSourceCreateThumbnailAtIndex(self.cgImageSource, index, options?.toDictionary().cfDictionary)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageOptions.swift:61:12: note: consider making struct 'ThumbnailOptions' conform to the 'Sendable' protocol
struct ThumbnailOptions: Codable, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: warning: capture of 'completionHandler' with non-sendable type '(CGImage?) -> Void' in a '@Sendable' closure
completionHandler(image)
^
/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils/Utils/ImageSource/ImageSource.swift:152:13: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completionHandler(image)
^
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-CUSBEUOS9W8EG3PM3JP6ZK7FH.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/AvailabilityMacros-CUSBEUOS9W8EG3PM3JP6ZK7FH.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-AIKXZKYRGAQOK2NZOCLJUE4L0.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_sys_select-AIKXZKYRGAQOK2NZOCLJUE4L0.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-A1QVCFDLQI6MQ98R2YH1WDFFF.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_locale-A1QVCFDLQI6MQ98R2YH1WDFFF.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for FZSwiftUtils (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftDriver\ Compilation\ Requirements FZSwiftUtils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FZSwiftUtils -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/_SuperBuilder.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils+ObjC/SuperBuilder/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-CV5BIOBEFBZZM84FHGM63DO6P.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdint-CV5BIOBEFBZZM84FHGM63DO6P.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-8SLDFVG1L65HEILLJMTSY97ET.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_useconds_t-8SLDFVG1L65HEILLJMTSY97ET.scan
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/FZSwiftUtils-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-Swift.h (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/FZSwiftUtils-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftmodule (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftdoc (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.abi.json (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftsourceinfo (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-318HOX6D2G0OH1382KRH3JJ6A.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdint-318HOX6D2G0OH1382KRH3JJ6A.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-6DZPNL5OXU2S4WI3ZZRMM3RAT.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_math-6DZPNL5OXU2S4WI3ZZRMM3RAT.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-BKA4E1Z7EFPU9FG53P6T2LDH9.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/netinet_in-BKA4E1Z7EFPU9FG53P6T2LDH9.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-92BTO7PR9P8FE5LYZY0JE5EQS.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_stdatomic-92BTO7PR9P8FE5LYZY0JE5EQS.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-BD42G4FBDRVWOUT6VF80Z4ZOZ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_time-BD42G4FBDRVWOUT6VF80Z4ZOZ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-8LAXI0OVZWLT4SOQ8HCBP39YP.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/alloca-8LAXI0OVZWLT4SOQ8HCBP39YP.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-9U1FELJ6XPC0XL2FWFCVQBSUD.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/runetype-9U1FELJ6XPC0XL2FWFCVQBSUD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-9AEV937YTUJ5D1YXOKN85HW87.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_setjmp-9AEV937YTUJ5D1YXOKN85HW87.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-CHMHIG2PITMGJSAV15DVREAH8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_limits-CHMHIG2PITMGJSAV15DVREAH8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-BECUUX52SGI54KTEAZM1TPR19.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_inttypes-BECUUX52SGI54KTEAZM1TPR19.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-C9GCFW8KJ7V3GUGXYSD9BCZMY.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/mach-C9GCFW8KJ7V3GUGXYSD9BCZMY.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-17VSSZV3T49GI7TPMKV46NCI0.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/uuid-17VSSZV3T49GI7TPMKV46NCI0.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-2BGP13IAOJ8UOZ3Q7MX2QYKPQ.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_inttypes-2BGP13IAOJ8UOZ3Q7MX2QYKPQ.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-AT6T67LM1DJWRLX7FH9UWKFLN.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_ctype-AT6T67LM1DJWRLX7FH9UWKFLN.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-9UQ3RX918G68K3I941GSORMO.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_strings-9UQ3RX918G68K3I941GSORMO.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-999W4F9LWSG945T3POZMF25K0.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_assert-999W4F9LWSG945T3POZMF25K0.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-8C14S7GEWX2K3BHA02MMWK5K8.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/__wctype-8C14S7GEWX2K3BHA02MMWK5K8.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-5RH0XK8YLJWSWJRFKGNXH15U3.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/xlocale-5RH0XK8YLJWSWJRFKGNXH15U3.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-C53DJ6GQFXCHVZY3MN7A8GMUC.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_errno-C53DJ6GQFXCHVZY3MN7A8GMUC.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-DMTPROK18HJWU2XLFZW5S9AD.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wctype-DMTPROK18HJWU2XLFZW5S9AD.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-D3TIWB2WTNFKDC4Y8P8QX2P67.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_complex-D3TIWB2WTNFKDC4Y8P8QX2P67.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-EAC1UT708VKO6ACWW44KAMOUU.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_types-EAC1UT708VKO6ACWW44KAMOUU.scan
SwiftDriverJobDiscovery normal arm64 Compiling Enum+Name.swift, FileAttributes.swift, FileManager+.swift, FileType.swift, NSMetadata+.swift, URL+.swift, URL+DirectoryEnumerator.swift, URL+ExtendedAttributes.swift, URL+File.swift, URL+Item.swift, URL+ResourceValue.swift, URL+fileSystemItem.swift, URLResources.swift, UTType+.swift, Digest+.swift, HashFunction+.swift, Hasher+.swift, KeyPath+.swift, Locale+.swift, Locale+Currency.swift, Logger+.swift, Accelerate+Operator.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-2YU4Q8DZ8CPH6P5RJ2989G7SV.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_limits-2YU4Q8DZ8CPH6P5RJ2989G7SV.scan
SwiftDriverJobDiscovery normal arm64 Compiling NSKeyedUnarchiver+.swift, Interpose+AnyHook.swift, Interpose+ClassHook.swift, Interpose+Error.swift, Interpose+HookFinder.swift, Interpose+ObjectHook+Optional.swift, Interpose+ObjectHook.swift, Interpose+Subclass.swift, Interpose.swift, KVObserver.swift, KeyValueObservation.swift, KeyValueObserver.swift, NSObject+.swift, NSObject+KeyPath.swift, NSObject+Observe.swift, NSObject+Reflection.swift, NSObject+Swizzle.swift, NSRectEdge+.swift, NSRunningApplication+.swift, NSUIRectEdge+.swift, NSWorkspace+.swift, HTTPCookieStorage+.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-APVHGT93QU13Y8SXJSPZP3B0M.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_time-APVHGT93QU13Y8SXJSPZP3B0M.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-6Q1CXXJ9V0OKGL84V8RBCVNAP.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_signal-6Q1CXXJ9V0OKGL84V8RBCVNAP.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-ERX6FUMCS67I0QFC8UMYM5PT2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/nl_types-ERX6FUMCS67I0QFC8UMYM5PT2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-1WGL10SI3C4M2M4G5MEBRQ6H.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_tgmath-1WGL10SI3C4M2M4G5MEBRQ6H.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-F2BLD7EKCISD4RWIJYNOXK5LU.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_string-F2BLD7EKCISD4RWIJYNOXK5LU.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-88AP3DQNUKFL0AM3P35XAJDW0.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_resource-88AP3DQNUKFL0AM3P35XAJDW0.scan
SwiftDriverJobDiscovery normal arm64 Compiling Bundle+.swift, ByteCountFormatter+.swift, CVTimeStamp+.swift, Array+.swift, Collection+.swift, Collection+Advance.swift, Collection+Average.swift, Collection+Chunk.swift, Collection+Indexed.swift, Collection+LazySplit.swift, Collection+Random.swift, Collection+Sort.swift, CollectionDifference+.swift, Dictionary+.swift, Dictionary+Merge.swift, IndexPath+.swift, OptionSet+.swift, Sequence+.swift, Sequence+Collect.swift, Sequence+Concurrency.swift, Sequence+Difference.swift, Sequence+Flat.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftDriverJobDiscovery normal arm64 Compiling Defaults.swift, FSEvent+Actions.swift, FSEvent+Flags.swift, FSEvent+ItemType.swift, FSEvent.swift, FSEventMonitor+Options.swift, FSEventMonitor.swift, FileConvertible.swift, CGImageFrame.swift, ImageFrameSequence.swift, ImageSequence.swift, ImageOptions.swift, EXIF+HumanReadable.swift, EXIFImageProperties.swift, Canon.swift, ColorModel.swift, EXIF+Extended.swift, GPS.swift, ImageProperties+Keys.swift, Nikon.swift, PNG+Extended.swift, TIFF+Extended.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-80GX9DRKAL3AEQ91ZCOD9HNPB.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdio-80GX9DRKAL3AEQ91ZCOD9HNPB.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-CS69SR5TFYN4YS800U8AQGPBO.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_wait-CS69SR5TFYN4YS800U8AQGPBO.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-4YY62EIHXPHLW9VWMBIER7Y4W.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_Builtin_tgmath-4YY62EIHXPHLW9VWMBIER7Y4W.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-5QYZCK8VJXOFSIXDOVKCM8DT4.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/pthread-5QYZCK8VJXOFSIXDOVKCM8DT4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-2RX30XTCI5T1JKLP0JS0T05I1.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/gethostuuid-2RX30XTCI5T1JKLP0JS0T05I1.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-DPB9B72U2H3YSKAI3LEP9J8SF.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/sys_select-DPB9B72U2H3YSKAI3LEP9J8SF.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-6VDSXR0NOHIQ163B4IICG6P43.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_wchar-6VDSXR0NOHIQ163B4IICG6P43.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-AB26SHAYUIRIREJV26ZYISC75.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/_stdlib-AB26SHAYUIRIREJV26ZYISC75.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-BZ1WJ106L0UDJ2PJLBH0V1HCW.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/unistd-BZ1WJ106L0UDJ2PJLBH0V1HCW.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-76TUG8XA296K4Z0BZSX5HCBRN.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Darwin-76TUG8XA296K4Z0BZSX5HCBRN.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-18GWNUU9T4CO8IB616RTU66R4.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/ObjectiveC-18GWNUU9T4CO8IB616RTU66R4.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-5LCOK4394KHVEPR4TKP96AKWV.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_object-5LCOK4394KHVEPR4TKP96AKWV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-2SWRGC3MH7A0BWF3E31W4QTX1.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-2SWRGC3MH7A0BWF3E31W4QTX1.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-C5M6UEIDW49QXSJAK60SZF7H6.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-C5M6UEIDW49QXSJAK60SZF7H6.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-9ATX4AJSSW7C5VZSDRZ6A3TJM.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-9ATX4AJSSW7C5VZSDRZ6A3TJM.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-7XSZ0GXSI9R8TGZOC66ZY95D2.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-7XSZ0GXSI9R8TGZOC66ZY95D2.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-3ILJJHE4R9AFGI8WE1NK7XR51.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-3ILJJHE4R9AFGI8WE1NK7XR51.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-3TGIHW3TF3WZ22KNOGZ31EY3F.scan
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-3TGIHW3TF3WZ22KNOGZ31EY3F.scan
SwiftDriverJobDiscovery normal arm64 Compiling ApproximateEquatable.swift, Bool+.swift, CGPoint+.swift, CGRect+.swift, CGSize+.swift, FloatingPoint+.swift, FloatingPoint+Initializable.swift, FloatingPoint+Rounding.swift, Int+.swift, MultiplicativeArithmetic.swift, NSNumber+.swift, NSRange+.swift, NSValue+.swift, Number+Interpolate.swift, Number+String.swift, NumberFormatter+.swift, NumberFormatter+String.swift, Range+.swift, TimeInterval+.swift, Mirror+.swift, NSCoder+.swift, NSError+.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftDriverJobDiscovery normal arm64 Compiling ApplicationInfo.swift, FileTypeDefinition.swift, AssociatedValue.swift, BaseArray.swift, BaseDictionary.swift, Deque.swift, OrderedDictionary.swift, OrderedSet.swift, Queue.swift, SelectableArray.swift, Stack.swift, SynchronizedArray.swift, SynchronizedDictionary.swift, DataSize.swift, FractionalPoint.swift, NSRectCorner.swift, Point3D.swift, RectEdge.swift, RectEdgeCorner.swift, Rotation.swift, Scale.swift, TimeDuration.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.o /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils+ObjC/SuperBuilder/SuperBuilder.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target '_SuperBuilder' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.dia -c /Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils+ObjC/SuperBuilder/SuperBuilder.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.o -index-unit-output-path /FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/SuperBuilder.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/_SuperBuilder.o normal (in target '_SuperBuilder' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/_SuperBuilder.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/_SuperBuilder_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/_SuperBuilder.build/Objects-normal/arm64/_SuperBuilder_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/_SuperBuilder.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/_SuperBuilder.o (in target '_SuperBuilder' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/_SuperBuilder.o
SwiftDriverJobDiscovery normal arm64 Compiling GIFImageProperties.swift, HEICImageProperties.swift, IPTCImageProperties.swift, ImageProperties.swift, JPEGImageProperties.swift, PNGImageProperties.swift, TIFFImageProperties.swift, ImageSource.swift, KeyValueCodable.swift, MeasureTime.swift, MutableProgress.swift, NotificationToken.swift, OSHash.swift, AsyncOperation.swift, PausableOperationQueue.swift, OutlineItem.swift, Reachability.swift, RuntimeError.swift, Swizzle.swift, Synchronized.swift, Weak.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftDriverJobDiscovery normal arm64 Compiling Comparable+Clamp.swift, Decodable+.swift, Equatable+.swift, Optional+.swift, SortComparator+.swift, Selector+.swift, AttributedString+.swift, Character+.swift, CharacterSet+.swift, NSAttributedString+.swift, NSRegularExpression+.swift, NSTextCheckingResult+.swift, String+.swift, String+HTML.swift, String+Height.swift, String+Match.swift, String+Random.swift, NSUI Typealias.swift, Operator.swift, CodableDefault.swift, DateValueCodable.swift, PropertyWrappers.swift (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
SwiftDriver\ Compilation FZSwiftUtils normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FZSwiftUtils -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/_SuperBuilder.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos14.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/Sources/FZSwiftUtils+ObjC/SuperBuilder/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.o normal (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.o
ExtractAppIntentsMetadata (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name FZSwiftUtils --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.FZSwiftUtils --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.appintents --target-triple arm64-apple-tvos14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/FZSwiftUtils.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/FZSwiftUtils.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FZSwiftUtils.build/Debug-appletvos/FZSwiftUtils.build/Objects-normal/arm64/FZSwiftUtils.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-24 22:55:07.800 appintentsmetadataprocessor[791:4534] Starting appintentsmetadataprocessor export
2025-04-24 22:55:07.846 appintentsmetadataprocessor[791:4534] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.o (in target 'FZSwiftUtils' from project 'FZSwiftUtils')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/FZSwiftUtils.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "FZSwiftUtils",
"name" : "FZSwiftUtils",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "maccatalyst",
"version" : "14.0"
},
{
"name" : "tvos",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "FZSwiftUtils",
"targets" : [
"FZSwiftUtils"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "_SuperBuilder",
"module_type" : "ClangTarget",
"name" : "_SuperBuilder",
"path" : "Sources/FZSwiftUtils+ObjC/SuperBuilder",
"product_memberships" : [
"FZSwiftUtils"
],
"sources" : [
"SuperBuilder.m"
],
"type" : "library"
},
{
"c99name" : "FZSwiftUtils",
"module_type" : "SwiftTarget",
"name" : "FZSwiftUtils",
"path" : "Sources/FZSwiftUtils",
"product_memberships" : [
"FZSwiftUtils"
],
"sources" : [
"Extensions/Bundle+.swift",
"Extensions/ByteCountFormatter+.swift",
"Extensions/CVTimeStamp+.swift",
"Extensions/Collections/Array+.swift",
"Extensions/Collections/Collection+.swift",
"Extensions/Collections/Collection+Advance.swift",
"Extensions/Collections/Collection+Average.swift",
"Extensions/Collections/Collection+Chunk.swift",
"Extensions/Collections/Collection+Indexed.swift",
"Extensions/Collections/Collection+LazySplit.swift",
"Extensions/Collections/Collection+Random.swift",
"Extensions/Collections/Collection+Sort.swift",
"Extensions/Collections/CollectionDifference+.swift",
"Extensions/Collections/Dictionary+.swift",
"Extensions/Collections/Dictionary+Merge.swift",
"Extensions/Collections/IndexPath+.swift",
"Extensions/Collections/OptionSet+.swift",
"Extensions/Collections/Sequence+.swift",
"Extensions/Collections/Sequence+Collect.swift",
"Extensions/Collections/Sequence+Concurrency.swift",
"Extensions/Collections/Sequence+Difference.swift",
"Extensions/Collections/Sequence+Flat.swift",
"Extensions/Collections/Sequence+Identifable.swift",
"Extensions/Collections/Sequence+Keypath.swift",
"Extensions/Collections/Sequence+Occurency.swift",
"Extensions/Collections/Sequence+Sort.swift",
"Extensions/Collections/Sequence+String.swift",
"Extensions/Collections/Sequence+Unique.swift",
"Extensions/Collections/Set+.swift",
"Extensions/Date & Time/Calendar+.swift",
"Extensions/Date & Time/Date+.swift",
"Extensions/Date & Time/Formatter/DateComponentsFormatter+.swift",
"Extensions/Date & Time/Formatter/DateFormatter+.swift",
"Extensions/Date & Time/Formatter/DateFormatter+Components.swift",
"Extensions/Date & Time/Formatter/DateIntervalFormatter+.swift",
"Extensions/Date & Time/Formatter/RelativeDateTimeFormatter+.swift",
"Extensions/Date & Time/NSCalendar+.swift",
"Extensions/DispatchQueue+.swift",
"Extensions/DispatchWorkItem+.swift",
"Extensions/Encoding & Decoding/Collection+Decode.swift",
"Extensions/Encoding & Decoding/Dictionary+Codable.swift",
"Extensions/Encoding & Decoding/JSONEncoderDecoder+.swift",
"Extensions/Encoding & Decoding/JSONEncoderDecoder+Codable.swift",
"Extensions/Enum/Enum+Displayable.swift",
"Extensions/Enum/Enum+Name.swift",
"Extensions/File & URL/FileAttributes.swift",
"Extensions/File & URL/FileManager+.swift",
"Extensions/File & URL/FileType.swift",
"Extensions/File & URL/NSMetadata+.swift",
"Extensions/File & URL/URL+.swift",
"Extensions/File & URL/URL+DirectoryEnumerator.swift",
"Extensions/File & URL/URL+ExtendedAttributes.swift",
"Extensions/File & URL/URL+File.swift",
"Extensions/File & URL/URL+Item.swift",
"Extensions/File & URL/URL+ResourceValue.swift",
"Extensions/File & URL/URL+fileSystemItem.swift",
"Extensions/File & URL/URLResources.swift",
"Extensions/File & URL/UTType+.swift",
"Extensions/Hash/Digest+.swift",
"Extensions/Hash/HashFunction+.swift",
"Extensions/Hash/Hasher+.swift",
"Extensions/KeyPath+.swift",
"Extensions/Locale+.swift",
"Extensions/Locale+Currency.swift",
"Extensions/Logger+.swift",
"Extensions/Math & Geometry/Accelerate+Operator.swift",
"Extensions/Math & Geometry/ApproximateEquatable.swift",
"Extensions/Math & Geometry/Bool+.swift",
"Extensions/Math & Geometry/CGPoint+.swift",
"Extensions/Math & Geometry/CGRect+.swift",
"Extensions/Math & Geometry/CGSize+.swift",
"Extensions/Math & Geometry/FloatingPoint+.swift",
"Extensions/Math & Geometry/FloatingPoint+Initializable.swift",
"Extensions/Math & Geometry/FloatingPoint+Rounding.swift",
"Extensions/Math & Geometry/Int+.swift",
"Extensions/Math & Geometry/MultiplicativeArithmetic.swift",
"Extensions/Math & Geometry/NSNumber+.swift",
"Extensions/Math & Geometry/NSRange+.swift",
"Extensions/Math & Geometry/NSValue+.swift",
"Extensions/Math & Geometry/Number+Interpolate.swift",
"Extensions/Math & Geometry/Number+String.swift",
"Extensions/Math & Geometry/NumberFormatter+.swift",
"Extensions/Math & Geometry/NumberFormatter+String.swift",
"Extensions/Math & Geometry/Range+.swift",
"Extensions/Math & Geometry/TimeInterval+.swift",
"Extensions/Mirror+.swift",
"Extensions/NSCoder+.swift",
"Extensions/NSError+.swift",
"Extensions/NSKeyedUnarchiver+.swift",
"Extensions/NSObject/Interpose/Interpose+AnyHook.swift",
"Extensions/NSObject/Interpose/Interpose+ClassHook.swift",
"Extensions/NSObject/Interpose/Interpose+Error.swift",
"Extensions/NSObject/Interpose/Interpose+HookFinder.swift",
"Extensions/NSObject/Interpose/Interpose+ObjectHook+Optional.swift",
"Extensions/NSObject/Interpose/Interpose+ObjectHook.swift",
"Extensions/NSObject/Interpose/Interpose+Subclass.swift",
"Extensions/NSObject/Interpose/Interpose.swift",
"Extensions/NSObject/KVO/KVObserver.swift",
"Extensions/NSObject/KVO/KeyValueObservation.swift",
"Extensions/NSObject/KVO/KeyValueObserver.swift",
"Extensions/NSObject/NSObject+.swift",
"Extensions/NSObject/NSObject+KeyPath.swift",
"Extensions/NSObject/NSObject+Observe.swift",
"Extensions/NSObject/NSObject+Reflection.swift",
"Extensions/NSObject/NSObject+Swizzle.swift",
"Extensions/NSRectEdge+.swift",
"Extensions/NSRunningApplication+.swift",
"Extensions/NSUIRectEdge+.swift",
"Extensions/NSWorkspace+.swift",
"Extensions/Networking/HTTPCookieStorage+.swift",
"Extensions/Networking/HTTPURLResponse+.swift",
"Extensions/Networking/URL+Redirect.swift",
"Extensions/Networking/URLComponents+.swift",
"Extensions/Networking/URLRequest+.swift",
"Extensions/Networking/URLResponse+.swift",
"Extensions/Networking/URLSession+.swift",
"Extensions/Networking/URLSession+Sync.swift",
"Extensions/Networking/URLSessionConfiguration+.swift",
"Extensions/Networking/URLSessionDataTask+Resume.swift",
"Extensions/Networking/URLSessionTask+.swift",
"Extensions/Notification+.swift",
"Extensions/Operation+.swift",
"Extensions/OperationQueue+.swift",
"Extensions/Predicate/NSExpression+.swift",
"Extensions/Predicate/NSPredicate+.swift",
"Extensions/Predicate/NSPredicate+ComparisonExpression.swift",
"Extensions/Predicate/NSPredicate+Operator.swift",
"Extensions/Predicate/Predicates.swift",
"Extensions/Progress+.swift",
"Extensions/Protocol/CFType.swift",
"Extensions/Protocol/CaseIterable+.swift",
"Extensions/Protocol/Comparable+.swift",
"Extensions/Protocol/Comparable+Clamp.swift",
"Extensions/Protocol/Decodable+.swift",
"Extensions/Protocol/Equatable+.swift",
"Extensions/Protocol/Optional+.swift",
"Extensions/Protocol/SortComparator+.swift",
"Extensions/Selector+.swift",
"Extensions/String/AttributedString+.swift",
"Extensions/String/Character+.swift",
"Extensions/String/CharacterSet+.swift",
"Extensions/String/NSAttributedString+.swift",
"Extensions/String/NSRegularExpression+.swift",
"Extensions/String/NSTextCheckingResult+.swift",
"Extensions/String/String+.swift",
"Extensions/String/String+HTML.swift",
"Extensions/String/String+Height.swift",
"Extensions/String/String+Match.swift",
"Extensions/String/String+Random.swift",
"NSUI Typealias.swift",
"Operator.swift",
"PropertyWrappers/CodableDefault.swift",
"PropertyWrappers/DateValueCodable.swift",
"PropertyWrappers/PropertyWrappers.swift",
"Utils/ApplicationBundle/ApplicationInfo.swift",
"Utils/ApplicationBundle/FileTypeDefinition.swift",
"Utils/AssociatedValue.swift",
"Utils/Collections/BaseArray.swift",
"Utils/Collections/BaseDictionary.swift",
"Utils/Collections/Deque.swift",
"Utils/Collections/OrderedDictionary.swift",
"Utils/Collections/OrderedSet.swift",
"Utils/Collections/Queue.swift",
"Utils/Collections/SelectableArray.swift",
"Utils/Collections/Stack.swift",
"Utils/Collections/SynchronizedArray.swift",
"Utils/Collections/SynchronizedDictionary.swift",
"Utils/Datatypes/DataSize.swift",
"Utils/Datatypes/FractionalPoint.swift",
"Utils/Datatypes/NSRectCorner.swift",
"Utils/Datatypes/Point3D.swift",
"Utils/Datatypes/RectEdge.swift",
"Utils/Datatypes/RectEdgeCorner.swift",
"Utils/Datatypes/Rotation.swift",
"Utils/Datatypes/Scale.swift",
"Utils/Datatypes/TimeDuration.swift",
"Utils/Defaults.swift",
"Utils/FSEventMonitor/FSEvent+Actions.swift",
"Utils/FSEventMonitor/FSEvent+Flags.swift",
"Utils/FSEventMonitor/FSEvent+ItemType.swift",
"Utils/FSEventMonitor/FSEvent.swift",
"Utils/FSEventMonitor/FSEventMonitor+Options.swift",
"Utils/FSEventMonitor/FSEventMonitor.swift",
"Utils/FileConvertible.swift",
"Utils/ImageSource/AsymcSequence/CGImageFrame.swift",
"Utils/ImageSource/AsymcSequence/ImageFrameSequence.swift",
"Utils/ImageSource/AsymcSequence/ImageSequence.swift",
"Utils/ImageSource/ImageOptions.swift",
"Utils/ImageSource/ImageProperties/EXIF+HumanReadable.swift",
"Utils/ImageSource/ImageProperties/EXIFImageProperties.swift",
"Utils/ImageSource/ImageProperties/Extended/Canon.swift",
"Utils/ImageSource/ImageProperties/Extended/ColorModel.swift",
"Utils/ImageSource/ImageProperties/Extended/EXIF+Extended.swift",
"Utils/ImageSource/ImageProperties/Extended/GPS.swift",
"Utils/ImageSource/ImageProperties/Extended/ImageProperties+Keys.swift",
"Utils/ImageSource/ImageProperties/Extended/Nikon.swift",
"Utils/ImageSource/ImageProperties/Extended/PNG+Extended.swift",
"Utils/ImageSource/ImageProperties/Extended/TIFF+Extended.swift",
"Utils/ImageSource/ImageProperties/GIFImageProperties.swift",
"Utils/ImageSource/ImageProperties/HEICImageProperties.swift",
"Utils/ImageSource/ImageProperties/IPTCImageProperties.swift",
"Utils/ImageSource/ImageProperties/ImageProperties.swift",
"Utils/ImageSource/ImageProperties/JPEGImageProperties.swift",
"Utils/ImageSource/ImageProperties/PNGImageProperties.swift",
"Utils/ImageSource/ImageProperties/TIFFImageProperties.swift",
"Utils/ImageSource/ImageSource.swift",
"Utils/KeyValueCodable.swift",
"Utils/MeasureTime.swift",
"Utils/MutableProgress.swift",
"Utils/NotificationToken.swift",
"Utils/OSHash.swift",
"Utils/Operation/AsyncOperation.swift",
"Utils/Operation/PausableOperationQueue.swift",
"Utils/OutlineItem.swift",
"Utils/Reachability.swift",
"Utils/RuntimeError.swift",
"Utils/Swizzle.swift",
"Utils/Synchronized.swift",
"Utils/Weak.swift"
],
"target_dependencies" : [
"_SuperBuilder"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.