This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 Git with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 10

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | class RepositoryTask {
    |       `- note: class 'RepositoryTask' does not conform to the 'Sendable' protocol
 36 |
 37 |     /// A path to git executable file on the disk
    :
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[9/112] Compiling Git RemoteUrlChangeTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | class RepositoryTask {
    |       `- note: class 'RepositoryTask' does not conform to the 'Sendable' protocol
 36 |
 37 |     /// A path to git executable file on the disk
    :
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[10/112] Compiling Git RemoteUrlTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | class RepositoryTask {
    |       `- note: class 'RepositoryTask' does not conform to the 'Sendable' protocol
 36 |
 37 |     /// A path to git executable file on the disk
    :
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[11/112] Compiling Git RepositoryTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | class RepositoryTask {
    |       `- note: class 'RepositoryTask' does not conform to the 'Sendable' protocol
 36 |
 37 |     /// A path to git executable file on the disk
    :
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[12/112] Compiling Git GitResetOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | class RepositoryTask {
    |       `- note: class 'RepositoryTask' does not conform to the 'Sendable' protocol
 36 |
 37 |     /// A path to git executable file on the disk
    :
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[13/112] Compiling Git ResetTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | class RepositoryTask {
    |       `- note: class 'RepositoryTask' does not conform to the 'Sendable' protocol
 36 |
 37 |     /// A path to git executable file on the disk
    :
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[14/112] Compiling Git GitSparseAddOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 33 | }
 34 |
 35 | class RepositoryTask {
    |       `- note: class 'RepositoryTask' does not conform to the 'Sendable' protocol
 36 |
 37 |     /// A path to git executable file on the disk
    :
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: capture of 'self' with non-sendable type 'RepositoryTask?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 `- warning: reference to captured var 'self' in concurrently-executing code; this is an error in the Swift 6 language mode
108 |             }
109 |         })
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[15/112] Compiling Git CredentialsProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[16/112] Compiling Git Repository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[17/112] Compiling Git RepositoryDelegate.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[18/112] Compiling Git RepositoryError.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[19/112] Compiling Git RepositoryLogRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[20/112] Compiling Git RepositoryReference.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[21/112] Compiling Git RepositoryReferenceName.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[22/112] Compiling Git RepositoryRemote.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[23/112] Compiling Git RepositoryStashRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[24/112] Compiling Git RepositoryTagRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/Users/admin/builder/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[25/112] Compiling Git GitSparseSetOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[26/112] Compiling Git SparseTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[27/112] Compiling Git GitStashApplyOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[28/112] Compiling Git StashApplyTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[29/112] Compiling Git GitStashOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[30/112] Compiling Git StashTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[31/112] Compiling Git GitStashDropOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[32/112] Compiling Git StashDropTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[33/112] Compiling Git GitStashListOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[34/112] Compiling Git StashListTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[35/112] Compiling Git GitStatusOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[36/112] Compiling Git File.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[37/112] Compiling Git FileAnnotationRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[38/112] Compiling Git FileCoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[39/112] Compiling Git FileStorage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[40/112] Compiling Git GitFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[41/112] Compiling Git GitFileStorage.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[42/112] Compiling Git GitCredentialsProvider.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[43/112] Compiling Git GitFileStatus.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[44/112] Compiling Git GitFileStatusList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[45/112] Compiling Git GitLogRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[46/112] Compiling Git GitLogRecordList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[47/112] Compiling Git GitMergeStatus.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[48/112] Compiling Git GitReference.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[49/112] Compiling Git GitReferenceList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[50/112] Compiling Git GitReferenceName.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[51/112] Compiling Git GitRemote.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[52/112] Compiling Git GitRemoteList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[53/112] Compiling Git GitRepository.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[54/112] Compiling Git GitRepository+Cherry.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[55/112] Compiling Git GitRepository+CherryPick.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[56/112] Compiling Git GitRepository+Files.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[57/112] Compiling Git GitRepository+Init.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 |
 40 |     // MARK: - Private
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[58/112] Compiling Git GitRepository+Log.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[59/112] Compiling Git GitRepository+Merge.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[60/112] Compiling Git GitRepository+Reference.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[61/112] Compiling Git GitRepository+Remotes.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[62/112] Compiling Git GitRepository+SparseCheckout.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[63/112] Compiling Git GitRepository+Status.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[64/112] Compiling Git GitRepository+Tag.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[65/112] Compiling Git GitRepositoryErrorFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[66/112] Compiling Git GitStashRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[67/112] Compiling Git GitStashRecordList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[68/112] Compiling Git GitTagRecord.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[69/112] Compiling Git GitCherryResult.swift
[70/112] Compiling Git CherryPickOptions.swift
[71/112] Compiling Git CherryPickTask.swift
[72/112] Compiling Git CleanOptions.swift
[73/112] Compiling Git CleanTask.swift
[74/112] Compiling Git CloneOptions.swift
[75/112] Compiling Git CloneTask.swift
[76/112] Compiling Git CommitOptions.swift
[77/112] Compiling Git CommitTask.swift
[78/112] Compiling Git FetchTask.swift
[79/112] Compiling Git GitFetchOptions.swift
[80/112] Compiling Git GitTagRecordList.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[81/112] Compiling Git AddTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[82/112] Compiling Git GitAddOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[83/112] Compiling Git ArgumentConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[84/112] Compiling Git BranchOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[85/112] Compiling Git BranchTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[86/112] Compiling Git CheckReferenceTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[87/112] Compiling Git CheckoutOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[88/112] Compiling Git CheckoutTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[89/112] Compiling Git CherryTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[90/112] Compiling Git GitCherryOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     public init() {}
[91/112] Compiling Git StatusTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[92/112] Compiling Git GitTagListOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[93/112] Compiling Git GitTagOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[94/112] Compiling Git TagTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[95/112] Compiling Git GitFormatDecoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[96/112] Compiling Git GitFormatEncoder.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[97/112] Compiling Git GitOutputParser.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[98/112] Compiling Git IndexIterator.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[99/112] Compiling Git FileManager+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[100/112] Compiling Git Formatter+Date.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[101/112] Compiling Git Array+Utils.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- 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
23 |
24 |     /// Creates options with the pattern match
[102/112] Compiling Git InitOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[103/112] Compiling Git InitTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[104/112] Compiling Git GitLogCompareOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[105/112] Compiling Git GitLogOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[106/112] Compiling Git LogTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[107/112] Compiling Git MergeOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[108/112] Compiling Git MergeTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[109/112] Compiling Git ProcessSpawn.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[110/112] Compiling Git GitPullOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[111/112] Compiling Git PullTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
[112/112] Compiling Git GitPushOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' with '@MainActor' if property should only be accessed from the main actor
    |                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/Users/admin/builder/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' with '@MainActor' if property should only be accessed from the main actor
    |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |
 53 |     /// The arguments to be executed.
