The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build StreamDeck, reference main (3ef001), with Swift 6.1 for Wasm on 5 Jun 2025 17:47:13 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
456 | 	public static let salmon = Color(hexString: "#FA8072")
457 | 	/// CSS `sandybrown`
458 | 	public static let sandybrown = Color(hexString: "#F4A460")
    |                    |- warning: static property 'sandybrown' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'sandybrown' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
459 | 	/// CSS `seagreen`
460 | 	public static let seagreen = Color(hexString: "#2E8B57")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:460:20: warning: static property 'seagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
458 | 	public static let sandybrown = Color(hexString: "#F4A460")
459 | 	/// CSS `seagreen`
460 | 	public static let seagreen = Color(hexString: "#2E8B57")
    |                    |- warning: static property 'seagreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'seagreen' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
461 | 	/// CSS `seashell`
462 | 	public static let seashell = Color(hexString: "#2E8B57")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:462:20: warning: static property 'seashell' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
460 | 	public static let seagreen = Color(hexString: "#2E8B57")
461 | 	/// CSS `seashell`
462 | 	public static let seashell = Color(hexString: "#2E8B57")
    |                    |- warning: static property 'seashell' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'seashell' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 | 	/// CSS `sienna`
464 | 	public static let sienna = Color(hexString: "#A0522D")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:464:20: warning: static property 'sienna' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
462 | 	public static let seashell = Color(hexString: "#2E8B57")
463 | 	/// CSS `sienna`
464 | 	public static let sienna = Color(hexString: "#A0522D")
    |                    |- warning: static property 'sienna' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'sienna' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
