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 swift-helpers, reference 2.2.0 (a099c6), with Swift 6.0 for macOS (SPM) on 4 Nov 2024 16:42:50 UTC.

Swift 6 data race errors: 2

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

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/processed-bits/swift-helpers.git
Reference: 2.2.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/processed-bits/swift-helpers
 * tag               2.2.0      -> FETCH_HEAD
HEAD is now at a099c6c Update code style
Cloned https://github.com/processed-bits/swift-helpers.git
Revision (git rev-parse @):
a099c6c6e7841656334bfe3e38c882168fa0c28f
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/processed-bits/swift-helpers.git at 2.2.0
Fetching https://github.com/apple/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.28s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.3 (3.34s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3153] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.22s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.67s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.3
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "swift-helpers",
      "name": "swift-helpers",
      "url": "https://github.com/processed-bits/swift-helpers.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-helpers",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/processed-bits/swift-helpers.git
[1/473] Fetching swift-helpers
Fetched https://github.com/processed-bits/swift-helpers.git from cache (0.81s)
Creating working copy for https://github.com/processed-bits/swift-helpers.git
Working copy of https://github.com/processed-bits/swift-helpers.git resolved at 2.2.0 (a099c6c)
warning: '.resolve-product-dependencies': dependency 'swift-helpers' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/processed-bits/swift-helpers.git
Running build ...
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
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version--7754E27361AE5C74.txt
[5/68] Emitting module Helpers
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger+ExtendedLogger.swift:6:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | extension LegacyLogger: ExtendedLogger {
 5 |
 6 | 	public static let `default` = Self()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' 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
 7 |
 8 | 	// MARK: Logging a Point
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger.swift:8:15: note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  6 | /// An object for writing interpolated string messages to the unified logging system using a legacy logging function.
  7 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
  8 | public struct LegacyLogger {
    |               `- note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  9 |
 10 | 	private let osLog: OSLog
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[6/74] Compiling Helpers Thread+Debug.swift
[7/74] Compiling Helpers ThreadsCounter.swift
[8/74] Compiling Helpers dumpOutput.swift
[9/74] Compiling Helpers preconditionUnwrap.swift
[10/74] Compiling Helpers ExitCodeProtocol.swift
[11/74] Compiling Helpers ExitCodeProvidingError.swift
[12/74] Compiling Helpers exit.swift
[13/74] Compiling Helpers NSObject+Bindings.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[14/74] Compiling Helpers IndexPath+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[15/74] Compiling Helpers FileHandle+TextOutputStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[16/74] Compiling Helpers BlockOperation+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[17/74] Compiling Helpers OperationQueue+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[18/74] Compiling Helpers UserDefault.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[19/74] Compiling Helpers UserDefaultRawRepresentable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[20/74] Compiling Helpers print.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[21/74] Compiling Helpers Collection+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[22/74] Compiling Helpers KeyValuePairs+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[23/74] Compiling Helpers Regex+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[24/74] Compiling Helpers Sequence+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[25/74] Compiling Helpers Set+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[26/74] Compiling Helpers String+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[27/74] Compiling Helpers String+Padding.swift
[28/74] Compiling Helpers String+Truncation.swift
[29/74] Compiling Helpers StringProtocol+Case.swift
[30/74] Compiling Helpers StringProtocol+Extensions.swift
[31/74] Compiling Helpers StringProtocol+Padding.swift
[32/74] Compiling Helpers Unicode.Scalar+Extensions.swift
[33/74] Compiling Helpers Process+Extensions.swift
[34/74] Compiling Helpers Process+Output.swift
[35/74] Compiling Helpers Bundle+Extensions.swift
[36/74] Compiling Helpers Timer+Extensions.swift
[37/74] Compiling Helpers NSRegularExpression+Extensions.swift
[38/74] Compiling Helpers NSTextCheckingResult+Extensions.swift
[39/74] Compiling Helpers String+NSRegularExpression.swift
[40/74] Compiling Helpers LegacyLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:44:67: warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | /// An object that collects buffered output using pipes.
 9 | @available(iOS 8.0, macOS 10.10, macCatalyst 13.0, tvOS 9.0, visionOS 1.0, watchOS 2.0, *)
10 | public class BufferedOutputCollector {
   |              `- note: class 'BufferedOutputCollector' does not conform to the 'Sendable' protocol
11 |
12 | 	private let bufferedOutput: BufferedOutput
   :
42 | 			let data = fileHandle.availableData
43 | 			// Empty data signals EOF.
44 | 			guard !data.isEmpty, let string = String(data: data, encoding: encoding) else {
   |                                                                   `- warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 | 				// Stop reading the pipe, leave the group.
46 | 				fileHandle.readabilityHandler = nil
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:50:46: warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 | 				return
49 | 			}
50 | 			bufferedOutput.append(string: string, to: streamKind)
   |                                              `- warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | 		}
52 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/OutputStreamKind.swift:5:13: note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 3 |
 4 | /// Output stream kind.
 5 | public enum OutputStreamKind {
   |             `- note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 6 | 	/// Standard output.
 7 | 	case standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[41/74] Compiling Helpers Logger+ExtendedLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:44:67: warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | /// An object that collects buffered output using pipes.
 9 | @available(iOS 8.0, macOS 10.10, macCatalyst 13.0, tvOS 9.0, visionOS 1.0, watchOS 2.0, *)
10 | public class BufferedOutputCollector {
   |              `- note: class 'BufferedOutputCollector' does not conform to the 'Sendable' protocol
11 |
12 | 	private let bufferedOutput: BufferedOutput
   :
42 | 			let data = fileHandle.availableData
43 | 			// Empty data signals EOF.
44 | 			guard !data.isEmpty, let string = String(data: data, encoding: encoding) else {
   |                                                                   `- warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 | 				// Stop reading the pipe, leave the group.
46 | 				fileHandle.readabilityHandler = nil
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:50:46: warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 | 				return
49 | 			}
50 | 			bufferedOutput.append(string: string, to: streamKind)
   |                                              `- warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | 		}
52 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/OutputStreamKind.swift:5:13: note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 3 |
 4 | /// Output stream kind.
 5 | public enum OutputStreamKind {
   |             `- note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 6 | 	/// Standard output.
 7 | 	case standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[42/74] Compiling Helpers BufferedOutput.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:44:67: warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | /// An object that collects buffered output using pipes.
 9 | @available(iOS 8.0, macOS 10.10, macCatalyst 13.0, tvOS 9.0, visionOS 1.0, watchOS 2.0, *)
10 | public class BufferedOutputCollector {
   |              `- note: class 'BufferedOutputCollector' does not conform to the 'Sendable' protocol
11 |
12 | 	private let bufferedOutput: BufferedOutput
   :
42 | 			let data = fileHandle.availableData
43 | 			// Empty data signals EOF.
44 | 			guard !data.isEmpty, let string = String(data: data, encoding: encoding) else {
   |                                                                   `- warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 | 				// Stop reading the pipe, leave the group.
46 | 				fileHandle.readabilityHandler = nil
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:50:46: warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 | 				return
49 | 			}
50 | 			bufferedOutput.append(string: string, to: streamKind)
   |                                              `- warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | 		}
52 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/OutputStreamKind.swift:5:13: note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 3 |
 4 | /// Output stream kind.
 5 | public enum OutputStreamKind {
   |             `- note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 6 | 	/// Standard output.
 7 | 	case standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[43/74] Compiling Helpers BufferedOutputCollector.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:44:67: warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | /// An object that collects buffered output using pipes.
 9 | @available(iOS 8.0, macOS 10.10, macCatalyst 13.0, tvOS 9.0, visionOS 1.0, watchOS 2.0, *)
10 | public class BufferedOutputCollector {
   |              `- note: class 'BufferedOutputCollector' does not conform to the 'Sendable' protocol
11 |
12 | 	private let bufferedOutput: BufferedOutput
   :
42 | 			let data = fileHandle.availableData
43 | 			// Empty data signals EOF.
44 | 			guard !data.isEmpty, let string = String(data: data, encoding: encoding) else {
   |                                                                   `- warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 | 				// Stop reading the pipe, leave the group.
46 | 				fileHandle.readabilityHandler = nil
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:50:46: warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 | 				return
49 | 			}
50 | 			bufferedOutput.append(string: string, to: streamKind)
   |                                              `- warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | 		}
52 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/OutputStreamKind.swift:5:13: note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 3 |
 4 | /// Output stream kind.
 5 | public enum OutputStreamKind {
   |             `- note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 6 | 	/// Standard output.
 7 | 	case standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[44/74] Compiling Helpers BufferedOutputProviding.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:44:67: warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | /// An object that collects buffered output using pipes.
 9 | @available(iOS 8.0, macOS 10.10, macCatalyst 13.0, tvOS 9.0, visionOS 1.0, watchOS 2.0, *)
10 | public class BufferedOutputCollector {
   |              `- note: class 'BufferedOutputCollector' does not conform to the 'Sendable' protocol
11 |
12 | 	private let bufferedOutput: BufferedOutput
   :
42 | 			let data = fileHandle.availableData
43 | 			// Empty data signals EOF.
44 | 			guard !data.isEmpty, let string = String(data: data, encoding: encoding) else {
   |                                                                   `- warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 | 				// Stop reading the pipe, leave the group.
46 | 				fileHandle.readabilityHandler = nil
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:50:46: warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 | 				return
49 | 			}
50 | 			bufferedOutput.append(string: string, to: streamKind)
   |                                              `- warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | 		}
52 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/OutputStreamKind.swift:5:13: note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 3 |
 4 | /// Output stream kind.
 5 | public enum OutputStreamKind {
   |             `- note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 6 | 	/// Standard output.
 7 | 	case standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[45/74] Compiling Helpers CLI.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:44:67: warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | /// An object that collects buffered output using pipes.
 9 | @available(iOS 8.0, macOS 10.10, macCatalyst 13.0, tvOS 9.0, visionOS 1.0, watchOS 2.0, *)
10 | public class BufferedOutputCollector {
   |              `- note: class 'BufferedOutputCollector' does not conform to the 'Sendable' protocol
11 |
12 | 	private let bufferedOutput: BufferedOutput
   :
42 | 			let data = fileHandle.availableData
43 | 			// Empty data signals EOF.
44 | 			guard !data.isEmpty, let string = String(data: data, encoding: encoding) else {
   |                                                                   `- warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 | 				// Stop reading the pipe, leave the group.
46 | 				fileHandle.readabilityHandler = nil
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:50:46: warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 | 				return
49 | 			}
50 | 			bufferedOutput.append(string: string, to: streamKind)
   |                                              `- warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | 		}
52 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/OutputStreamKind.swift:5:13: note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 3 |
 4 | /// Output stream kind.
 5 | public enum OutputStreamKind {
   |             `- note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 6 | 	/// Standard output.
 7 | 	case standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[46/74] Compiling Helpers OutputStreamKind.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:44:67: warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 8 | /// An object that collects buffered output using pipes.
 9 | @available(iOS 8.0, macOS 10.10, macCatalyst 13.0, tvOS 9.0, visionOS 1.0, watchOS 2.0, *)
10 | public class BufferedOutputCollector {
   |              `- note: class 'BufferedOutputCollector' does not conform to the 'Sendable' protocol
11 |
12 | 	private let bufferedOutput: BufferedOutput
   :
42 | 			let data = fileHandle.availableData
43 | 			// Empty data signals EOF.
44 | 			guard !data.isEmpty, let string = String(data: data, encoding: encoding) else {
   |                                                                   `- warning: capture of 'self' with non-sendable type 'BufferedOutputCollector' in a `@Sendable` closure; this is an error in the Swift 6 language mode
45 | 				// Stop reading the pipe, leave the group.
46 | 				fileHandle.readabilityHandler = nil
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/BufferedOutputCollector.swift:50:46: warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
48 | 				return
49 | 			}
50 | 			bufferedOutput.append(string: string, to: streamKind)
   |                                              `- warning: capture of 'streamKind' with non-sendable type 'OutputStreamKind' in a `@Sendable` closure; this is an error in the Swift 6 language mode
51 | 		}
52 | 	}
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/OutputStreamKind.swift:5:13: note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 3 |
 4 | /// Output stream kind.
 5 | public enum OutputStreamKind {
   |             `- note: consider making enum 'OutputStreamKind' conform to the 'Sendable' protocol
 6 | 	/// Standard output.
 7 | 	case standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Output/CLI.swift:18:20: warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 | 	///
17 | 	/// Together with conformance to [`TextOutputStream`](https://developer.apple.com/documentation/swift/textoutputstream) protocol this allows using [`print(_:separator:terminator:to:)`](https://developer.apple.com/documentation/swift/print(_:separator:terminator:to:)) with this handle as a target.
18 | 	public static var standardError = FileHandle.standardError
   |                    |- warning: static property 'standardError' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                    |- note: convert 'standardError' to a 'let' constant to make 'Sendable' shared state immutable
   |                    |- note: annotate 'standardError' with '@MainActor' if property should only be accessed from the main actor
   |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |
20 | }
[47/74] Compiling Helpers NSManagedObject+Extensions.swift
[48/74] Compiling Helpers NSManagedObjectContext+Extensions.swift
[49/74] Compiling Helpers CGFloat+Extensions.swift
[50/74] Compiling Helpers CGSize+Extensions.swift
[51/74] Compiling Helpers CallsCounter.swift
[52/74] Compiling Helpers SplitStopwatch.swift
[53/74] Compiling Helpers Stopwatch.swift
[54/74] Compiling Helpers NSImage+Extensions.swift
[55/74] Compiling Helpers NSResponder+Extensions.swift
[56/74] Compiling Helpers NSTableView+Extensions.swift
[57/74] Compiling Helpers NSView+Extensions.swift
[58/74] Compiling Helpers Atomic.swift
[59/74] Compiling Helpers CALayer+Extensions.swift
[60/74] Compiling Helpers CAMediaTiming+Extensions.swift
[61/74] Compiling Helpers HTTPURLResponse+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger+ExtendedLogger.swift:6:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | extension LegacyLogger: ExtendedLogger {
 5 |
 6 | 	public static let `default` = Self()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' 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
 7 |
 8 | 	// MARK: Logging a Point
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger.swift:8:15: note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  6 | /// An object for writing interpolated string messages to the unified logging system using a legacy logging function.
  7 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
  8 | public struct LegacyLogger {
    |               `- note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  9 |
 10 | 	private let osLog: OSLog
[62/74] Compiling Helpers URL+Comparable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger+ExtendedLogger.swift:6:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | extension LegacyLogger: ExtendedLogger {
 5 |
 6 | 	public static let `default` = Self()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' 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
 7 |
 8 | 	// MARK: Logging a Point
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger.swift:8:15: note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  6 | /// An object for writing interpolated string messages to the unified logging system using a legacy logging function.
  7 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
  8 | public struct LegacyLogger {
    |               `- note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  9 |
 10 | 	private let osLog: OSLog
[63/74] Compiling Helpers URL+HomeDirectory.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger+ExtendedLogger.swift:6:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | extension LegacyLogger: ExtendedLogger {
 5 |
 6 | 	public static let `default` = Self()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' 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
 7 |
 8 | 	// MARK: Logging a Point
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger.swift:8:15: note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  6 | /// An object for writing interpolated string messages to the unified logging system using a legacy logging function.
  7 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
  8 | public struct LegacyLogger {
    |               `- note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  9 |
 10 | 	private let osLog: OSLog
[64/74] Compiling Helpers URL+Relationships.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger+ExtendedLogger.swift:6:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | extension LegacyLogger: ExtendedLogger {
 5 |
 6 | 	public static let `default` = Self()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' 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
 7 |
 8 | 	// MARK: Logging a Point
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger.swift:8:15: note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  6 | /// An object for writing interpolated string messages to the unified logging system using a legacy logging function.
  7 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
  8 | public struct LegacyLogger {
    |               `- note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  9 |
 10 | 	private let osLog: OSLog
[65/74] Compiling Helpers URLBookmark.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger+ExtendedLogger.swift:6:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | extension LegacyLogger: ExtendedLogger {
 5 |
 6 | 	public static let `default` = Self()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' 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
 7 |
 8 | 	// MARK: Logging a Point
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger.swift:8:15: note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  6 | /// An object for writing interpolated string messages to the unified logging system using a legacy logging function.
  7 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
  8 | public struct LegacyLogger {
    |               `- note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  9 |
 10 | 	private let osLog: OSLog
[66/74] Compiling Helpers ExtendedLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger+ExtendedLogger.swift:6:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | extension LegacyLogger: ExtendedLogger {
 5 |
 6 | 	public static let `default` = Self()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' 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
 7 |
 8 | 	// MARK: Logging a Point
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger.swift:8:15: note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  6 | /// An object for writing interpolated string messages to the unified logging system using a legacy logging function.
  7 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
  8 | public struct LegacyLogger {
    |               `- note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  9 |
 10 | 	private let osLog: OSLog
[67/74] Compiling Helpers LegacyLogger+ExtendedLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger+ExtendedLogger.swift:6:20: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' may have shared mutable state; this is an error in the Swift 6 language mode
 4 | extension LegacyLogger: ExtendedLogger {
 5 |
 6 | 	public static let `default` = Self()
   |                    |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'LegacyLogger' 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
 7 |
 8 | 	// MARK: Logging a Point
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Logging/LegacyLogger.swift:8:15: note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  6 | /// An object for writing interpolated string messages to the unified logging system using a legacy logging function.
  7 | @available(macOS 10.12, iOS 10.0, watchOS 3.0, tvOS 10.0, *)
  8 | public struct LegacyLogger {
    |               `- note: consider making struct 'LegacyLogger' conform to the 'Sendable' protocol
  9 |
 10 | 	private let osLog: OSLog
[68/74] Compiling Helpers NSTreeController+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:28: warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                            `- warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSGroupTouchBarItem:17:35: note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
15 |     open class func groupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier, items: [NSTouchBarItem], allowedCompressionOptions: NSUserInterfaceCompressionOptions) -> Self
16 |     @available(macOS 10.13, *)
17 |     @MainActor public convenience init(alertStyleWithIdentifier identifier: NSTouchBarItem.Identifier)
   |                                   `- note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
18 |     @available(macOS 10.13, *)
19 |     @available(swift, obsoleted: 4, renamed: "init(alertStyleWithIdentifier:)")
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:74: warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                                                                          `- warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSTouchBarItem:7:25: note: property declared here
 5 |     @available(*, unavailable)
 6 |     public convenience init()
 7 |     @MainActor open var identifier: NSTouchBarItem.Identifier { get }
   |                         `- note: property declared here
 8 |     open var visibilityPriority: NSTouchBarItem.Priority { get set }
 9 |     open var view: NSView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:22: warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                      `- warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: mutation of this property is only permitted within the actor
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: mutation of this property is only permitted within the actor
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:38: warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                                      `- warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: property declared here
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: property declared here
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
[69/74] Compiling Helpers EventMonitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:28: warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                            `- warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSGroupTouchBarItem:17:35: note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
15 |     open class func groupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier, items: [NSTouchBarItem], allowedCompressionOptions: NSUserInterfaceCompressionOptions) -> Self
16 |     @available(macOS 10.13, *)
17 |     @MainActor public convenience init(alertStyleWithIdentifier identifier: NSTouchBarItem.Identifier)
   |                                   `- note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
18 |     @available(macOS 10.13, *)
19 |     @available(swift, obsoleted: 4, renamed: "init(alertStyleWithIdentifier:)")
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:74: warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                                                                          `- warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSTouchBarItem:7:25: note: property declared here
 5 |     @available(*, unavailable)
 6 |     public convenience init()
 7 |     @MainActor open var identifier: NSTouchBarItem.Identifier { get }
   |                         `- note: property declared here
 8 |     open var visibilityPriority: NSTouchBarItem.Priority { get set }
 9 |     open var view: NSView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:22: warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                      `- warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: mutation of this property is only permitted within the actor
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: mutation of this property is only permitted within the actor
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:38: warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                                      `- warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: property declared here
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: property declared here
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
[70/74] Compiling Helpers NSMenuItem+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:28: warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                            `- warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSGroupTouchBarItem:17:35: note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
15 |     open class func groupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier, items: [NSTouchBarItem], allowedCompressionOptions: NSUserInterfaceCompressionOptions) -> Self
16 |     @available(macOS 10.13, *)
17 |     @MainActor public convenience init(alertStyleWithIdentifier identifier: NSTouchBarItem.Identifier)
   |                                   `- note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
18 |     @available(macOS 10.13, *)
19 |     @available(swift, obsoleted: 4, renamed: "init(alertStyleWithIdentifier:)")
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:74: warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                                                                          `- warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSTouchBarItem:7:25: note: property declared here
 5 |     @available(*, unavailable)
 6 |     public convenience init()
 7 |     @MainActor open var identifier: NSTouchBarItem.Identifier { get }
   |                         `- note: property declared here
 8 |     open var visibilityPriority: NSTouchBarItem.Priority { get set }
 9 |     open var view: NSView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:22: warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                      `- warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: mutation of this property is only permitted within the actor
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: mutation of this property is only permitted within the actor
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:38: warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                                      `- warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: property declared here
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: property declared here
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
[71/74] Compiling Helpers AlertStyleGroupTouchBarItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:28: warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                            `- warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSGroupTouchBarItem:17:35: note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
15 |     open class func groupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier, items: [NSTouchBarItem], allowedCompressionOptions: NSUserInterfaceCompressionOptions) -> Self
16 |     @available(macOS 10.13, *)
17 |     @MainActor public convenience init(alertStyleWithIdentifier identifier: NSTouchBarItem.Identifier)
   |                                   `- note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
18 |     @available(macOS 10.13, *)
19 |     @available(swift, obsoleted: 4, renamed: "init(alertStyleWithIdentifier:)")
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:74: warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                                                                          `- warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSTouchBarItem:7:25: note: property declared here
 5 |     @available(*, unavailable)
 6 |     public convenience init()
 7 |     @MainActor open var identifier: NSTouchBarItem.Identifier { get }
   |                         `- note: property declared here
 8 |     open var visibilityPriority: NSTouchBarItem.Priority { get set }
 9 |     open var view: NSView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:22: warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                      `- warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: mutation of this property is only permitted within the actor
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: mutation of this property is only permitted within the actor
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:38: warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                                      `- warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: property declared here
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: property declared here
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
[72/74] Compiling Helpers NSTouchBar+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:28: warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                            `- warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSGroupTouchBarItem:17:35: note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
15 |     open class func groupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier, items: [NSTouchBarItem], allowedCompressionOptions: NSUserInterfaceCompressionOptions) -> Self
16 |     @available(macOS 10.13, *)
17 |     @MainActor public convenience init(alertStyleWithIdentifier identifier: NSTouchBarItem.Identifier)
   |                                   `- note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
18 |     @available(macOS 10.13, *)
19 |     @available(swift, obsoleted: 4, renamed: "init(alertStyleWithIdentifier:)")
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:74: warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                                                                          `- warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSTouchBarItem:7:25: note: property declared here
 5 |     @available(*, unavailable)
 6 |     public convenience init()
 7 |     @MainActor open var identifier: NSTouchBarItem.Identifier { get }
   |                         `- note: property declared here
 8 |     open var visibilityPriority: NSTouchBarItem.Priority { get set }
 9 |     open var view: NSView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:22: warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                      `- warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: mutation of this property is only permitted within the actor
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: mutation of this property is only permitted within the actor
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:38: warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                                      `- warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: property declared here
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: property declared here
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
[73/74] Compiling Helpers ModalView.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:28: warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                            `- warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSGroupTouchBarItem:17:35: note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
15 |     open class func groupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier, items: [NSTouchBarItem], allowedCompressionOptions: NSUserInterfaceCompressionOptions) -> Self
16 |     @available(macOS 10.13, *)
17 |     @MainActor public convenience init(alertStyleWithIdentifier identifier: NSTouchBarItem.Identifier)
   |                                   `- note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
18 |     @available(macOS 10.13, *)
19 |     @available(swift, obsoleted: 4, renamed: "init(alertStyleWithIdentifier:)")
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:74: warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                                                                          `- warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSTouchBarItem:7:25: note: property declared here
 5 |     @available(*, unavailable)
 6 |     public convenience init()
 7 |     @MainActor open var identifier: NSTouchBarItem.Identifier { get }
   |                         `- note: property declared here
 8 |     open var visibilityPriority: NSTouchBarItem.Priority { get set }
 9 |     open var view: NSView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:22: warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                      `- warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: mutation of this property is only permitted within the actor
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: mutation of this property is only permitted within the actor
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:38: warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                                      `- warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: property declared here
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: property declared here
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
[74/74] Compiling Helpers NSBrowser+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:28: warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                            `- warning: call to main actor-isolated initializer 'init(alertStyleWithIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSGroupTouchBarItem:17:35: note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
15 |     open class func groupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier, items: [NSTouchBarItem], allowedCompressionOptions: NSUserInterfaceCompressionOptions) -> Self
16 |     @available(macOS 10.13, *)
17 |     @MainActor public convenience init(alertStyleWithIdentifier identifier: NSTouchBarItem.Identifier)
   |                                   `- note: calls to initializer 'init(alertStyleWithIdentifier:)' from outside of its actor context are implicitly asynchronous
18 |     @available(macOS 10.13, *)
19 |     @available(swift, obsoleted: 4, renamed: "init(alertStyleWithIdentifier:)")
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:15:74: warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
13 | 		// Replaces existing group item with a group item configured to match system alerts.
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
   |                                                                          `- warning: main actor-isolated property 'identifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
17 | 			return groupTouchBarItem
AppKit.NSTouchBarItem:7:25: note: property declared here
 5 |     @available(*, unavailable)
 6 |     public convenience init()
 7 |     @MainActor open var identifier: NSTouchBarItem.Identifier { get }
   |                         `- note: property declared here
 8 |     open var visibilityPriority: NSTouchBarItem.Priority { get set }
 9 |     open var view: NSView? { get }
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:22: warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                      `- warning: main actor-isolated property 'groupTouchBar' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: mutation of this property is only permitted within the actor
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: mutation of this property is only permitted within the actor
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift:16:38: warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
14 | 		override public func awakeAfter(using coder: NSCoder) -> Any? {
15 | 			let groupTouchBarItem = NSGroupTouchBarItem(alertStyleWithIdentifier: identifier)
16 | 			groupTouchBarItem.groupTouchBar = groupTouchBar
   |                                      `- warning: main actor-isolated property 'groupTouchBar' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
17 | 			return groupTouchBarItem
18 | 		}
AppKit.NSGroupTouchBarItem:24:14: note: property declared here
22 |     @available(swift, obsoleted: 3, renamed: "init(alertStyleWithIdentifier:)")
23 |     open class func alertStyleGroupItemWithIdentifier(_ identifier: NSTouchBarItem.Identifier) -> Self
24 |     open var groupTouchBar: NSTouchBar { get set }
   |              `- note: property declared here
25 |     open var customizationLabel: String! { get set }
26 |     @available(macOS 10.13, *)
Build complete! (34.77s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    }
  ],
  "manifest_display_name" : "swift-helpers",
  "name" : "swift-helpers",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Helpers",
      "targets" : [
        "Helpers"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HelpersTests",
      "module_type" : "SwiftTarget",
      "name" : "HelpersTests",
      "path" : "Tests/HelpersTests",
      "sources" : [
        "AppKitTests/NSMenuItemTests.swift",
        "ConcurrencyTests/AtomicTests.swift",
        "ControllersTests/NSTreeControllerTests.swift",
        "CoreGraphicsTests/CGSizeTests.swift",
        "DebuggingTests/CallsCounterTests.swift",
        "DebuggingTests/SplitStopwatchTests.swift",
        "DebuggingTests/StopwatchTests.swift",
        "DebuggingTests/ThreadsCounterTests.swift",
        "FoundationTests/IndexPathTests.swift",
        "FoundationTests/NSRegularExpressionTests.swift",
        "FoundationTests/ProcessAsyncTests.swift",
        "FoundationTests/ProcessOutputTests.swift",
        "FoundationTests/URLHomeDirectoryTests.swift",
        "FoundationTests/URLRelationshipsTests.swift",
        "FoundationTests/URLTests.swift",
        "FoundationTests/UserDefaultRawRepresentableTests.swift",
        "FoundationTests/UserDefaultTests.swift",
        "LoggingTests/LegacyLoggerTests.swift",
        "LoggingTests/LoggerTests.swift",
        "OutputTests/BufferedOutputTests.swift",
        "StandardLibraryTests/CollectionTests.swift",
        "StandardLibraryTests/RegexTests.swift",
        "StandardLibraryTests/SequenceTests.swift",
        "StandardLibraryTests/SetTests.swift",
        "StandardLibraryTests/StringProtocolTests.swift",
        "StandardLibraryTests/StringTests.swift"
      ],
      "target_dependencies" : [
        "Helpers"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Helpers",
      "module_type" : "SwiftTarget",
      "name" : "Helpers",
      "path" : "Sources/Helpers",
      "product_memberships" : [
        "Helpers"
      ],
      "sources" : [
        "AppKit/Controllers/NSTreeController+Extensions.swift",
        "AppKit/Input/EventMonitor.swift",
        "AppKit/Menus/NSMenuItem+Extensions.swift",
        "AppKit/TouchBar/AlertStyleGroupTouchBarItem.swift",
        "AppKit/TouchBar/NSTouchBar+Extensions.swift",
        "AppKit/Views/ModalView.swift",
        "AppKit/Views/NSBrowser+Extensions.swift",
        "AppKit/Views/NSImage+Extensions.swift",
        "AppKit/Views/NSResponder+Extensions.swift",
        "AppKit/Views/NSTableView+Extensions.swift",
        "AppKit/Views/NSView+Extensions.swift",
        "Concurrency/Atomic.swift",
        "CoreAnimation/CALayer+Extensions.swift",
        "CoreAnimation/CAMediaTiming+Extensions.swift",
        "CoreData/NSManagedObject+Extensions.swift",
        "CoreData/NSManagedObjectContext+Extensions.swift",
        "CoreGraphics/CGFloat+Extensions.swift",
        "CoreGraphics/CGSize+Extensions.swift",
        "Debugging/CallsCounter.swift",
        "Debugging/SplitStopwatch.swift",
        "Debugging/Stopwatch.swift",
        "Debugging/Thread+Debug.swift",
        "Debugging/ThreadsCounter.swift",
        "Debugging/dumpOutput.swift",
        "Debugging/preconditionUnwrap.swift",
        "ExitCode/ExitCodeProtocol.swift",
        "ExitCode/ExitCodeProvidingError.swift",
        "ExitCode/exit.swift",
        "Foundation/Bindings/NSObject+Bindings.swift",
        "Foundation/Collections/IndexPath+Extensions.swift",
        "Foundation/FileSystem/FileHandle+TextOutputStream.swift",
        "Foundation/Operations/BlockOperation+Extensions.swift",
        "Foundation/Operations/OperationQueue+Extensions.swift",
        "Foundation/Preferences/UserDefault.swift",
        "Foundation/Preferences/UserDefaultRawRepresentable.swift",
        "Foundation/Processes/Process+Extensions.swift",
        "Foundation/Processes/Process+Output.swift",
        "Foundation/Resources/Bundle+Extensions.swift",
        "Foundation/Scheduling/Timer+Extensions.swift",
        "Foundation/StringsAndText/NSRegularExpression+Extensions.swift",
        "Foundation/StringsAndText/NSTextCheckingResult+Extensions.swift",
        "Foundation/StringsAndText/String+NSRegularExpression.swift",
        "Foundation/URLs/HTTPURLResponse+Extensions.swift",
        "Foundation/URLs/URL+Comparable.swift",
        "Foundation/URLs/URL+HomeDirectory.swift",
        "Foundation/URLs/URL+Relationships.swift",
        "Foundation/URLs/URLBookmark.swift",
        "Logging/ExtendedLogger.swift",
        "Logging/LegacyLogger+ExtendedLogger.swift",
        "Logging/LegacyLogger.swift",
        "Logging/Logger+ExtendedLogger.swift",
        "Output/BufferedOutput.swift",
        "Output/BufferedOutputCollector.swift",
        "Output/BufferedOutputProviding.swift",
        "Output/CLI.swift",
        "Output/OutputStreamKind.swift",
        "Output/print.swift",
        "StandardLibrary/Collection+Extensions.swift",
        "StandardLibrary/KeyValuePairs+Extensions.swift",
        "StandardLibrary/Regex+Extensions.swift",
        "StandardLibrary/Sequence+Extensions.swift",
        "StandardLibrary/Set+Extensions.swift",
        "StandardLibrary/String+Extensions.swift",
        "StandardLibrary/String+Padding.swift",
        "StandardLibrary/String+Truncation.swift",
        "StandardLibrary/StringProtocol+Case.swift",
        "StandardLibrary/StringProtocol+Extensions.swift",
        "StandardLibrary/StringProtocol+Padding.swift",
        "StandardLibrary/Unicode.Scalar+Extensions.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/processed-bits/swift-helpers/2.2.0
Repository:               processed-bits/swift-helpers
Swift version used:       6.0
		.package(url: "https://github.com/apple/swift-docc-plugin", from: "1.0.0"),
Target:                   Helpers
Extracting symbol information for 'Helpers'...
Finished extracting symbol information for 'Helpers'. (5.41s)
Building documentation for 'Helpers'...
warning: Parameter 'wrappedValue' is missing documentation
  --> ../Concurrency/Atomic.swift:26:170-26:170
24 |
25 | 	/// - Parameters:
26 + 	///   - qos: The quality-of-service level to use with the underlying global queue. This value determines the priority at which the system schedules tasks for execution.
   |        ╰─suggestion: Document 'wrappedValue' parameter
27 | 	public init(wrappedValue: Value, qos: DispatchQoS.QoSClass = .unspecified) {
28 | 		var label = String(describing: Self.self)
warning: Parameter 'file' is missing documentation
  --> ../CoreData/NSManagedObjectContext+Extensions.swift:90:54-90:54
88 | 		///
89 | 		/// - Parameters:
90 + 		///   - message: The string to print, may be `nil`.
   |                                                      ╰─suggestion: Document 'file' parameter
91 | 		func save(orFatalError message: String? = nil, file: StaticString = #file, line: UInt = #line) {
92 | 			do {
warning: Parameter 'line' is missing documentation
  --> ../CoreData/NSManagedObjectContext+Extensions.swift:90:54-90:54
88 | 		///
89 | 		/// - Parameters:
90 + 		///   - message: The string to print, may be `nil`.
   |                                                      ╰─suggestion: Document 'line' parameter
91 | 		func save(orFatalError message: String? = nil, file: StaticString = #file, line: UInt = #line) {
92 | 			do {
warning: Parameter 'line' is missing documentation
   --> ../CoreData/NSManagedObjectContext+Extensions.swift:102:54-102:54
100 | 		///
101 | 		/// - Parameters:
102 + 		///   - message: The string to print, may be `nil`.
    |                                                      ╰─suggestion: Document 'line' parameter
103 | 		func saveChanges(orFatalError message: String? = nil, file: StaticString = #file, line: UInt = #line) {
104 | 			guard hasChanges else {
warning: Parameter 'file' is missing documentation
   --> ../CoreData/NSManagedObjectContext+Extensions.swift:102:54-102:54
100 | 		///
101 | 		/// - Parameters:
102 + 		///   - message: The string to print, may be `nil`.
    |                                                      ╰─suggestion: Document 'file' parameter
103 | 		func saveChanges(orFatalError message: String? = nil, file: StaticString = #file, line: UInt = #line) {
104 | 			guard hasChanges else {
warning: External name 'start' used to document parameter
  --> ../Debugging/Stopwatch.swift:33:10-33:15
31 | 	///
32 | 	/// - Parameters:
33 + 	///   - start: The point in time for the start. The default is the current date and time. Pass `nil` if you will start the stopwatch later.
   |          ╰─suggestion: Replace 'start' with 'date'
34 | 	///   - precision: The number of decimal figures to display in the description. The default is `3`. Valid range is `0...6`.
35 | 	public required init(start date: Date? = .init(), precision: UInt8 = 3) {
warning: Parameter 'relativeURL' not found in initializer declaration
  --> ../Foundation/URLs/URLBookmark.swift:47:8-52:163
45 | 	///   - resolutionOptions: Options used when resolving bookmark data.
46 | 	///   - keys: Keys for resource values to be included when creating bookmark data.
47 + 	///   - relativeURL: The base URL that the bookmark data is relative to.
   |        ╰─suggestion: Remove 'relativeURL' parameter documentation
48 + 	///
49 + 	///     If you’re resolving a security-scoped bookmark to obtain a security-scoped URL, use this parameter as follows:
50 + 	///
51 + 	///     - To resolve an app-scoped bookmark, use a value of `nil`.
52 + 	///     - To resolve a document-scoped bookmark, use the *absolute* path (despite this parameter’s name) to the document from which you retrieved the bookmark.
53 | 	public init(
54 | 		data: Data? = nil,
warning: Parameter 'baseURL' is missing documentation
  --> ../Foundation/URLs/URLBookmark.swift:52:163-52:163
50 | 	///
51 | 	///     - To resolve an app-scoped bookmark, use a value of `nil`.
52 + 	///     - To resolve a document-scoped bookmark, use the *absolute* path (despite this parameter’s name) to the document from which you retrieved the bookmark.
   |                                                                                                                                                                   ╰─suggestion: Document 'baseURL' parameter
53 | 	public init(
54 | 		data: Data? = nil,
warning: Parameter 'termination' not found in instance method declaration
  --> ../StandardLibrary/String+Truncation.swift:21:10-21:21
19 | 	/// - Parameters:
20 | 	///   - maxLength: The maximum length of string to return. `maxLength` must be greater than or equal to zero.
21 + 	///   - termination: The termination string. Defaults to `String.defaultTruncationTerminator`.
   |          ╰─suggestion: Replace 'termination' with 'terminator'
22 | 	///   - removeCharacters: Unwanted characters to remove right before the termination string. Defaults to removing non-alphanumeric characters (spaces, punctuation etc.).
23 | 	func truncated(to maxLength: Int, with terminator: any StringProtocol = Self.defaultTruncationTerminator, removeCharacters: CharacterSet? = .alphanumerics.inverted) -> Self {
warning: Parameter 'terminator' is missing documentation
  --> ../StandardLibrary/String+Truncation.swift:22:171-22:171
20 | 	///   - maxLength: The maximum length of string to return. `maxLength` must be greater than or equal to zero.
21 | 	///   - termination: The termination string. Defaults to `String.defaultTruncationTerminator`.
22 + 	///   - removeCharacters: Unwanted characters to remove right before the termination string. Defaults to removing non-alphanumeric characters (spaces, punctuation etc.).
   |        ╰─suggestion: Document 'terminator' parameter
23 | 	func truncated(to maxLength: Int, with terminator: any StringProtocol = Self.defaultTruncationTerminator, removeCharacters: CharacterSet? = .alphanumerics.inverted) -> Self {
24 | 		guard maxLength >= 0 else {Finished building documentation for 'Helpers' (0.24s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/processed-bits/swift-helpers/2.2.0
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit SemanticVersion.swift
[7/53] Compiling SymbolKit AccessControl.swift
[8/53] Compiling SymbolKit Availability.swift
[9/53] Compiling SymbolKit AvailabilityItem.swift
[10/53] Compiling SymbolKit Domain.swift
[11/57] Emitting module SymbolKit
[12/57] Compiling SymbolKit DeclarationFragments.swift
[13/57] Compiling SymbolKit Fragment.swift
[14/57] Compiling SymbolKit FragmentKind.swift
[15/57] Compiling SymbolKit FunctionParameter.swift
[16/57] Compiling SymbolKit FunctionSignature.swift
[17/57] Compiling SymbolKit Mixin+Equals.swift
[18/57] Compiling SymbolKit Mixin+Hash.swift
[19/57] Compiling SymbolKit Mixin.swift
[20/57] Compiling SymbolKit LineList.swift
[21/57] Compiling SymbolKit Position.swift
[22/57] Compiling SymbolKit Names.swift
[23/57] Compiling SymbolKit SPI.swift
[24/57] Compiling SymbolKit Snippet.swift
[25/57] Compiling SymbolKit Extension.swift
[26/57] Compiling SymbolKit SourceRange.swift
[27/57] Compiling SymbolKit Metadata.swift
[28/57] Compiling SymbolKit Module.swift
[29/57] Compiling SymbolKit OperatingSystem.swift
[30/57] Compiling SymbolKit Platform.swift
[31/57] Compiling SymbolKit GenericConstraint.swift
[32/57] Compiling SymbolKit GenericParameter.swift
[33/57] Compiling SymbolKit Generics.swift
[34/57] Compiling SymbolKit Namespace.swift
[35/57] Compiling SymbolKit Identifier.swift
[36/57] Compiling SymbolKit KindIdentifier.swift
[37/57] Compiling SymbolKit Location.swift
[38/57] Compiling SymbolKit Mutability.swift
[39/57] Compiling SymbolKit Relationship.swift
[40/57] Compiling SymbolKit RelationshipKind.swift
[41/57] Compiling SymbolKit SourceOrigin.swift
[42/57] Compiling SymbolKit GenericConstraints.swift
[43/57] Compiling SymbolKit Swift.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets Snippet.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.51s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/65] Compiling Helpers NSImage+Extensions.swift
[3/65] Compiling Helpers NSResponder+Extensions.swift
[4/65] Compiling Helpers NSTableView+Extensions.swift
[5/65] Compiling Helpers NSView+Extensions.swift
[6/65] Compiling Helpers Atomic.swift
[7/65] Compiling Helpers CALayer+Extensions.swift
[8/65] Compiling Helpers CAMediaTiming+Extensions.swift
[9/71] Compiling Helpers print.swift
[10/71] Compiling Helpers Collection+Extensions.swift
[11/71] Compiling Helpers KeyValuePairs+Extensions.swift
[12/71] Compiling Helpers Regex+Extensions.swift
[13/71] Compiling Helpers Sequence+Extensions.swift
[14/71] Compiling Helpers Set+Extensions.swift
[15/71] Compiling Helpers String+Extensions.swift
[16/71] Emitting module Helpers
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
[17/71] Compiling Helpers NSTreeController+Extensions.swift
[18/71] Compiling Helpers EventMonitor.swift
[19/71] Compiling Helpers NSMenuItem+Extensions.swift
[20/71] Compiling Helpers AlertStyleGroupTouchBarItem.swift
[21/71] Compiling Helpers NSTouchBar+Extensions.swift
[22/71] Compiling Helpers ModalView.swift
[23/71] Compiling Helpers NSBrowser+Extensions.swift
[24/71] Compiling Helpers Thread+Debug.swift
[25/71] Compiling Helpers ThreadsCounter.swift
[26/71] Compiling Helpers dumpOutput.swift
[27/71] Compiling Helpers preconditionUnwrap.swift
[28/71] Compiling Helpers ExitCodeProtocol.swift
[29/71] Compiling Helpers ExitCodeProvidingError.swift
[30/71] Compiling Helpers exit.swift
[31/71] Compiling Helpers LegacyLogger.swift
[32/71] Compiling Helpers Logger+ExtendedLogger.swift
[33/71] Compiling Helpers BufferedOutput.swift
[34/71] Compiling Helpers BufferedOutputCollector.swift
[35/71] Compiling Helpers BufferedOutputProviding.swift
[36/71] Compiling Helpers CLI.swift
[37/71] Compiling Helpers OutputStreamKind.swift
[38/71] Compiling Helpers NSManagedObject+Extensions.swift
[39/71] Compiling Helpers NSManagedObjectContext+Extensions.swift
[40/71] Compiling Helpers CGFloat+Extensions.swift
[41/71] Compiling Helpers CGSize+Extensions.swift
[42/71] Compiling Helpers CallsCounter.swift
[43/71] Compiling Helpers SplitStopwatch.swift
[44/71] Compiling Helpers Stopwatch.swift
[45/71] Compiling Helpers Process+Extensions.swift
[46/71] Compiling Helpers Process+Output.swift
[47/71] Compiling Helpers Bundle+Extensions.swift
[48/71] Compiling Helpers Timer+Extensions.swift
[49/71] Compiling Helpers NSRegularExpression+Extensions.swift
[50/71] Compiling Helpers NSTextCheckingResult+Extensions.swift
[51/71] Compiling Helpers String+NSRegularExpression.swift
[52/71] Compiling Helpers NSObject+Bindings.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[53/71] Compiling Helpers IndexPath+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[54/71] Compiling Helpers FileHandle+TextOutputStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[55/71] Compiling Helpers BlockOperation+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[56/71] Compiling Helpers OperationQueue+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[57/71] Compiling Helpers UserDefault.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[58/71] Compiling Helpers UserDefaultRawRepresentable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/FileSystem/FileHandle+TextOutputStream.swift:7:1: warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 5 |
 6 | /// `TextOutputStream` conformance.
 7 | extension FileHandle: TextOutputStream {
   | |- warning: extension declares a conformance of imported type 'FileHandle' to imported protocol 'TextOutputStream'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 8 |
 9 | 	public func write(_ string: String) {
[59/71] Compiling Helpers HTTPURLResponse+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
[60/71] Compiling Helpers URL+Comparable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
[61/71] Compiling Helpers URL+HomeDirectory.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
[62/71] Compiling Helpers URL+Relationships.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
[63/71] Compiling Helpers URLBookmark.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
[64/71] Compiling Helpers ExtendedLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
[65/71] Compiling Helpers LegacyLogger+ExtendedLogger.swift
/Users/admin/builder/spi-builder-workspace/Sources/Helpers/Foundation/URLs/URL+Comparable.swift:6:1: warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 4 | import Foundation
 5 |
 6 | extension URL: Comparable {
   | |- warning: extension declares a conformance of imported type 'URL' to imported protocol 'Comparable'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
 7 |
 8 | 	/// Returns a Boolean value indicating whether the first URL precedes the second URL.
[66/71] Compiling Helpers String+Padding.swift
[67/71] Compiling Helpers String+Truncation.swift
[68/71] Compiling Helpers StringProtocol+Case.swift
[69/71] Compiling Helpers StringProtocol+Extensions.swift
[70/71] Compiling Helpers StringProtocol+Padding.swift
[71/71] Compiling Helpers Unicode.Scalar+Extensions.swift
Build of target: 'Helpers' complete! (1.64s)
     652
5	/Users/admin/builder/spi-builder-workspace/.docs/processed-bits/swift-helpers/2.2.0
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/processed-bits/swift-helpers/2.2.0
File count: 652
Doc size:   5.0MB
Preparing doc bundle ...
Uploading prod-processed-bits-swift-helpers-2.2.0-b453b67e.zip to s3://spi-docs-inbox/prod-processed-bits-swift-helpers-2.2.0-b453b67e.zip
Copying... [12%]
Copying... [23%]
Copying... [35%]
Copying... [41%]
Copying... [53%]
Copying... [64%]
Copying... [70%]
Copying... [82%]
Copying... [93%]
Copying... [100%]
Done.