Build complete! (25.70s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Git",
  "name" : "Git",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.12"
    }
  ],
  "products" : [
    {
      "name" : "Git",
      "targets" : [
        "Git"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Git",
      "module_type" : "SwiftTarget",
      "name" : "Git",
      "path" : "Sources",
      "product_memberships" : [
        "Git"
      ],
      "sources" : [
        "Classes/FileManagement/File.swift",
        "Classes/FileManagement/FileAnnotationRecord.swift",
        "Classes/FileManagement/FileCoder.swift",
        "Classes/FileManagement/FileStorage.swift",
        "Classes/FileManagement/GitFile.swift",
        "Classes/FileManagement/GitFileStorage.swift",
        "Classes/GitCredentialsProvider.swift",
        "Classes/GitFileStatus.swift",
        "Classes/GitFileStatusList.swift",
        "Classes/GitLogRecord.swift",
        "Classes/GitLogRecordList.swift",
        "Classes/GitMergeStatus.swift",
        "Classes/GitReference.swift",
        "Classes/GitReferenceList.swift",
        "Classes/GitReferenceName.swift",
        "Classes/GitRemote.swift",
        "Classes/GitRemoteList.swift",
        "Classes/GitRepository.swift",
        "Classes/GitRepository/GitRepository+Cherry.swift",
        "Classes/GitRepository/GitRepository+CherryPick.swift",
        "Classes/GitRepository/GitRepository+Files.swift",
        "Classes/GitRepository/GitRepository+Init.swift",
        "Classes/GitRepository/GitRepository+Log.swift",
        "Classes/GitRepository/GitRepository+Merge.swift",
        "Classes/GitRepository/GitRepository+Reference.swift",
        "Classes/GitRepository/GitRepository+Remotes.swift",
        "Classes/GitRepository/GitRepository+SparseCheckout.swift",
        "Classes/GitRepository/GitRepository+Status.swift",
        "Classes/GitRepository/GitRepository+Tag.swift",
        "Classes/GitRepositoryErrorFormatter.swift",
        "Classes/GitStashRecord.swift",
        "Classes/GitStashRecordList.swift",
        "Classes/GitTagRecord.swift",
        "Classes/GitTagRecordList.swift",
        "Classes/Tasks/Add/AddTask.swift",
        "Classes/Tasks/Add/GitAddOptions.swift",
        "Classes/Tasks/ArgumentConvertible.swift",
        "Classes/Tasks/Branch/BranchOptions.swift",
        "Classes/Tasks/Branch/BranchTask.swift",
        "Classes/Tasks/CheckRefFormat/CheckReferenceTask.swift",
        "Classes/Tasks/Checkout/CheckoutOptions.swift",
        "Classes/Tasks/Checkout/CheckoutTask.swift",
        "Classes/Tasks/Cherry/CherryTask.swift",
        "Classes/Tasks/Cherry/GitCherryOptions.swift",
        "Classes/Tasks/Cherry/GitCherryResult.swift",
        "Classes/Tasks/CherryPick/CherryPickOptions.swift",
        "Classes/Tasks/CherryPick/CherryPickTask.swift",
        "Classes/Tasks/Clean/CleanOptions.swift",
        "Classes/Tasks/Clean/CleanTask.swift",
        "Classes/Tasks/Clone/CloneOptions.swift",
        "Classes/Tasks/Clone/CloneTask.swift",
        "Classes/Tasks/Commit/CommitOptions.swift",
        "Classes/Tasks/Commit/CommitTask.swift",
        "Classes/Tasks/Fetch/FetchTask.swift",
        "Classes/Tasks/Fetch/GitFetchOptions.swift",
        "Classes/Tasks/Init/InitOptions.swift",
        "Classes/Tasks/Init/InitTask.swift",
        "Classes/Tasks/Log/GitLogCompareOptions.swift",
        "Classes/Tasks/Log/GitLogOptions.swift",
        "Classes/Tasks/Log/LogTask.swift",
        "Classes/Tasks/Merge/MergeOptions.swift",
        "Classes/Tasks/Merge/MergeTask.swift",
        "Classes/Tasks/ProcessSpawn.swift",
        "Classes/Tasks/Pull/GitPullOptions.swift",
        "Classes/Tasks/Pull/PullTask.swift",
        "Classes/Tasks/Push/GitPushOptions.swift",
        "Classes/Tasks/Push/PushTask.swift",
        "Classes/Tasks/References/ReferencesTask.swift",
        "Classes/Tasks/Remotes/RemoteAddTask.swift",
        "Classes/Tasks/Remotes/RemoteListTask.swift",
        "Classes/Tasks/Remotes/RemoteRenameTask.swift",
        "Classes/Tasks/Remotes/RemoteUrlChangeTask.swift",
        "Classes/Tasks/Remotes/RemoteUrlTask.swift",
        "Classes/Tasks/RepositoryTask.swift",
        "Classes/Tasks/Reset/GitResetOptions.swift",
        "Classes/Tasks/Reset/ResetTask.swift",
        "Classes/Tasks/SparseCheckout/GitSparseAddOptions.swift",
        "Classes/Tasks/SparseCheckout/GitSparseSetOptions.swift",
        "Classes/Tasks/SparseCheckout/SparseTask.swift",
        "Classes/Tasks/Stash/Apply/GitStashApplyOptions.swift",
        "Classes/Tasks/Stash/Apply/StashApplyTask.swift",
        "Classes/Tasks/Stash/Create/GitStashOptions.swift",
        "Classes/Tasks/Stash/Create/StashTask.swift",
        "Classes/Tasks/Stash/Drop/GitStashDropOptions.swift",
        "Classes/Tasks/Stash/Drop/StashDropTask.swift",
        "Classes/Tasks/Stash/List/GitStashListOptions.swift",
        "Classes/Tasks/Stash/List/StashListTask.swift",
        "Classes/Tasks/Status/GitStatusOptions.swift",
        "Classes/Tasks/Status/StatusTask.swift",
        "Classes/Tasks/Tag/GitTagListOptions.swift",
        "Classes/Tasks/Tag/GitTagOptions.swift",
        "Classes/Tasks/Tag/TagTask.swift",
        "Core/GitFormatDecoder.swift",
        "Core/GitFormatEncoder.swift",
        "Core/GitOutputParser.swift",
        "Core/IndexIterator.swift",
        "Extensions/FileManager/FileManager+Utils.swift",
        "Extensions/Formatter/Formatter+Date.swift",
        "Extensions/General/Array+Utils.swift",
        "Protocols/CredentialsProvider.swift",
        "Protocols/Repository.swift",
        "Protocols/RepositoryDelegate.swift",
        "Protocols/RepositoryError.swift",
        "Protocols/RepositoryLogRecord.swift",
        "Protocols/RepositoryReference.swift",
        "Protocols/RepositoryReferenceName.swift",
        "Protocols/RepositoryRemote.swift",
        "Protocols/RepositoryStashRecord.swift",
        "Protocols/RepositoryTagRecord.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.