465 | 	/// CSS `silver`
466 | 	public static let silver = Color(hexString: "#C0C0C0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:466:20: warning: static property 'silver' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
464 | 	public static let sienna = Color(hexString: "#A0522D")
465 | 	/// CSS `silver`
466 | 	public static let silver = Color(hexString: "#C0C0C0")
    |                    |- warning: static property 'silver' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'silver' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
467 | 	/// CSS `skyblue`
468 | 	public static let skyblue = Color(hexString: "#87CEEB")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:468:20: warning: static property 'skyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
466 | 	public static let silver = Color(hexString: "#C0C0C0")
467 | 	/// CSS `skyblue`
468 | 	public static let skyblue = Color(hexString: "#87CEEB")
    |                    |- warning: static property 'skyblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'skyblue' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
469 | 	/// CSS `slateblue`
470 | 	public static let slateblue = Color(hexString: "#6A5ACD")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:470:20: warning: static property 'slateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
468 | 	public static let skyblue = Color(hexString: "#87CEEB")
469 | 	/// CSS `slateblue`
470 | 	public static let slateblue = Color(hexString: "#6A5ACD")
    |                    |- warning: static property 'slateblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'slateblue' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
471 | 	/// CSS `slategray`
472 | 	public static let slategray = Color(hexString: "#708090")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:472:20: warning: static property 'slategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
470 | 	public static let slateblue = Color(hexString: "#6A5ACD")
471 | 	/// CSS `slategray`
472 | 	public static let slategray = Color(hexString: "#708090")
    |                    |- warning: static property 'slategray' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'slategray' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
473 | 	/// CSS `slategrey`
474 | 	public static let slategrey = Color(hexString: "#708090")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:474:20: warning: static property 'slategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
472 | 	public static let slategray = Color(hexString: "#708090")
473 | 	/// CSS `slategrey`
474 | 	public static let slategrey = Color(hexString: "#708090")
    |                    |- warning: static property 'slategrey' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'slategrey' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
475 | 	/// CSS `snow`
476 | 	public static let snow = Color(hexString: "#FFFAFA")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:476:20: warning: static property 'snow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
474 | 	public static let slategrey = Color(hexString: "#708090")
475 | 	/// CSS `snow`
476 | 	public static let snow = Color(hexString: "#FFFAFA")
    |                    |- warning: static property 'snow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'snow' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
477 | 	/// CSS `springgreen`
478 | 	public static let springgreen = Color(hexString: "#00FF7F")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:478:20: warning: static property 'springgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
476 | 	public static let snow = Color(hexString: "#FFFAFA")
477 | 	/// CSS `springgreen`
478 | 	public static let springgreen = Color(hexString: "#00FF7F")
    |                    |- warning: static property 'springgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'springgreen' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
479 | 	/// CSS `steelblue`
480 | 	public static let steelblue = Color(hexString: "#4682B4")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:480:20: warning: static property 'steelblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
478 | 	public static let springgreen = Color(hexString: "#00FF7F")
479 | 	/// CSS `steelblue`
480 | 	public static let steelblue = Color(hexString: "#4682B4")
    |                    |- warning: static property 'steelblue' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'steelblue' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
481 | 	/// CSS `tan`
482 | 	public static let tan = Color(hexString: "#D2B48C")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:482:20: warning: static property 'tan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
480 | 	public static let steelblue = Color(hexString: "#4682B4")
481 | 	/// CSS `tan`
482 | 	public static let tan = Color(hexString: "#D2B48C")
    |                    |- warning: static property 'tan' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'tan' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
483 | 	/// CSS `teal`
484 | 	public static let teal = Color(hexString: "#008080")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:484:20: warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
482 | 	public static let tan = Color(hexString: "#D2B48C")
483 | 	/// CSS `teal`
484 | 	public static let teal = Color(hexString: "#008080")
    |                    |- warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'teal' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
485 | 	/// CSS `thistle`
486 | 	public static let thistle = Color(hexString: "#D8BFD8")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:486:20: warning: static property 'thistle' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
484 | 	public static let teal = Color(hexString: "#008080")
485 | 	/// CSS `thistle`
486 | 	public static let thistle = Color(hexString: "#D8BFD8")
    |                    |- warning: static property 'thistle' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'thistle' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
487 | 	/// CSS `tomato`
488 | 	public static let tomato = Color(hexString: "#FF6347")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:488:20: warning: static property 'tomato' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
486 | 	public static let thistle = Color(hexString: "#D8BFD8")
487 | 	/// CSS `tomato`
488 | 	public static let tomato = Color(hexString: "#FF6347")
    |                    |- warning: static property 'tomato' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'tomato' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
489 | 	/// CSS `turquoise`
490 | 	public static let turquoise = Color(hexString: "#40E0D0")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:490:20: warning: static property 'turquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
488 | 	public static let tomato = Color(hexString: "#FF6347")
489 | 	/// CSS `turquoise`
490 | 	public static let turquoise = Color(hexString: "#40E0D0")
    |                    |- warning: static property 'turquoise' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'turquoise' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
491 | 	/// CSS `violet`
492 | 	public static let violet = Color(hexString: "#EE82EE")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:492:20: warning: static property 'violet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
490 | 	public static let turquoise = Color(hexString: "#40E0D0")
491 | 	/// CSS `violet`
492 | 	public static let violet = Color(hexString: "#EE82EE")
    |                    |- warning: static property 'violet' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'violet' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
493 | 	/// CSS `wheat`
494 | 	public static let wheat = Color(hexString: "#F5DEB3")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:494:20: warning: static property 'wheat' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
492 | 	public static let violet = Color(hexString: "#EE82EE")
493 | 	/// CSS `wheat`
494 | 	public static let wheat = Color(hexString: "#F5DEB3")
    |                    |- warning: static property 'wheat' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'wheat' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
495 | 	/// CSS `white`
496 | 	public static let white = Color(hexString: "#FFFFFF")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:496:20: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
494 | 	public static let wheat = Color(hexString: "#F5DEB3")
495 | 	/// CSS `white`
496 | 	public static let white = Color(hexString: "#FFFFFF")
    |                    |- warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
497 | 	/// CSS `whitesmoke`
498 | 	public static let whitesmoke = Color(hexString: "#F5F5F5")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:498:20: warning: static property 'whitesmoke' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
496 | 	public static let white = Color(hexString: "#FFFFFF")
497 | 	/// CSS `whitesmoke`
498 | 	public static let whitesmoke = Color(hexString: "#F5F5F5")
    |                    |- warning: static property 'whitesmoke' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'whitesmoke' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
499 | 	/// CSS `yellow`
500 | 	public static let yellow = Color(hexString: "#FFFF00")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:500:20: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
498 | 	public static let whitesmoke = Color(hexString: "#F5F5F5")
499 | 	/// CSS `yellow`
500 | 	public static let yellow = Color(hexString: "#FFFF00")
    |                    |- warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
501 | 	/// CSS `yellowgreen`
502 | 	public static let yellowgreen = Color(hexString: "#9ACD32")
/host/spi-builder-workspace/Sources/SDPlusLayout/Color/Color.swift:502:20: warning: static property 'yellowgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
 10 |
 11 | /// A set of components that define a color. The color space is defined by the drawing context.
 12 | public struct Color: Equatable, Hashable, Codable {
    |               `- note: consider making struct 'Color' conform to the 'Sendable' protocol
 13 |
 14 |     /// Red value
    :
500 | 	public static let yellow = Color(hexString: "#FFFF00")
501 | 	/// CSS `yellowgreen`
502 | 	public static let yellowgreen = Color(hexString: "#9ACD32")
    |                    |- warning: static property 'yellowgreen' is not concurrency-safe because non-'Sendable' type 'Color' may have shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: add '@MainActor' to make static property 'yellowgreen' part of global actor 'MainActor'
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
503 |
504 | }
[95/249] Emitting module ArgumentParser
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:57:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 | 	/// A rectangle which fills the whole layout.
57 | 	static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
   |             |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 | }
59 |
/host/spi-builder-workspace/Sources/SDPlusLayout/Properties.swift:57:13: warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
55 |
56 | 	/// A rectangle which fills the whole layout.
57 | 	static var standard = Rect(x: 0, y: 0, width: 200, height: 100)
   |             |- warning: static property 'standard' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: convert 'standard' to a 'let' constant to make 'Sendable' shared state immutable
   |             |- note: add '@MainActor' to make static property 'standard' part of global actor 'MainActor'
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 | }
59 |
[116/255] Compiling ArgumentParser ArgumentSet.swift
[117/255] Compiling ArgumentParser CommandParser.swift
[118/255] Compiling ArgumentParser InputKey.swift
[119/255] Compiling ArgumentParser InputOrigin.swift
[121/255] Emitting module ArgumentParser
[128/255] Compiling ArgumentParser DumpHelpGenerator.swift
[129/255] Compiling ArgumentParser HelpCommand.swift
[130/255] Compiling ArgumentParser HelpGenerator.swift
[131/255] Compiling ArgumentParser MessageInfo.swift
[132/255] Compiling ArgumentParser UsageGenerator.swift
[133/255] Compiling ArgumentParser ExpressibleByArgument.swift
[134/255] Compiling ArgumentParser ParsableArguments.swift
[135/255] Compiling ArgumentParser ParsableArgumentsValidation.swift
[136/255] Compiling ArgumentParser ParsableCommand.swift
[137/255] Compiling ArgumentParser ArgumentDecoder.swift
[138/255] Compiling ArgumentParser Name.swift
[139/255] Compiling ArgumentParser Parsed.swift
[140/255] Compiling ArgumentParser ParsedValues.swift
[141/255] Compiling ArgumentParser ParserError.swift
[142/255] Compiling ArgumentParser SplitArguments.swift
[143/255] Compiling ArgumentParser CollectionExtensions.swift
[144/255] Compiling ArgumentParser Platform.swift
[145/255] Compiling ArgumentParser SequenceExtensions.swift
[146/255] Compiling ArgumentParser StringExtensions.swift
[147/255] Compiling ArgumentParser Tree.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[207/266] Emitting module SwiftSyntax
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[208/266] Compiling SwiftSyntax SyntaxEnum.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[209/266] Compiling SwiftSyntax SyntaxKind.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[210/266] Compiling SwiftSyntax SyntaxRewriter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[211/266] Compiling SwiftSyntax SyntaxTraits.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[212/266] Compiling SwiftSyntax SyntaxVisitor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[213/266] Compiling SwiftSyntax TokenKind.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[214/266] Compiling SwiftSyntax Tokens.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[215/266] Compiling SwiftSyntax TriviaPieces.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[216/266] Compiling SwiftSyntax RawSyntaxNodesAB.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[223/266] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[224/266] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[225/266] Compiling SwiftSyntax RawSyntaxValidation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[226/266] Compiling SwiftSyntax Trivia.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[227/266] Compiling SwiftSyntax Utils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[228/266] Compiling SwiftSyntax ChildNameForKeyPath.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[229/266] Compiling SwiftSyntax Keyword.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[230/266] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[231/266] Compiling SwiftSyntax RenamedNodesCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[232/266] Compiling SwiftSyntax SyntaxAnyVisitor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[233/266] Compiling SwiftSyntax SyntaxBaseNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[234/266] Compiling SwiftSyntax SyntaxCollections.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[244/266] Compiling SwiftSyntax SyntaxNodesAB.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[245/266] Compiling SwiftSyntax SyntaxNodesC.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[246/266] Compiling SwiftSyntax SyntaxNodesD.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[247/266] Compiling SwiftSyntax SyntaxNodesEF.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[248/266] Compiling SwiftSyntax SyntaxNodesGHI.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[249/266] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[250/266] Compiling SwiftSyntax SyntaxNodesOP.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[251/266] Compiling SwiftSyntax SyntaxNodesQRS.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[252/266] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[253/267] Wrapping AST for SwiftSyntax for debugging
[255/325] Compiling SwiftDiagnostics Message.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[256/326] Compiling SwiftBasicFormat Syntax+Extensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[257/326] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[258/326] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[259/326] Compiling SwiftDiagnostics FixIt.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[260/326] Emitting module SwiftDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[261/326] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[262/326] Compiling SwiftParser Expressions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[263/326] Compiling SwiftDiagnostics Note.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[264/326] Compiling SwiftParser IncrementalParseTransition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[265/326] Compiling SwiftParser IsValidIdentifier.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[266/326] Compiling SwiftDiagnostics DiagnosticDecorator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[267/326] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[268/326] Compiling SwiftDiagnostics GroupedDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[269/327] Compiling SwiftBasicFormat InferIndentation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[270/327] Compiling SwiftBasicFormat Indenter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[272/327] Emitting module SwiftBasicFormat
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[273/327] Compiling SwiftBasicFormat BasicFormat.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[273/328] Wrapping AST for SwiftDiagnostics for debugging
[275/328] Wrapping AST for SwiftBasicFormat for debugging
[277/328] Emitting module SwiftParser
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[278/333] Compiling SwiftParser Modifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[279/333] Compiling SwiftParser Names.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[280/333] Compiling SwiftParser Nominals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[281/333] Compiling SwiftParser Parameters.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[282/333] Compiling SwiftParser ParseSourceFile.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[283/333] Compiling SwiftParser Parser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[284/333] Compiling SwiftParser LexemeSequence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[285/333] Compiling SwiftParser Lexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[286/333] Compiling SwiftParser RegexLiteralLexer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[287/333] Compiling SwiftParser UnicodeScalarExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[288/333] Compiling SwiftParser Lookahead.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[289/333] Compiling SwiftParser LoopProgressCondition.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[290/333] Compiling SwiftParser SwiftParserCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[291/333] Compiling SwiftParser SwiftVersion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[292/333] Compiling SwiftParser SyntaxUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[293/333] Compiling SwiftParser TokenConsumer.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[294/333] Compiling SwiftParser TokenPrecedence.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[295/333] Compiling SwiftParser TokenSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[296/333] Compiling SwiftParser TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[297/333] Compiling SwiftParser TopLevel.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[298/333] Compiling SwiftParser TriviaParser.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[299/333] Compiling SwiftParser Types.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[300/333] Compiling SwiftParser Patterns.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[301/333] Compiling SwiftParser Recovery.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[302/333] Compiling SwiftParser Specifiers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[303/333] Compiling SwiftParser Statements.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[304/333] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[305/333] Compiling SwiftParser StringLiterals.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[310/333] Compiling SwiftParser Cursor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[311/333] Compiling SwiftParser Lexeme.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[312/333] Compiling SwiftParser Attributes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[313/333] Compiling SwiftParser Availability.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[314/333] Compiling SwiftParser CharacterInfo.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[315/333] Compiling SwiftParser CollectionNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[316/333] Compiling SwiftParser Declarations.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[317/333] Compiling SwiftParser Directives.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[318/333] Compiling SwiftParser ExperimentalFeatures.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[319/333] Compiling SwiftParser IsLexerClassified.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[320/333] Compiling SwiftParser LayoutNodes+Parsable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[321/333] Compiling SwiftParser Parser+TokenSpecSet.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[322/333] Compiling SwiftParser TokenSpecStaticMembers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[323/334] Wrapping AST for SwiftParser for debugging
[325/357] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[326/358] Compiling SwiftOperators OperatorTable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[327/359] Compiling SwiftOperators PrecedenceGroup.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[328/359] Compiling SwiftOperators PrecedenceGraph.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[329/359] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[330/359] Compiling SwiftOperators OperatorTable+Semantics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[331/359] Compiling SwiftOperators SyntaxSynthesis.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[332/359] Emitting module SwiftOperators
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[333/359] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[334/359] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[335/359] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[336/359] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[337/359] Compiling SwiftOperators OperatorTable+Folding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[338/360] Wrapping AST for SwiftOperators for debugging
[340/360] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[341/360] Compiling SwiftParserDiagnostics Utils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[342/360] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[343/360] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[344/360] Compiling SwiftParserDiagnostics PresenceUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[345/360] Compiling SwiftParserDiagnostics MissingNodesError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[346/360] Compiling SwiftParserDiagnostics MissingTokenError.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[349/360] Emitting module SwiftParserDiagnostics
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[352/361] Wrapping AST for SwiftParserDiagnostics for debugging
[354/376] Compiling SwiftSyntaxBuilder Indenter.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[355/376] Compiling SwiftSyntaxBuilder ListBuilder.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[356/377] Emitting module SwiftSyntaxBuilder
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[357/377] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[358/377] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[359/377] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[360/377] Compiling SwiftSyntaxBuilder BuildableNodes.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[361/377] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[362/377] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[363/377] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[364/377] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[365/377] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[366/377] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[367/377] Compiling SwiftSyntaxBuilder ResultBuilders.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[368/377] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[369/377] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[370/378] Wrapping AST for SwiftSyntaxBuilder for debugging
[372/395] Compiling SwiftSyntaxMacros CodeItemMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[373/395] Compiling SwiftSyntaxMacros DeclarationMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[374/397] Compiling SwiftSyntaxMacros AccessorMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[375/397] Compiling SwiftSyntaxMacros AttachedMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[376/397] Compiling SwiftSyntaxMacros BodyMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[377/397] Compiling SwiftSyntaxMacros FreestandingMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[378/397] Compiling SwiftSyntaxMacros Macro+Format.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[379/397] Compiling SwiftSyntaxMacros ExpressionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[380/397] Compiling SwiftSyntaxMacros ExtensionMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[381/397] Emitting module SwiftSyntaxMacros
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[382/397] Compiling SwiftSyntaxMacros MemberMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[383/397] Compiling SwiftSyntaxMacros PeerMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[384/397] Compiling SwiftSyntaxMacros Macro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[385/397] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[386/397] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[387/397] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[388/397] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[389/397] Compiling SwiftSyntaxMacros PreambleMacro.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[390/397] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[391/398] Wrapping AST for SwiftSyntaxMacros for debugging
[393/407] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[394/408] Emitting module SwiftSyntaxMacroExpansion
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[395/408] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[396/408] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[397/408] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[398/408] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[399/408] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[400/408] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[401/408] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[402/408] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[403/409] Wrapping AST for SwiftSyntaxMacroExpansion for debugging
[405/421] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[406/422] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[407/422] Compiling SwiftCompilerPluginMessageHandling JSON.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[408/422] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[409/422] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[410/422] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[411/422] Emitting module SwiftCompilerPluginMessageHandling
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[412/422] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[413/422] Compiling SwiftCompilerPluginMessageHandling Macros.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[414/422] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[415/422] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[416/422] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[417/422] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[418/423] Wrapping AST for SwiftCompilerPluginMessageHandling for debugging
[420/425] Emitting module SwiftCompilerPlugin
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[421/425] Compiling SwiftCompilerPlugin CompilerPlugin.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[422/426] Wrapping AST for SwiftCompilerPlugin for debugging
[424/431] Compiling StreamDeckMacros EntryMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:42:49: warning: 'as' is deprecated: This cast will always succeed
 40 | 	static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
 41 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 42 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
    |                                                 `- warning: 'as' is deprecated: This cast will always succeed
 43 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
 44 | 		else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:42:91: warning: 'as' is deprecated: This cast will always succeed
 40 | 	static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
 41 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 42 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
    |                                                                                           `- warning: 'as' is deprecated: This cast will always succeed
 43 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
 44 | 		else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:49: warning: 'as' is deprecated: This cast will always succeed
 52 | 	static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
 53 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 54 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
    |                                                 `- warning: 'as' is deprecated: This cast will always succeed
 55 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
 56 | 			  let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:91: warning: 'as' is deprecated: This cast will always succeed
 52 | 	static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
 53 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 54 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
    |                                                                                           `- warning: 'as' is deprecated: This cast will always succeed
 55 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
 56 | 			  let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:55:10: warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
 53 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 54 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
 55 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
    |          `- warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
 56 | 			  let initializer = patternBinding.initializer
 57 | 		else {
[425/431] Emitting module StreamDeckMacros
[426/431] Compiling StreamDeckMacros KeyMacros.swift
[427/431] Compiling StreamDeckMacros Plugin.swift
[428/431] Compiling StreamDeckMacros SharedKeyMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/SharedKeyMacro.swift:45:14: warning: 'argumentList' is deprecated: renamed to 'arguments'
 43 |
 44 | 		// Check we have the requisite number of arguments
 45 | 		guard node.argumentList.count == 3 else {
    |              |- warning: 'argumentList' is deprecated: renamed to 'arguments'
    |              `- note: use 'arguments' instead
 46 | 			throw MacroError.invalidCount
 47 | 		}
/host/spi-builder-workspace/Sources/StreamDeckMacros/SharedKeyMacro.swift:50:27: warning: 'argumentList' is deprecated: renamed to 'arguments'
 48 |
 49 | 		// Create an array so we can access the args by index
 50 | 		let argumentList = node.argumentList.map { $0 }
    |                           |- warning: 'argumentList' is deprecated: renamed to 'arguments'
    |                           `- note: use 'arguments' instead
 51 |
 52 | 		// Get the name from the first argument
[429/432] Wrapping AST for StreamDeckMacros for debugging
[430/432] Write Objects.LinkFileList
[431/432] Linking StreamDeckMacros-tool
[433/512] Compiling StreamDeck PluginOS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[434/512] Compiling StreamDeck PluginProfile.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[435/512] Compiling StreamDeck PluginSoftware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[436/512] Compiling StreamDeck RotaryEncoder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[437/512] Compiling StreamDeck TriggerDescription.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[438/517] Compiling StreamDeck EnvironmentKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[439/517] Compiling StreamDeck EnvironmentValues.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[440/517] Compiling StreamDeck EnvironmentWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[441/517] Compiling StreamDeck ApplicationsToMonitor.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[442/517] Compiling StreamDeck Coordinates.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[443/517] Compiling StreamDeck Fonts.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[444/517] Compiling StreamDeck SDPlugin+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[445/517] Compiling StreamDeck SDPlugin+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[446/517] Compiling StreamDeck SDPlugin+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[447/517] Compiling StreamDeck StreamDeckPlugin.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[448/517] Compiling StreamDeck ActionControllerRegistry.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[449/517] Compiling StreamDeck Events.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[450/517] Compiling StreamDeck CharSet+DNS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[451/517] Compiling StreamDeck NSImage+Base64.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[452/517] Compiling StreamDeck URL+Argument.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[453/517] Compiling StreamDeck SettingsMacros.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[454/517] Compiling StreamDeck Action+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[455/517] Compiling StreamDeck ActionBuilder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[456/517] Compiling StreamDeck ExportCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[457/517] Compiling StreamDeck PluginCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[458/517] Compiling StreamDeck StreamDeckCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[459/517] Compiling StreamDeck StreamDeckKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[460/517] Compiling StreamDeck EventProtocols.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[466/517] Compiling StreamDeck Hardware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[467/517] Compiling StreamDeck PluginAction.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[468/517] Compiling StreamDeck PluginActionState.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[469/517] Compiling StreamDeck PluginInfo.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[470/517] Compiling StreamDeck PluginManifest.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[471/522] Compiling StreamDeck Action+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[472/522] Compiling StreamDeck Action+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[473/522] Compiling StreamDeck Action.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[474/522] Compiling StreamDeck LongPress.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[475/522] Compiling StreamDeck PluginCommunication.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[476/522] Compiling StreamDeck StreamDeckError.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[483/522] Compiling StreamDeck SPDI.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[484/522] Compiling StreamDeck GlobalSettings.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[485/522] Compiling StreamDeck GlobalSettingsKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[486/522] Compiling StreamDeck SettingsWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[487/522] Compiling StreamDeck State.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[488/522] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
[3/3] Compiling plugin GenerateManual
Building for debugging...
[3/22] Write swift-version-24593BA9C3E375BF.txt
[5/51] Compiling SwiftSyntax601 Empty.swift
[6/51] Compiling SwiftSyntax510 Empty.swift
[7/51] Emitting module SwiftSyntax510
[8/69] Compiling SwiftSyntax600 Empty.swift
[9/69] Emitting module SwiftSyntax601
[10/70] Emitting module SwiftSyntax509
[11/70] Compiling SwiftSyntax509 Empty.swift
[12/71] Emitting module SwiftSyntax600
[15/70] Compiling SDPlusLayout LayoutName.swift
[16/70] Compiling SDPlusLayout LayoutSettings.swift
[19/70] Compiling SDPlusLayout LayoutItem.swift
[20/70] Compiling SDPlusLayout LayoutItemKey.swift
[21/70] Compiling SDPlusLayout Clamped.swift
[22/70] Compiling SDPlusLayout Layout.swift
[23/70] Compiling SDPlusLayout BarLayoutItem.swift
[24/70] Compiling SDPlusLayout Color+ExpressibleByStringLiteral.swift
[25/70] Compiling SDPlusLayout Color+FormatStyle.swift
[32/72] Emitting module SDPlusLayout
[33/72] Compiling SDPlusLayout ModifiedItem.swift
[34/72] Compiling SDPlusLayout Properties.swift
[35/72] Emitting module ArgumentParserToolInfo
[36/72] Compiling ArgumentParserToolInfo ToolInfo.swift
[37/73] Emitting module SDPlusLayout
[38/73] Compiling SDPlusLayout Bar.swift
[39/73] Compiling SDPlusLayout Image.swift
[40/73] Emitting module ArgumentParserToolInfo
[41/73] Compiling ArgumentParserToolInfo ToolInfo.swift
[46/138] Compiling SwiftSyntax EditorPlaceholder.swift
[47/138] Compiling SwiftSyntax Identifier.swift
[48/138] Compiling SwiftSyntax Convenience.swift
[49/138] Compiling SwiftSyntax CustomTraits.swift
[50/214] Compiling ArgumentParser OptionGroup.swift
[51/214] Compiling ArgumentParser AsyncParsableCommand.swift
[52/214] Compiling ArgumentParser CommandConfiguration.swift
[53/214] Compiling ArgumentParser CommandGroup.swift
[54/214] Compiling ArgumentParser EnumerableFlag.swift
[55/219] Compiling ArgumentParser ArgumentHelp.swift
[58/219] Compiling ArgumentParser ZshCompletionsGenerator.swift
[59/219] Compiling ArgumentParser Argument.swift
[61/220] Compiling ArgumentParser BashCompletionsGenerator.swift
[62/220] Compiling ArgumentParser CompletionsGenerator.swift
[63/220] Compiling ArgumentParser FishCompletionsGenerator.swift
[68/221] Compiling ArgumentParser CollectionExtensions.swift
[69/221] Compiling ArgumentParser Platform.swift
[70/221] Compiling ArgumentParser SequenceExtensions.swift
[71/221] Compiling ArgumentParser StringExtensions.swift
[72/221] Compiling ArgumentParser Tree.swift
[73/221] Compiling ArgumentParser Name.swift
[74/221] Compiling ArgumentParser Parsed.swift
[75/221] Compiling ArgumentParser ParsedValues.swift
[76/221] Compiling ArgumentParser ParserError.swift
[77/221] Compiling ArgumentParser SplitArguments.swift
[78/221] Compiling ArgumentParser CompletionKind.swift
[79/221] Compiling ArgumentParser Errors.swift
[80/221] Compiling ArgumentParser Flag.swift
[81/221] Compiling ArgumentParser NameSpecification.swift
[82/221] Compiling ArgumentParser Option.swift
[88/226] Compiling ArgumentParser DumpHelpGenerator.swift
[89/226] Compiling ArgumentParser HelpCommand.swift
[90/226] Compiling ArgumentParser HelpGenerator.swift
[91/226] Compiling ArgumentParser MessageInfo.swift
[97/226] Compiling ArgumentParser ArgumentVisibility.swift
[98/235] Emitting module ArgumentParser
[121/235] Compiling ArgumentParser CollectionExtensions.swift
[122/235] Compiling ArgumentParser Platform.swift
[123/235] Compiling ArgumentParser SequenceExtensions.swift
[124/235] Compiling ArgumentParser StringExtensions.swift
[125/235] Compiling ArgumentParser Tree.swift
[135/235] Compiling ArgumentParser UsageGenerator.swift
[136/235] Compiling ArgumentParser ExpressibleByArgument.swift
[137/235] Compiling ArgumentParser ParsableArguments.swift
[138/235] Compiling ArgumentParser ParsableArgumentsValidation.swift
[139/235] Compiling ArgumentParser ParsableCommand.swift
[140/235] Compiling ArgumentParser ArgumentDecoder.swift
[141/235] Compiling ArgumentParser ArgumentDefinition.swift
[142/235] Compiling ArgumentParser ArgumentSet.swift
[143/235] Compiling ArgumentParser CommandParser.swift
[144/235] Compiling ArgumentParser InputKey.swift
[145/235] Compiling ArgumentParser InputOrigin.swift
[187/237] Emitting module SwiftSyntax
[188/237] Compiling SwiftSyntax SyntaxEnum.swift
[189/237] Compiling SwiftSyntax SyntaxKind.swift
[190/237] Compiling SwiftSyntax SyntaxRewriter.swift
[191/237] Compiling SwiftSyntax SyntaxTraits.swift
[192/237] Compiling SwiftSyntax SyntaxVisitor.swift
[193/237] Compiling SwiftSyntax TokenKind.swift
[194/237] Compiling SwiftSyntax Tokens.swift
[195/237] Compiling SwiftSyntax TriviaPieces.swift
[196/237] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[197/237] Compiling SwiftSyntax RawSyntaxNodesC.swift
[198/237] Compiling SwiftSyntax RawSyntaxNodesD.swift
[199/237] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[200/237] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[201/237] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[202/237] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[203/237] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[204/237] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[205/237] Compiling SwiftSyntax RawSyntaxValidation.swift
[206/237] Compiling SwiftSyntax SyntaxNodesAB.swift
[207/237] Compiling SwiftSyntax SyntaxNodesC.swift
[208/237] Compiling SwiftSyntax SyntaxNodesD.swift
[209/237] Compiling SwiftSyntax SyntaxNodesEF.swift
[210/237] Compiling SwiftSyntax SyntaxNodesGHI.swift
[211/237] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[212/237] Compiling SwiftSyntax SyntaxNodesOP.swift
[213/237] Compiling SwiftSyntax SyntaxNodesQRS.swift
[214/237] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[221/237] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[222/237] Compiling SwiftSyntax SyntaxBaseNodes.swift
[223/237] Compiling SwiftSyntax SyntaxCollections.swift
[225/295] Compiling SwiftBasicFormat Syntax+Extensions.swift
[226/295] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[227/295] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[228/295] Compiling SwiftDiagnostics Message.swift
[229/296] Compiling SwiftParser CharacterInfo.swift
[230/296] Compiling SwiftParser CollectionNodes+Parsable.swift
[231/296] Emitting module SwiftDiagnostics
[232/296] Compiling SwiftParser Attributes.swift
[233/296] Compiling SwiftParser Availability.swift
[234/296] Compiling SwiftBasicFormat Indenter.swift
[235/296] Compiling SwiftBasicFormat InferIndentation.swift
[236/296] Compiling SwiftDiagnostics Note.swift
[237/296] Compiling SwiftDiagnostics FixIt.swift
[238/296] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[239/296] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[240/296] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[242/296] Compiling SwiftBasicFormat BasicFormat.swift
[243/296] Emitting module SwiftBasicFormat
[245/296] Compiling SwiftParser LexemeSequence.swift
[246/296] Compiling SwiftParser Lexer.swift
[247/296] Compiling SwiftParser RegexLiteralLexer.swift
[248/296] Compiling SwiftParser UnicodeScalarExtensions.swift
[249/296] Compiling SwiftParser Lookahead.swift
[250/296] Compiling SwiftParser LoopProgressCondition.swift
[251/301] Compiling SwiftParser TokenSpec.swift
[252/301] Compiling SwiftParser TokenSpecSet.swift
[253/301] Compiling SwiftParser TopLevel.swift
[254/301] Compiling SwiftParser TriviaParser.swift
[255/301] Compiling SwiftParser Types.swift
[256/301] Compiling SwiftParser SwiftParserCompatibility.swift
[257/301] Compiling SwiftParser SwiftVersion.swift
[258/301] Compiling SwiftParser SyntaxUtils.swift
[259/301] Compiling SwiftParser TokenConsumer.swift
[260/301] Compiling SwiftParser TokenPrecedence.swift
[261/301] Compiling SwiftParser Modifiers.swift
[262/301] Compiling SwiftParser Names.swift
[263/301] Compiling SwiftParser Nominals.swift
[264/301] Compiling SwiftParser Parameters.swift
[265/301] Compiling SwiftParser ParseSourceFile.swift
[266/301] Compiling SwiftParser Parser.swift
[267/301] Compiling SwiftParser Patterns.swift
[268/301] Compiling SwiftParser Recovery.swift
[269/301] Compiling SwiftParser Specifiers.swift
[270/301] Compiling SwiftParser Statements.swift
[271/301] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[272/301] Compiling SwiftParser StringLiterals.swift
[277/301] Compiling SwiftParser Declarations.swift
[278/301] Compiling SwiftParser Directives.swift
[279/301] Emitting module SwiftParser
[280/301] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[281/301] Compiling SwiftParser Expressions.swift
[282/301] Compiling SwiftParser IncrementalParseTransition.swift
[283/301] Compiling SwiftParser IsValidIdentifier.swift
[284/301] Compiling SwiftParser Cursor.swift
[285/301] Compiling SwiftParser Lexeme.swift
[286/301] Compiling SwiftParser ExperimentalFeatures.swift
[287/301] Compiling SwiftParser IsLexerClassified.swift
[288/301] Compiling SwiftParser LayoutNodes+Parsable.swift
[289/301] Compiling SwiftParser Parser+TokenSpecSet.swift
[290/301] Compiling SwiftParser TokenSpecStaticMembers.swift
[292/324] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[293/324] Compiling SwiftOperators Operator.swift
[294/324] Compiling SwiftOperators OperatorError+Diagnostics.swift
[295/326] Compiling SwiftOperators PrecedenceGroup.swift
[296/326] Compiling SwiftOperators OperatorTable.swift
[297/326] Compiling SwiftOperators PrecedenceGraph.swift
[298/326] Compiling SwiftOperators OperatorTable+Semantics.swift
[299/326] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[300/326] Compiling SwiftParserDiagnostics Utils.swift
[301/326] Compiling SwiftOperators SyntaxSynthesis.swift
[302/326] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[303/326] Compiling SwiftOperators OperatorError.swift
[304/326] Compiling SwiftOperators OperatorTable+Defaults.swift
[305/326] Emitting module SwiftOperators
[306/326] Compiling SwiftOperators OperatorTable+Folding.swift
[308/327] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[309/327] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[310/327] Compiling SwiftParserDiagnostics PresenceUtils.swift
[311/326] Emitting module SwiftParserDiagnostics
[312/326] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[313/326] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[319/341] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[320/341] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[321/342] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[322/342] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[323/342] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[324/342] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[325/342] Emitting module SwiftSyntaxBuilder
[326/342] Compiling SwiftSyntaxBuilder Indenter.swift
[327/342] Compiling SwiftSyntaxBuilder ListBuilder.swift
[328/342] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[329/342] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[330/342] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[331/342] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[332/342] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[333/342] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[334/342] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[336/359] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[337/359] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[338/361] Compiling SwiftSyntaxMacros MemberMacro.swift
[339/361] Compiling SwiftSyntaxMacros PeerMacro.swift
[340/361] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[341/361] Compiling SwiftSyntaxMacros Macro+Format.swift
[342/361] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[343/361] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[344/361] Compiling SwiftSyntaxMacros Macro.swift
[345/361] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[346/361] Compiling SwiftSyntaxMacros PreambleMacro.swift
[347/361] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[348/361] Emitting module SwiftSyntaxMacros
[349/361] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[350/361] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[351/361] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[352/361] Compiling SwiftSyntaxMacros AccessorMacro.swift
[353/361] Compiling SwiftSyntaxMacros AttachedMacro.swift
[354/361] Compiling SwiftSyntaxMacros BodyMacro.swift
[356/370] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[357/371] Emitting module SwiftSyntaxMacroExpansion
[358/371] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[359/371] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[360/371] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[361/371] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[362/371] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[363/371] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[364/371] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[365/371] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[367/383] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[368/383] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[369/383] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[370/384] Emitting module SwiftCompilerPluginMessageHandling
[371/384] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[372/384] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[373/384] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[374/384] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[375/384] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[376/384] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[377/384] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[378/384] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[379/384] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[381/386] Emitting module SwiftCompilerPlugin
[382/386] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[384/391] Compiling StreamDeckMacros EntryMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:42:49: warning: 'as' is deprecated: This cast will always succeed
 40 | 	static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
 41 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 42 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
    |                                                 `- warning: 'as' is deprecated: This cast will always succeed
 43 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
 44 | 		else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:42:91: warning: 'as' is deprecated: This cast will always succeed
 40 | 	static func identifier(of declaration: some DeclSyntaxProtocol) throws -> String {
 41 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 42 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
    |                                                                                           `- warning: 'as' is deprecated: This cast will always succeed
 43 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text
 44 | 		else {
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:49: warning: 'as' is deprecated: This cast will always succeed
 52 | 	static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
 53 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 54 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
    |                                                 `- warning: 'as' is deprecated: This cast will always succeed
 55 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
 56 | 			  let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:54:91: warning: 'as' is deprecated: This cast will always succeed
 52 | 	static func initializer(of declaration: some DeclSyntaxProtocol) throws -> InitializerClauseSyntax {
 53 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 54 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
    |                                                                                           `- warning: 'as' is deprecated: This cast will always succeed
 55 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
 56 | 			  let initializer = patternBinding.initializer
/host/spi-builder-workspace/Sources/StreamDeckMacros/EntryMacro.swift:55:10: warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
 53 | 		guard let variableDecl = declaration.as(VariableDeclSyntax.self),
 54 | 			  let patternBinding = variableDecl.bindings.as(PatternBindingListSyntax.self)?.first?.as(PatternBindingSyntax.self),
 55 | 			  let identifier = patternBinding.pattern.as(IdentifierPatternSyntax.self)?.identifier.text,
    |          `- warning: immutable value 'identifier' was never used; consider replacing with '_' or removing it
 56 | 			  let initializer = patternBinding.initializer
 57 | 		else {
[385/391] Compiling StreamDeckMacros KeyMacros.swift
[386/391] Emitting module StreamDeckMacros
[387/391] Compiling StreamDeckMacros Plugin.swift
[388/391] Compiling StreamDeckMacros SharedKeyMacro.swift
/host/spi-builder-workspace/Sources/StreamDeckMacros/SharedKeyMacro.swift:45:14: warning: 'argumentList' is deprecated: renamed to 'arguments'
 43 |
 44 | 		// Check we have the requisite number of arguments
 45 | 		guard node.argumentList.count == 3 else {
    |              |- warning: 'argumentList' is deprecated: renamed to 'arguments'
    |              `- note: use 'arguments' instead
 46 | 			throw MacroError.invalidCount
 47 | 		}
/host/spi-builder-workspace/Sources/StreamDeckMacros/SharedKeyMacro.swift:50:27: warning: 'argumentList' is deprecated: renamed to 'arguments'
 48 |
 49 | 		// Create an array so we can access the args by index
 50 | 		let argumentList = node.argumentList.map { $0 }
    |                           |- warning: 'argumentList' is deprecated: renamed to 'arguments'
    |                           `- note: use 'arguments' instead
 51 |
 52 | 		// Get the name from the first argument
[389/391] Write Objects.LinkFileList
[390/391] Linking StreamDeckMacros-tool
[392/471] Compiling StreamDeck PluginOS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[393/471] Compiling StreamDeck PluginProfile.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[394/471] Compiling StreamDeck PluginSoftware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[395/471] Compiling StreamDeck RotaryEncoder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[396/471] Compiling StreamDeck TriggerDescription.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[397/476] Compiling StreamDeck Action+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[398/476] Compiling StreamDeck Action.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[399/476] Compiling StreamDeck LongPress.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[400/476] Compiling StreamDeck PluginCommunication.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[401/476] Compiling StreamDeck StreamDeckError.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[402/481] Compiling StreamDeck EnvironmentValues.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[403/481] Compiling StreamDeck EnvironmentWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[404/481] Compiling StreamDeck ApplicationsToMonitor.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[405/481] Compiling StreamDeck Coordinates.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[406/481] Compiling StreamDeck Fonts.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[407/481] Compiling StreamDeck Hardware.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[414/481] Compiling StreamDeck PluginAction.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[415/481] Compiling StreamDeck PluginActionState.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[416/481] Compiling StreamDeck PluginInfo.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[417/481] Compiling StreamDeck PluginManifest.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[418/481] Compiling StreamDeck SDPlugin+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[419/481] Compiling StreamDeck SDPlugin+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[420/481] Compiling StreamDeck SDPlugin+Support.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[421/481] Compiling StreamDeck StreamDeckPlugin.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[422/481] Compiling StreamDeck ActionControllerRegistry.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[423/481] Compiling StreamDeck EnvironmentKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[424/481] Compiling StreamDeck ActionBuilder.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[425/481] Compiling StreamDeck ExportCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[426/481] Compiling StreamDeck PluginCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[427/481] Compiling StreamDeck StreamDeckCommand.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[428/481] Compiling StreamDeck StreamDeckKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[429/481] Compiling StreamDeck EventProtocols.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[430/481] Compiling StreamDeck Events.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[431/481] Compiling StreamDeck CharSet+DNS.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[432/481] Compiling StreamDeck NSImage+Base64.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[433/481] Compiling StreamDeck URL+Argument.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[434/481] Compiling StreamDeck SettingsMacros.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[435/481] Compiling StreamDeck Action+Received.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[442/481] Compiling StreamDeck Action+Sent.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[448/481] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[449/481] Compiling StreamDeck SPDI.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[450/481] Compiling StreamDeck GlobalSettings.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[451/481] Compiling StreamDeck GlobalSettingsKey.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[452/481] Compiling StreamDeck SettingsWrapper.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
[453/481] Compiling StreamDeck State.swift
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
error: emit-module command failed with exit code 1 (use -v to see invocation)
[454/481] Emitting module StreamDeck
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
/host/spi-builder-workspace/Sources/StreamDeck/Command Line/StreamDeckCommand.swift:10:8: error: no such module 'OSLog'
 8 | import Foundation
 9 | import ArgumentParser
10 | import OSLog
   |        `- error: no such module 'OSLog'
11 |
12 | fileprivate let log = Logger(subsystem: "StreamDeckPlugin", category: "StreamDeckCommand")
BUILD FAILURE 6.1 wasm