The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of MoreWindows, reference main (91b487), with Swift 6.0 for macOS (SPM) on 4 Nov 2024 21:26:12 UTC.

Swift 6 data race errors: 49

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
45 |
46 | 	/// Options relating to a hover interaction.
47 | 	static let hoverInteraction: Self = [.hoverScale, .hoverRotation, .hoverShadow]
   |             |- warning: static property 'hoverInteraction' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'hoverInteraction' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:50:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
48 |
49 | 	/// The default options used.
50 | 	static let `default`: Self = [.glowInTheDark]
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:53:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
51 |
52 | 	/// No options.
53 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:56:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
54 |
55 | 	/// All available options.
56 | 	static let all: Self = [.glowInTheDark, .hoverScale, .hoverRotation, .hoverShadow]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:31:13: warning: static property 'copyable' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
29 | public extension AppVersionOptions {
30 | 	/// Allow the user to copy the version number to the clipboard by clicking on it.
31 | 	static let copyable: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'copyable' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'copyable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | 	/// Show the app build number alongside the semantic version.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:36:13: warning: static property 'showBuildNumber' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
34 | 	///
35 | 	/// This option also applies to the string produced by ``copyable``.
36 | 	static let showBuildNumber: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showBuildNumber' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showBuildNumber' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:39:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
37 |
38 | 	/// The default options used.
39 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:45:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
43 |
44 | 	/// All available options.
45 | 	static let all: Self = [.copyable, .showBuildNumber]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:42:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
40 |
41 | 	/// No options.
42 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | 	/// All available options.
[17/21] Compiling _MoreWindowsCommon AppVersionOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:35:13: warning: static property 'glowInTheDark' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
33 | public extension AppIconOptions {
34 | 	/// Show a faint glow behind the app icon when the app is in dark mode.
35 | 	static let glowInTheDark: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'glowInTheDark' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'glowInTheDark' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | 	/// Scale the icon with a hover interaction.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:38:13: warning: static property 'hoverScale' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
36 |
37 | 	/// Scale the icon with a hover interaction.
38 | 	static let hoverScale: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'hoverScale' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'hoverScale' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Rotate the icon with a hover interaction.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:41:13: warning: static property 'hoverRotation' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
39 |
40 | 	/// Rotate the icon with a hover interaction.
41 | 	static let hoverRotation: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'hoverRotation' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'hoverRotation' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | 	/// Apply a shadow behind the icon with a hover interaction.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:44:13: warning: static property 'hoverShadow' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
42 |
43 | 	/// Apply a shadow behind the icon with a hover interaction.
44 | 	static let hoverShadow: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'hoverShadow' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'hoverShadow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// Options relating to a hover interaction.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:47:13: warning: static property 'hoverInteraction' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
45 |
46 | 	/// Options relating to a hover interaction.
47 | 	static let hoverInteraction: Self = [.hoverScale, .hoverRotation, .hoverShadow]
   |             |- warning: static property 'hoverInteraction' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'hoverInteraction' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:50:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
48 |
49 | 	/// The default options used.
50 | 	static let `default`: Self = [.glowInTheDark]
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:53:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
51 |
52 | 	/// No options.
53 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:56:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
54 |
55 | 	/// All available options.
56 | 	static let all: Self = [.glowInTheDark, .hoverScale, .hoverRotation, .hoverShadow]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:31:13: warning: static property 'copyable' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
29 | public extension AppVersionOptions {
30 | 	/// Allow the user to copy the version number to the clipboard by clicking on it.
31 | 	static let copyable: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'copyable' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'copyable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | 	/// Show the app build number alongside the semantic version.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:36:13: warning: static property 'showBuildNumber' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
34 | 	///
35 | 	/// This option also applies to the string produced by ``copyable``.
36 | 	static let showBuildNumber: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showBuildNumber' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showBuildNumber' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:39:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
37 |
38 | 	/// The default options used.
39 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:45:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
43 |
44 | 	/// All available options.
45 | 	static let all: Self = [.copyable, .showBuildNumber]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:42:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
40 |
41 | 	/// No options.
42 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | 	/// All available options.
[18/21] Emitting module _MoreWindowsCommon
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:35:13: warning: static property 'glowInTheDark' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
33 | public extension AppIconOptions {
34 | 	/// Show a faint glow behind the app icon when the app is in dark mode.
35 | 	static let glowInTheDark: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'glowInTheDark' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'glowInTheDark' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | 	/// Scale the icon with a hover interaction.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:38:13: warning: static property 'hoverScale' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
36 |
37 | 	/// Scale the icon with a hover interaction.
38 | 	static let hoverScale: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'hoverScale' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'hoverScale' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 | 	/// Rotate the icon with a hover interaction.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:41:13: warning: static property 'hoverRotation' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
39 |
40 | 	/// Rotate the icon with a hover interaction.
41 | 	static let hoverRotation: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'hoverRotation' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'hoverRotation' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | 	/// Apply a shadow behind the icon with a hover interaction.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:44:13: warning: static property 'hoverShadow' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
42 |
43 | 	/// Apply a shadow behind the icon with a hover interaction.
44 | 	static let hoverShadow: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'hoverShadow' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'hoverShadow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// Options relating to a hover interaction.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:47:13: warning: static property 'hoverInteraction' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
45 |
46 | 	/// Options relating to a hover interaction.
47 | 	static let hoverInteraction: Self = [.hoverScale, .hoverRotation, .hoverShadow]
   |             |- warning: static property 'hoverInteraction' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'hoverInteraction' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:50:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
48 |
49 | 	/// The default options used.
50 | 	static let `default`: Self = [.glowInTheDark]
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:53:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
51 |
52 | 	/// No options.
53 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:56:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
54 |
55 | 	/// All available options.
56 | 	static let all: Self = [.glowInTheDark, .hoverScale, .hoverRotation, .hoverShadow]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | }
58 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:31:13: warning: static property 'copyable' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
29 | public extension AppVersionOptions {
30 | 	/// Allow the user to copy the version number to the clipboard by clicking on it.
31 | 	static let copyable: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'copyable' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'copyable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | 	/// Show the app build number alongside the semantic version.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:36:13: warning: static property 'showBuildNumber' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
34 | 	///
35 | 	/// This option also applies to the string produced by ``copyable``.
36 | 	static let showBuildNumber: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showBuildNumber' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showBuildNumber' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:39:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
37 |
38 | 	/// The default options used.
39 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:45:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
43 |
44 | 	/// All available options.
45 | 	static let all: Self = [.copyable, .showBuildNumber]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 | }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:42:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
40 |
41 | 	/// No options.
42 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Environment/AppIconOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AppIconOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: AppIconOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:23:15: note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Environment/AppVersionOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AppVersionOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: AppVersionOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:19:15: note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Extensions/Logger+Extension.swift:4:13: warning: static property 'moreWindowsSubsystem' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | public extension Logger {
4 | 	static var moreWindowsSubsystem: String = "MoreWindows"
  |             |- warning: static property 'moreWindowsSubsystem' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  |             |- note: convert 'moreWindowsSubsystem' to a 'let' constant to make 'Sendable' shared state immutable
  |             |- note: annotate 'moreWindowsSubsystem' with '@MainActor' if property should only be accessed from the main actor
  |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | }
6 |
[19/21] Compiling _MoreWindowsCommon AppIconOptionsKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Environment/AppIconOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AppIconOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: AppIconOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:23:15: note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:50:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
48 |
49 | 	/// The default options used.
50 | 	static let `default`: Self = [.glowInTheDark]
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Environment/AppVersionOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AppVersionOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: AppVersionOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:19:15: note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:39:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
37 |
38 | 	/// The default options used.
39 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// No options.
[20/21] Compiling _MoreWindowsCommon AppVersionOptionsKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Environment/AppIconOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AppIconOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: AppIconOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:23:15: note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppIconOptions.swift:50:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
21 | /// - SeeAlso:
22 | ///   - ``AppIconView``
23 | public struct AppIconOptions: OptionSet {
   |               `- note: consider making struct 'AppIconOptions' conform to the 'Sendable' protocol
24 | 	public let rawValue: UInt8
25 |
   :
48 |
49 | 	/// The default options used.
50 | 	static let `default`: Self = [.glowInTheDark]
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppIconOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Environment/AppVersionOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AppVersionOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: AppVersionOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:19:15: note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Data/AppVersionOptions.swift:39:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``AppVersionView``
19 | public struct AppVersionOptions: OptionSet {
   |               `- note: consider making struct 'AppVersionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
37 |
38 | 	/// The default options used.
39 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AppVersionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// No options.
[21/21] Compiling _MoreWindowsCommon Divided.swift
[22/47] Compiling MoreWindows_Launcher LauncherLabelStyle.swift
[23/48] Emitting module MoreWindows_About
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:29:13: warning: static property 'showDefaultInformation' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
27 | 	///
28 | 	/// This includes the app icon, name, and version.
29 | 	static let showDefaultInformation: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'showDefaultInformation' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showDefaultInformation' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | 	/// Show the default app copyright view at the bottom of the window.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:34:13: warning: static property 'showDefaultCopyright' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
32 | 	///
33 | 	/// The string used is the one found in the app's Info.plist.
34 | 	static let showDefaultCopyright: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showDefaultCopyright' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showDefaultCopyright' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:37:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
35 |
36 | 	/// The default options used.
37 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:43:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
41 |
42 | 	/// All available options.
43 | 	static let all: Self = [.showDefaultInformation, .showDefaultCopyright]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | }
45 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:40:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
38 |
39 | 	/// No options.
40 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Environment/AboutWindowLayoutKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AboutWindowLayout' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AboutWindowLayoutKey: EnvironmentKey {
 4 | 	static let defaultValue: AboutWindowLayout = .vertical
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AboutWindowLayout' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowLayout.swift:2:13: note: consider making enum 'AboutWindowLayout' conform to the 'Sendable' protocol
 1 | /// The layout style of an ``About`` window.
 2 | public enum AboutWindowLayout: UInt8 {
   |             `- note: consider making enum 'AboutWindowLayout' conform to the 'Sendable' protocol
 3 | 	/// Provide custom content for the about window.
 4 | 	///
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Environment/AboutWindowOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AboutWindowOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: AboutWindowOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:15:15: note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Extensions/Logger+Extension.swift:4:58: warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension Logger {
4 | 	static let aboutWindow: Logger = Logger(subsystem: Self.moreWindowsSubsystem, category: "AboutWindow")
  |                                                          `- warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
5 | }
6 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Extensions/Logger+Extension.swift:4:13: note: static property declared here
2 |
3 | public extension Logger {
4 | 	static var moreWindowsSubsystem: String = "MoreWindows"
  |             `- note: static property declared here
5 | }
6 |
[24/48] Compiling MoreWindows_About AboutWindowLayoutKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Environment/AboutWindowLayoutKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AboutWindowLayout' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AboutWindowLayoutKey: EnvironmentKey {
 4 | 	static let defaultValue: AboutWindowLayout = .vertical
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AboutWindowLayout' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowLayout.swift:2:13: note: consider making enum 'AboutWindowLayout' conform to the 'Sendable' protocol
 1 | /// The layout style of an ``About`` window.
 2 | public enum AboutWindowLayout: UInt8 {
   |             `- note: consider making enum 'AboutWindowLayout' conform to the 'Sendable' protocol
 3 | 	/// Provide custom content for the about window.
 4 | 	///
[25/48] Compiling MoreWindows_About Logger+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Extensions/Logger+Extension.swift:4:58: warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
2 |
3 | extension Logger {
4 | 	static let aboutWindow: Logger = Logger(subsystem: Self.moreWindowsSubsystem, category: "AboutWindow")
  |                                                          `- warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
5 | }
6 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Extensions/Logger+Extension.swift:4:13: note: static property declared here
2 |
3 | public extension Logger {
4 | 	static var moreWindowsSubsystem: String = "MoreWindows"
  |             `- note: static property declared here
5 | }
6 |
[26/48] Compiling MoreWindows_Launcher LauncherButtonStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:31:13: warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
29 | public extension LauncherActionOptions {
30 | 	/// Close the launcher window once the button action is executed.
31 | 	static let closeWindow: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'closeWindow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | 	/// The default options used.
[27/48] Compiling MoreWindows_About AboutWindowOptionsKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Environment/AboutWindowOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct AboutWindowOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: AboutWindowOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:15:15: note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:37:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
35 |
36 | 	/// The default options used.
37 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | 	/// No options.
[28/48] Compiling MoreWindows_About ContentView.swift
[29/48] Compiling MoreWindows_About AppInfoSection.swift
[30/48] Compiling MoreWindows_About AboutWindowLayout.swift
[31/48] Compiling MoreWindows_About AboutWindowOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:29:13: warning: static property 'showDefaultInformation' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
27 | 	///
28 | 	/// This includes the app icon, name, and version.
29 | 	static let showDefaultInformation: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'showDefaultInformation' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showDefaultInformation' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | 	/// Show the default app copyright view at the bottom of the window.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:34:13: warning: static property 'showDefaultCopyright' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
32 | 	///
33 | 	/// The string used is the one found in the app's Info.plist.
34 | 	static let showDefaultCopyright: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showDefaultCopyright' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showDefaultCopyright' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:37:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
35 |
36 | 	/// The default options used.
37 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:43:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
41 |
42 | 	/// All available options.
43 | 	static let all: Self = [.showDefaultInformation, .showDefaultCopyright]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | }
45 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:40:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
38 |
39 | 	/// No options.
40 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 |
42 | 	/// All available options.
[32/48] Compiling MoreWindows_About About.swift
[33/48] Compiling MoreWindows_About VerticalContentView.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:29:13: warning: static property 'showDefaultInformation' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
27 | 	///
28 | 	/// This includes the app icon, name, and version.
29 | 	static let showDefaultInformation: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'showDefaultInformation' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showDefaultInformation' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | 	/// Show the default app copyright view at the bottom of the window.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_About/Data/AboutWindowOptions.swift:34:13: warning: static property 'showDefaultCopyright' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// | ``showDefaultInformation`` | Show the default app information view at the top of the window.  This contains the app icon, name, and version. |
14 | /// | ``showDefaultCopyright`` | Show the default app copyright view at the bottom of the window..  The string used is the one found in the app's Info.plist. |
15 | public struct AboutWindowOptions: OptionSet {
   |               `- note: consider making struct 'AboutWindowOptions' conform to the 'Sendable' protocol
16 | 	public let rawValue: UInt8
17 |
   :
32 | 	///
33 | 	/// The string used is the one found in the app's Info.plist.
34 | 	static let showDefaultCopyright: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showDefaultCopyright' is not concurrency-safe because non-'Sendable' type 'AboutWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showDefaultCopyright' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | 	/// The default options used.
[34/48] Compiling MoreWindows_Launcher LauncherWindowSizeKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Environment/RecentItemsOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct RecentItemsOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: RecentItemsOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:21:15: note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:48:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
46 |
47 | 	/// The default options used.
48 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | 	/// No options.
[35/48] Compiling MoreWindows_Launcher RecentItemsOptionsKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Environment/RecentItemsOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct RecentItemsOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: RecentItemsOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:21:15: note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:48:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
46 |
47 | 	/// The default options used.
48 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | 	/// No options.
[36/48] Compiling MoreWindows_Launcher LauncherActionOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:31:13: warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
29 | public extension LauncherActionOptions {
30 | 	/// Close the launcher window once the button action is executed.
31 | 	static let closeWindow: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'closeWindow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:34:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
32 |
33 | 	/// The default options used.
34 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:40:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
38 |
39 | 	/// All available options.
40 | 	static let all: Self = [.closeWindow]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:37:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
35 |
36 | 	/// No options.
37 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:33:13: warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
31 | public extension LauncherWindowOptions {
32 | 	/// Displays the app icon.
33 | 	static let showIcon: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showIcon' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Displays the app name.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:36:13: warning: static property 'showName' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
34 |
35 | 	/// Displays the app name.
36 | 	static let showName: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showName' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showName' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// Displays the current app version.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:39:13: warning: static property 'showVersion' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
37 |
38 | 	/// Displays the current app version.
39 | 	static let showVersion: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'showVersion' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showVersion' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// Adds a list with recent documents.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:44:13: warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
42 | 	/// - SeeAlso:
43 | 	///   - ``RecentItemsOptions``
44 | 	static let showRecentDocuments: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showRecentDocuments' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// Adds a menu item to open the launcher.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:47:13: warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
45 |
46 | 	/// Adds a menu item to open the launcher.
47 | 	static let addMenuItem: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'addMenuItem' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// Only options pertaining to the "welcome" area of the launcher.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:50:13: warning: static property 'welcome' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
48 |
49 | 	/// Only options pertaining to the "welcome" area of the launcher.
50 | 	static let welcome: Self = [.showIcon, .showName, .showVersion]
   |             |- warning: static property 'welcome' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'welcome' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:53:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
51 |
52 | 	/// The default options used.
53 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:59:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
57 |
58 | 	/// All available options.
59 | 	static let all: Self = [.showIcon, .showName, .showVersion, .showRecentDocuments, .addMenuItem]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 | }
61 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:56:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
54 |
55 | 	/// No options.
56 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | 	/// All available options.
[37/48] Compiling MoreWindows_Launcher LauncherWindowOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:31:13: warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
29 | public extension LauncherActionOptions {
30 | 	/// Close the launcher window once the button action is executed.
31 | 	static let closeWindow: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'closeWindow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:34:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
32 |
33 | 	/// The default options used.
34 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:40:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
38 |
39 | 	/// All available options.
40 | 	static let all: Self = [.closeWindow]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:37:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
35 |
36 | 	/// No options.
37 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:33:13: warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
31 | public extension LauncherWindowOptions {
32 | 	/// Displays the app icon.
33 | 	static let showIcon: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showIcon' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Displays the app name.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:36:13: warning: static property 'showName' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
34 |
35 | 	/// Displays the app name.
36 | 	static let showName: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showName' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showName' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// Displays the current app version.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:39:13: warning: static property 'showVersion' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
37 |
38 | 	/// Displays the current app version.
39 | 	static let showVersion: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'showVersion' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showVersion' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// Adds a list with recent documents.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:44:13: warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
42 | 	/// - SeeAlso:
43 | 	///   - ``RecentItemsOptions``
44 | 	static let showRecentDocuments: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showRecentDocuments' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// Adds a menu item to open the launcher.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:47:13: warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
45 |
46 | 	/// Adds a menu item to open the launcher.
47 | 	static let addMenuItem: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'addMenuItem' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// Only options pertaining to the "welcome" area of the launcher.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:50:13: warning: static property 'welcome' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
48 |
49 | 	/// Only options pertaining to the "welcome" area of the launcher.
50 | 	static let welcome: Self = [.showIcon, .showName, .showVersion]
   |             |- warning: static property 'welcome' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'welcome' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:53:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
51 |
52 | 	/// The default options used.
53 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:59:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
57 |
58 | 	/// All available options.
59 | 	static let all: Self = [.showIcon, .showName, .showVersion, .showRecentDocuments, .addMenuItem]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 | }
61 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:56:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
54 |
55 | 	/// No options.
56 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | 	/// All available options.
[38/48] Compiling MoreWindows_Launcher LauncherActionOptionsKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Environment/LauncherActionOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct LauncherActionOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: LauncherActionOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:19:15: note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:34:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
32 |
33 | 	/// The default options used.
34 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Environment/LauncherWindowOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct LauncherWindowOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: LauncherWindowOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:21:15: note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:53:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
51 |
52 | 	/// The default options used.
53 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// No options.
[39/48] Compiling MoreWindows_Launcher LauncherWindowOptionsKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Environment/LauncherActionOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct LauncherActionOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: LauncherActionOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:19:15: note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:34:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
32 |
33 | 	/// The default options used.
34 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Environment/LauncherWindowOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct LauncherWindowOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: LauncherWindowOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:21:15: note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:53:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
51 |
52 | 	/// The default options used.
53 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// No options.
[40/48] Compiling MoreWindows_Launcher LauncherWindowSize.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:33:13: warning: static property 'searchable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
31 | public extension RecentItemsOptions {
32 | 	/// Displays a search field for recent items.
33 | 	static let searchable: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'searchable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'searchable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Shows the item's file icon.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:36:13: warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
34 |
35 | 	/// Shows the item's file icon.
36 | 	static let showIcon: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showIcon' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// Shows the item URL.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:39:13: warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
37 |
38 | 	/// Shows the item URL.
39 | 	static let showURL: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showURL' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// Allows items in the list to be dragged.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:42:13: warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
40 |
41 | 	/// Allows items in the list to be dragged.
42 | 	static let draggable: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'draggable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | 	/// Closes the launcher upon selecting an item.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:45:13: warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
43 |
44 | 	/// Closes the launcher upon selecting an item.
45 | 	static let closeWindow: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'closeWindow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:48:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
46 |
47 | 	/// The default options used.
48 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:54:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
52 |
53 | 	/// All available options.
54 | 	static let all: Self = [.searchable, .showIcon, .showURL, .draggable, .closeWindow]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:51:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
49 |
50 | 	/// No options.
51 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | 	/// All available options.
[41/48] Compiling MoreWindows_Launcher RecentItemsOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:33:13: warning: static property 'searchable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
31 | public extension RecentItemsOptions {
32 | 	/// Displays a search field for recent items.
33 | 	static let searchable: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'searchable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'searchable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Shows the item's file icon.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:36:13: warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
34 |
35 | 	/// Shows the item's file icon.
36 | 	static let showIcon: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showIcon' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// Shows the item URL.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:39:13: warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
37 |
38 | 	/// Shows the item URL.
39 | 	static let showURL: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showURL' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// Allows items in the list to be dragged.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:42:13: warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
40 |
41 | 	/// Allows items in the list to be dragged.
42 | 	static let draggable: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'draggable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | 	/// Closes the launcher upon selecting an item.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:45:13: warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
43 |
44 | 	/// Closes the launcher upon selecting an item.
45 | 	static let closeWindow: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'closeWindow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:48:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
46 |
47 | 	/// The default options used.
48 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:54:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
52 |
53 | 	/// All available options.
54 | 	static let all: Self = [.searchable, .showIcon, .showURL, .draggable, .closeWindow]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:51:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
49 |
50 | 	/// No options.
51 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | 	/// All available options.
[42/48] Emitting module MoreWindows_Launcher
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:31:13: warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
29 | public extension LauncherActionOptions {
30 | 	/// Close the launcher window once the button action is executed.
31 | 	static let closeWindow: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'closeWindow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:34:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
32 |
33 | 	/// The default options used.
34 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 |
36 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:40:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
38 |
39 | 	/// All available options.
40 | 	static let all: Self = [.closeWindow]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | }
42 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:37:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
   :
35 |
36 | 	/// No options.
37 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:33:13: warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
31 | public extension LauncherWindowOptions {
32 | 	/// Displays the app icon.
33 | 	static let showIcon: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showIcon' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Displays the app name.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:36:13: warning: static property 'showName' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
34 |
35 | 	/// Displays the app name.
36 | 	static let showName: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showName' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showName' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// Displays the current app version.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:39:13: warning: static property 'showVersion' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
37 |
38 | 	/// Displays the current app version.
39 | 	static let showVersion: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'showVersion' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showVersion' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// Adds a list with recent documents.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:44:13: warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
42 | 	/// - SeeAlso:
43 | 	///   - ``RecentItemsOptions``
44 | 	static let showRecentDocuments: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showRecentDocuments' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// Adds a menu item to open the launcher.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:47:13: warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
45 |
46 | 	/// Adds a menu item to open the launcher.
47 | 	static let addMenuItem: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'addMenuItem' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// Only options pertaining to the "welcome" area of the launcher.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:50:13: warning: static property 'welcome' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
48 |
49 | 	/// Only options pertaining to the "welcome" area of the launcher.
50 | 	static let welcome: Self = [.showIcon, .showName, .showVersion]
   |             |- warning: static property 'welcome' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'welcome' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:53:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
51 |
52 | 	/// The default options used.
53 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:59:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
57 |
58 | 	/// All available options.
59 | 	static let all: Self = [.showIcon, .showName, .showVersion, .showRecentDocuments, .addMenuItem]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 | }
61 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:56:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
54 |
55 | 	/// No options.
56 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 |
58 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:33:13: warning: static property 'searchable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
31 | public extension RecentItemsOptions {
32 | 	/// Displays a search field for recent items.
33 | 	static let searchable: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'searchable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'searchable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Shows the item's file icon.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:36:13: warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
34 |
35 | 	/// Shows the item's file icon.
36 | 	static let showIcon: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showIcon' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// Shows the item URL.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:39:13: warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
37 |
38 | 	/// Shows the item URL.
39 | 	static let showURL: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showURL' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// Allows items in the list to be dragged.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:42:13: warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
40 |
41 | 	/// Allows items in the list to be dragged.
42 | 	static let draggable: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'draggable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | 	/// Closes the launcher upon selecting an item.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:45:13: warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
43 |
44 | 	/// Closes the launcher upon selecting an item.
45 | 	static let closeWindow: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'closeWindow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | 	/// The default options used.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:48:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
46 |
47 | 	/// The default options used.
48 | 	static let `default`: Self = .all
   |             |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'default' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 |
50 | 	/// No options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:54:13: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
52 |
53 | 	/// All available options.
54 | 	static let all: Self = [.searchable, .showIcon, .showURL, .draggable, .closeWindow]
   |             |- warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | }
56 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:51:13: warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
49 |
50 | 	/// No options.
51 | 	static let none: Self = []
   |             |- warning: static property 'none' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'none' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | 	/// All available options.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Environment/LauncherActionOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct LauncherActionOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: LauncherActionOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherActionOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherActionOptions.swift:19:15: note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
17 | /// - SeeAlso:
18 | ///   - ``Launcher``
19 | public struct LauncherActionOptions: OptionSet {
   |               `- note: consider making struct 'LauncherActionOptions' conform to the 'Sendable' protocol
20 | 	public let rawValue: UInt8
21 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Environment/LauncherWindowOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct LauncherWindowOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: LauncherWindowOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:21:15: note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Environment/RecentItemsOptionsKey.swift:4:13: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | private struct RecentItemsOptionsKey: EnvironmentKey {
 4 | 	static let defaultValue: RecentItemsOptions = .default
   |             |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'defaultValue' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 5 | }
 6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:21:15: note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Extensions/Logger+Extension.swift:5:63: warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
3 |
4 | extension Logger {
5 | 	static let launcherWindow: Logger = Logger(subsystem: Logger.moreWindowsSubsystem, category: "LauncherWindow")
  |                                                               `- warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
6 | }
7 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Extensions/Logger+Extension.swift:4:13: note: static property declared here
2 |
3 | public extension Logger {
4 | 	static var moreWindowsSubsystem: String = "MoreWindows"
  |             `- note: static property declared here
5 | }
6 |
[43/48] Compiling MoreWindows_Launcher WelcomeView.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:33:13: warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
31 | public extension LauncherWindowOptions {
32 | 	/// Displays the app icon.
33 | 	static let showIcon: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showIcon' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Displays the app name.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:36:13: warning: static property 'showName' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
34 |
35 | 	/// Displays the app name.
36 | 	static let showName: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showName' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showName' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// Displays the current app version.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:39:13: warning: static property 'showVersion' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
37 |
38 | 	/// Displays the current app version.
39 | 	static let showVersion: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'showVersion' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showVersion' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// Adds a list with recent documents.
[44/48] Compiling MoreWindows_Launcher RecentItemList.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:33:13: warning: static property 'searchable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
31 | public extension RecentItemsOptions {
32 | 	/// Displays a search field for recent items.
33 | 	static let searchable: Self = Self(rawValue: 1 << 0)
   |             |- warning: static property 'searchable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'searchable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | 	/// Shows the item's file icon.
[45/48] Compiling MoreWindows_Launcher Logger+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Extensions/Logger+Extension.swift:5:63: warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
3 |
4 | extension Logger {
5 | 	static let launcherWindow: Logger = Logger(subsystem: Logger.moreWindowsSubsystem, category: "LauncherWindow")
  |                                                               `- warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
6 | }
7 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Extensions/Logger+Extension.swift:4:13: note: static property declared here
2 |
3 | public extension Logger {
4 | 	static var moreWindowsSubsystem: String = "MoreWindows"
  |             `- note: static property declared here
5 | }
6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:47:13: warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
45 |
46 | 	/// Adds a menu item to open the launcher.
47 | 	static let addMenuItem: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'addMenuItem' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// Only options pertaining to the "welcome" area of the launcher.
[46/48] Compiling MoreWindows_Launcher Launcher.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Extensions/Logger+Extension.swift:5:63: warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
3 |
4 | extension Logger {
5 | 	static let launcherWindow: Logger = Logger(subsystem: Logger.moreWindowsSubsystem, category: "LauncherWindow")
  |                                                               `- warning: reference to static property 'moreWindowsSubsystem' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
6 | }
7 |
/Users/admin/builder/spi-builder-workspace/Sources/_MoreWindowsCommon/Extensions/Logger+Extension.swift:4:13: note: static property declared here
2 |
3 | public extension Logger {
4 | 	static var moreWindowsSubsystem: String = "MoreWindows"
  |             `- note: static property declared here
5 | }
6 |
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:47:13: warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
45 |
46 | 	/// Adds a menu item to open the launcher.
47 | 	static let addMenuItem: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'addMenuItem' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'addMenuItem' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | 	/// Only options pertaining to the "welcome" area of the launcher.
[47/48] Compiling MoreWindows_Launcher ContentView.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:44:13: warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
42 | 	/// - SeeAlso:
43 | 	///   - ``RecentItemsOptions``
44 | 	static let showRecentDocuments: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showRecentDocuments' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// Adds a menu item to open the launcher.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:42:13: warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
40 |
41 | 	/// Allows items in the list to be dragged.
42 | 	static let draggable: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'draggable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | 	/// Closes the launcher upon selecting an item.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:36:13: warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
34 |
35 | 	/// Shows the item's file icon.
36 | 	static let showIcon: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showIcon' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// Shows the item URL.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:39:13: warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
37 |
38 | 	/// Shows the item URL.
39 | 	static let showURL: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showURL' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// Allows items in the list to be dragged.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:45:13: warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
43 |
44 | 	/// Closes the launcher upon selecting an item.
45 | 	static let closeWindow: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'closeWindow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | 	/// The default options used.
[48/48] Compiling MoreWindows_Launcher RecentItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/LauncherWindowOptions.swift:44:13: warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct LauncherWindowOptions: OptionSet {
   |               `- note: consider making struct 'LauncherWindowOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
42 | 	/// - SeeAlso:
43 | 	///   - ``RecentItemsOptions``
44 | 	static let showRecentDocuments: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'showRecentDocuments' is not concurrency-safe because non-'Sendable' type 'LauncherWindowOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showRecentDocuments' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | 	/// Adds a menu item to open the launcher.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:42:13: warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
40 |
41 | 	/// Allows items in the list to be dragged.
42 | 	static let draggable: Self = Self(rawValue: 1 << 3)
   |             |- warning: static property 'draggable' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'draggable' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
43 |
44 | 	/// Closes the launcher upon selecting an item.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:36:13: warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
34 |
35 | 	/// Shows the item's file icon.
36 | 	static let showIcon: Self = Self(rawValue: 1 << 1)
   |             |- warning: static property 'showIcon' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showIcon' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 |
38 | 	/// Shows the item URL.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:39:13: warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
37 |
38 | 	/// Shows the item URL.
39 | 	static let showURL: Self = Self(rawValue: 1 << 2)
   |             |- warning: static property 'showURL' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'showURL' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | 	/// Allows items in the list to be dragged.
/Users/admin/builder/spi-builder-workspace/Sources/MoreWindows_Launcher/Data/RecentItemsOptions.swift:45:13: warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
19 | /// - SeeAlso:
20 | ///   - ``Launcher``
21 | public struct RecentItemsOptions: OptionSet {
   |               `- note: consider making struct 'RecentItemsOptions' conform to the 'Sendable' protocol
22 | 	public let rawValue: UInt8
23 |
   :
43 |
44 | 	/// Closes the launcher upon selecting an item.
45 | 	static let closeWindow: Self = Self(rawValue: 1 << 4)
   |             |- warning: static property 'closeWindow' is not concurrency-safe because non-'Sendable' type 'RecentItemsOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |             |- note: annotate 'closeWindow' with '@MainActor' if property should only be accessed from the main actor
   |             `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | 	/// The default options used.
[49/50] Emitting module MoreWindows
[50/50] Compiling MoreWindows _export.swift
Build complete! (21.68s)
Build complete.
{
  "default_localization" : "en",
  "dependencies" : [
  ],
  "manifest_display_name" : "MoreWindows",
  "name" : "MoreWindows",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "MoreWindows",
      "targets" : [
        "MoreWindows"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "MoreWindows_About",
      "targets" : [
        "MoreWindows_About"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "MoreWindows_Launcher",
      "targets" : [
        "MoreWindows_Launcher"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "_MoreWindowsCommon",
      "module_type" : "SwiftTarget",
      "name" : "_MoreWindowsCommon",
      "path" : "Sources/_MoreWindowsCommon",
      "product_memberships" : [
        "MoreWindows",
        "MoreWindows_About",
        "MoreWindows_Launcher"
      ],
      "sources" : [
        "Data/AppIconOptions.swift",
        "Data/AppVersionOptions.swift",
        "Data/DismissWindowAction.swift",
        "Data/PathReductionMode.swift",
        "Data/PathReductionOption.swift",
        "Data/WindowType.swift",
        "Environment/AppIconOptionsKey.swift",
        "Environment/AppVersionOptionsKey.swift",
        "Environment/DismissWindowKey.swift",
        "Extensions/Logger+Extension.swift",
        "Extensions/URL+Extension.swift",
        "Helpers/AppInformation.swift",
        "Views/AppIconView.swift",
        "Views/AppVersionView.swift",
        "Views/Divided.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "MoreWindows_Launcher",
      "module_type" : "SwiftTarget",
      "name" : "MoreWindows_Launcher",
      "path" : "Sources/MoreWindows_Launcher",
      "product_memberships" : [
        "MoreWindows",
        "MoreWindows_Launcher"
      ],
      "sources" : [
        "Data/LauncherActionOptions.swift",
        "Data/LauncherWindowOptions.swift",
        "Data/LauncherWindowSize.swift",
        "Data/RecentItemsOptions.swift",
        "Environment/LauncherActionOptionsKey.swift",
        "Environment/LauncherWindowOptionsKey.swift",
        "Environment/LauncherWindowSizeKey.swift",
        "Environment/RecentItemsOptionsKey.swift",
        "Extensions/Logger+Extension.swift",
        "Launcher.swift",
        "Views/ContentView.swift",
        "Views/RecentItem.swift",
        "Views/RecentItemList.swift",
        "Views/Styles/LauncherButtonStyle.swift",
        "Views/Styles/LauncherLabelStyle.swift",
        "Views/WelcomeView.swift"
      ],
      "target_dependencies" : [
        "_MoreWindowsCommon"
      ],
      "type" : "library"
    },
    {
      "c99name" : "MoreWindows_About",
      "module_type" : "SwiftTarget",
      "name" : "MoreWindows_About",
      "path" : "Sources/MoreWindows_About",
      "product_memberships" : [
        "MoreWindows",
        "MoreWindows_About"
      ],
      "sources" : [
        "About.swift",
        "Data/AboutWindowLayout.swift",
        "Data/AboutWindowOptions.swift",
        "Environment/AboutWindowLayoutKey.swift",
        "Environment/AboutWindowOptionsKey.swift",
        "Extensions/Logger+Extension.swift",
        "Views/AppInfoSection.swift",
        "Views/ContentView.swift",
        "Views/VerticalContentView.swift"
      ],
      "target_dependencies" : [
        "_MoreWindowsCommon"
      ],
      "type" : "library"
    },
    {
      "c99name" : "MoreWindows",
      "module_type" : "SwiftTarget",
      "name" : "MoreWindows",
      "path" : "Sources/MoreWindows",
      "product_memberships" : [
        "MoreWindows"
      ],
      "sources" : [
        "_export.swift"
      ],
      "target_dependencies" : [
        "MoreWindows_About",
        "MoreWindows_Launcher"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.