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 FileKit, reference 6.1.0 (9006d2), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 27 Apr 2025 17:52:05 UTC.

Swift 6 data race errors: 71

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme FileKit -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Array+File.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ArrayFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Bundle+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Data+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ DirectoryEnumerator.swift,\ DispatchEvent.swift,\ DispatchWatcher.swift,\ File.swift /Users/admin/builder/spi-builder-workspace/Sources/DirectoryEnumerator.swift /Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/DispatchWatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/File.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DirectoryEnumerator.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: warning: static property 'Delete' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: add '@MainActor' to make static property 'Delete' part of global actor 'MainActor'
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: warning: static property 'Write' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: add '@MainActor' to make static property 'Write' part of global actor 'MainActor'
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: warning: static property 'Extend' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: add '@MainActor' to make static property 'Extend' part of global actor 'MainActor'
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: warning: static property 'Attribute' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: add '@MainActor' to make static property 'Attribute' part of global actor 'MainActor'
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: warning: static property 'Link' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: add '@MainActor' to make static property 'Link' part of global actor 'MainActor'
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: warning: static property 'Rename' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: add '@MainActor' to make static property 'Rename' part of global actor 'MainActor'
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: warning: static property 'Revoke' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: add '@MainActor' to make static property 'Revoke' part of global actor 'MainActor'
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: warning: static property 'Create' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: add '@MainActor' to make static property 'Create' part of global actor 'MainActor'
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: warning: static property 'All' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: add '@MainActor' to make static property 'All' part of global actor 'MainActor'
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: warning: static property 'allEvents' is not concurrency-safe because non-'Sendable' type '[DispatchFileSystemEvents]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: add '@MainActor' to make static property 'allEvents' part of global actor 'MainActor'
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DispatchWatcher.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/File.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ FileSystemEvent.swift,\ FileSystemEventStream.swift,\ FileSystemWatcher.swift,\ FileType.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEventStream.swift /Users/admin/builder/spi-builder-workspace/Sources/FileSystemWatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/FileType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:98:23: warning: static property 'None' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let None = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagNone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:98:23: note: add '@MainActor' to make static property 'None' part of global actor 'MainActor'
    public static let None = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagNone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:98:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let None = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagNone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:102:23: warning: static property 'MustScanSubDirs' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let MustScanSubDirs = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMustScanSubDirs)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:102:23: note: add '@MainActor' to make static property 'MustScanSubDirs' part of global actor 'MainActor'
    public static let MustScanSubDirs = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMustScanSubDirs)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:102:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let MustScanSubDirs = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMustScanSubDirs)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:109:23: warning: static property 'UserDropped' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let UserDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUserDropped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:109:23: note: add '@MainActor' to make static property 'UserDropped' part of global actor 'MainActor'
    public static let UserDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUserDropped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let UserDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUserDropped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:116:23: warning: static property 'KernelDropped' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let KernelDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagKernelDropped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:116:23: note: add '@MainActor' to make static property 'KernelDropped' part of global actor 'MainActor'
    public static let KernelDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagKernelDropped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let KernelDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagKernelDropped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:119:23: warning: static property 'EventIdsWrapped' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let EventIdsWrapped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagEventIdsWrapped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:119:23: note: add '@MainActor' to make static property 'EventIdsWrapped' part of global actor 'MainActor'
    public static let EventIdsWrapped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagEventIdsWrapped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:119:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let EventIdsWrapped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagEventIdsWrapped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:124:23: warning: static property 'HistoryDone' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let HistoryDone = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagHistoryDone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:124:23: note: add '@MainActor' to make static property 'HistoryDone' part of global actor 'MainActor'
    public static let HistoryDone = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagHistoryDone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:124:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let HistoryDone = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagHistoryDone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:128:23: warning: static property 'RootChanged' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let RootChanged = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagRootChanged)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:128:23: note: add '@MainActor' to make static property 'RootChanged' part of global actor 'MainActor'
    public static let RootChanged = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagRootChanged)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let RootChanged = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagRootChanged)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:132:23: warning: static property 'Mount' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Mount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMount)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:132:23: note: add '@MainActor' to make static property 'Mount' part of global actor 'MainActor'
    public static let Mount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMount)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:132:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Mount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMount)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:136:23: warning: static property 'Unmount' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Unmount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUnmount)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:136:23: note: add '@MainActor' to make static property 'Unmount' part of global actor 'MainActor'
    public static let Unmount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUnmount)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Unmount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUnmount)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:140:23: warning: static property 'Created' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Created = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemCreated)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:140:23: note: add '@MainActor' to make static property 'Created' part of global actor 'MainActor'
    public static let Created = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemCreated)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:140:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Created = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemCreated)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:144:23: warning: static property 'ItemRemoved' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemRemoved = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRemoved)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:144:23: note: add '@MainActor' to make static property 'ItemRemoved' part of global actor 'MainActor'
    public static let ItemRemoved = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRemoved)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:144:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemRemoved = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRemoved)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:148:23: warning: static property 'ItemInodeMetaMod' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemInodeMetaMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:148:23: note: add '@MainActor' to make static property 'ItemInodeMetaMod' part of global actor 'MainActor'
    public static let ItemInodeMetaMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:148:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemInodeMetaMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:152:23: warning: static property 'ItemRenamed' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemRenamed = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRenamed)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:152:23: note: add '@MainActor' to make static property 'ItemRenamed' part of global actor 'MainActor'
    public static let ItemRenamed = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRenamed)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:152:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemRenamed = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRenamed)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:156:23: warning: static property 'ItemModified' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemModified = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemModified)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:156:23: note: add '@MainActor' to make static property 'ItemModified' part of global actor 'MainActor'
    public static let ItemModified = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemModified)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:156:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemModified = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemModified)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:160:23: warning: static property 'ItemFinderInfoMod' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemFinderInfoMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:160:23: note: add '@MainActor' to make static property 'ItemFinderInfoMod' part of global actor 'MainActor'
    public static let ItemFinderInfoMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:160:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemFinderInfoMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:164:23: warning: static property 'ItemChangeOwner' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemChangeOwner = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemChangeOwner)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:164:23: note: add '@MainActor' to make static property 'ItemChangeOwner' part of global actor 'MainActor'
    public static let ItemChangeOwner = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemChangeOwner)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:164:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemChangeOwner = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemChangeOwner)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:168:23: warning: static property 'ItemXattrMod' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemXattrMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemXattrMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:168:23: note: add '@MainActor' to make static property 'ItemXattrMod' part of global actor 'MainActor'
    public static let ItemXattrMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemXattrMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:168:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemXattrMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemXattrMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:172:23: warning: static property 'ItemIsFile' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsFile = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsFile)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:172:23: note: add '@MainActor' to make static property 'ItemIsFile' part of global actor 'MainActor'
    public static let ItemIsFile = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsFile)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:172:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsFile = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsFile)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:176:23: warning: static property 'ItemIsDir' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsDir = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsDir)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:176:23: note: add '@MainActor' to make static property 'ItemIsDir' part of global actor 'MainActor'
    public static let ItemIsDir = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsDir)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:176:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsDir = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsDir)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:180:23: warning: static property 'ItemIsSymlink' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsSymlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsSymlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:180:23: note: add '@MainActor' to make static property 'ItemIsSymlink' part of global actor 'MainActor'
    public static let ItemIsSymlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsSymlink)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:180:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsSymlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsSymlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:183:23: warning: static property 'OwnEvent' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let OwnEvent = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagOwnEvent)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:183:23: note: add '@MainActor' to make static property 'OwnEvent' part of global actor 'MainActor'
    public static let OwnEvent = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagOwnEvent)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:183:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let OwnEvent = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagOwnEvent)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:187:23: warning: static property 'ItemIsHardlink' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:187:23: note: add '@MainActor' to make static property 'ItemIsHardlink' part of global actor 'MainActor'
    public static let ItemIsHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:187:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsHardlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:191:23: warning: static property 'ItemIsLastHardlink' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsLastHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:191:23: note: add '@MainActor' to make static property 'ItemIsLastHardlink' part of global actor 'MainActor'
    public static let ItemIsLastHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:191:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsLastHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:196:23: warning: static property 'allFlags' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var allFlags: [FileSystemEventFlags] = {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:196:23: note: convert 'allFlags' to a 'let' constant to make 'Sendable' shared state immutable
    public static var allFlags: [FileSystemEventFlags] = {
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:196:23: note: add '@MainActor' to make static property 'allFlags' part of global actor 'MainActor'
    public static var allFlags: [FileSystemEventFlags] = {
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:196:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var allFlags: [FileSystemEventFlags] = {
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:269:23: warning: static property 'None' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let None = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:269:23: note: add '@MainActor' to make static property 'None' part of global actor 'MainActor'
    public static let None = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:269:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let None = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:273:23: warning: static property 'UseCFTypes' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let UseCFTypes = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagUseCFTypes)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:273:23: note: add '@MainActor' to make static property 'UseCFTypes' part of global actor 'MainActor'
    public static let UseCFTypes = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagUseCFTypes)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:273:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let UseCFTypes = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagUseCFTypes)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:276:23: warning: static property 'FlagNoDefer' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let FlagNoDefer = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNoDefer)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:276:23: note: add '@MainActor' to make static property 'FlagNoDefer' part of global actor 'MainActor'
    public static let FlagNoDefer = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNoDefer)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:276:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let FlagNoDefer = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNoDefer)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:279:23: warning: static property 'WatchRoot' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WatchRoot = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagWatchRoot)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:279:23: note: add '@MainActor' to make static property 'WatchRoot' part of global actor 'MainActor'
    public static let WatchRoot = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagWatchRoot)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:279:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WatchRoot = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagWatchRoot)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:282:23: warning: static property 'IgnoreSelf' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let IgnoreSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagIgnoreSelf)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:282:23: note: add '@MainActor' to make static property 'IgnoreSelf' part of global actor 'MainActor'
    public static let IgnoreSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagIgnoreSelf)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:282:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let IgnoreSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagIgnoreSelf)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:285:23: warning: static property 'FileEvents' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let FileEvents = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagFileEvents)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:285:23: note: add '@MainActor' to make static property 'FileEvents' part of global actor 'MainActor'
    public static let FileEvents = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagFileEvents)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:285:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let FileEvents = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagFileEvents)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:289:23: warning: static property 'MarkSelf' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let MarkSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagMarkSelf)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:289:23: note: add '@MainActor' to make static property 'MarkSelf' part of global actor 'MainActor'
    public static let MarkSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagMarkSelf)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:289:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let MarkSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagMarkSelf)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:294:23: warning: static property 'allFlags' is not concurrency-safe because non-'Sendable' type '[FileSystemEventStreamCreateFlags]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allFlags: [FileSystemEventStreamCreateFlags] = [.None, .UseCFTypes, .FlagNoDefer, .WatchRoot, .IgnoreSelf, .FileEvents, .MarkSelf]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:294:23: note: add '@MainActor' to make static property 'allFlags' part of global actor 'MainActor'
    public static let allFlags: [FileSystemEventStreamCreateFlags] = [.None, .UseCFTypes, .FlagNoDefer, .WatchRoot, .IgnoreSelf, .FileEvents, .MarkSelf]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:294:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allFlags: [FileSystemEventStreamCreateFlags] = [.None, .UseCFTypes, .FlagNoDefer, .WatchRoot, .IgnoreSelf, .FileEvents, .MarkSelf]
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileSystemEventStream.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileSystemWatcher.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ NSArray+FileKit.swift,\ NSData+FileKit.swift,\ NSDataFile.swift /Users/admin/builder/spi-builder-workspace/Sources/NSArray+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/NSData+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/NSDataFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSArray+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSData+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSDataFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ FileKit.swift,\ FileKitError.swift,\ FilePermissions.swift,\ FileProtection.swift /Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift /Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift /Users/admin/builder/spi-builder-workspace/Sources/FileProtection.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: warning: static property 'jsonDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonDecoder = JSONDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: convert 'jsonDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonDecoder = JSONDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: add '@MainActor' to make static property 'jsonDecoder' part of global actor 'MainActor'
    public static var jsonDecoder = JSONDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonDecoder = JSONDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: warning: static property 'jsonEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonEncoder = JSONEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: convert 'jsonEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonEncoder = JSONEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: add '@MainActor' to make static property 'jsonEncoder' part of global actor 'MainActor'
    public static var jsonEncoder = JSONEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonEncoder = JSONEncoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: warning: static property 'propertyListDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: convert 'propertyListDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListDecoder = PropertyListDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: add '@MainActor' to make static property 'propertyListDecoder' part of global actor 'MainActor'
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: warning: static property 'propertyListEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: convert 'propertyListEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListEncoder = PropertyListEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: add '@MainActor' to make static property 'propertyListEncoder' part of global actor 'MainActor'
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:79:14: warning: associated value 'conversion' of 'Sendable'-conforming enum 'ReasonError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
        case conversion(Any)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:36:10: warning: associated value 'fileDoesNotExist(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileDoesNotExist(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:39:10: warning: associated value 'fileAlreadyExists(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileAlreadyExists(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:51:10: warning: associated value 'createFileFail(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createFileFail(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:54:10: warning: associated value 'createDirectoryFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createDirectoryFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:57:10: warning: associated value 'deleteFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case deleteFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:60:10: warning: associated value 'readFromFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case readFromFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:63:10: warning: associated value 'writeToFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case writeToFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:72:10: warning: associated value 'attributesChangeFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case attributesChangeFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let read = FilePermissions(rawValue: 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
    public static let read = FilePermissions(rawValue: 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let read = FilePermissions(rawValue: 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let write = FilePermissions(rawValue: 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
    public static let write = FilePermissions(rawValue: 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let write = FilePermissions(rawValue: 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: warning: static property 'execute' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let execute = FilePermissions(rawValue: 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: add '@MainActor' to make static property 'execute' part of global actor 'MainActor'
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[FilePermissions]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/FileProtection.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ RelativePathType.swift,\ String+FileKit.swift,\ TextFile.swift /Users/admin/builder/spi-builder-workspace/Sources/RelativePathType.swift /Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/TextFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/RelativePathType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: warning: var 'ReadableWritableStringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: convert 'ReadableWritableStringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
var ReadableWritableStringEncoding = String.Encoding.utf8
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: add '@MainActor' to make var 'ReadableWritableStringEncoding' part of global actor 'MainActor'
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/TextFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Path.swift,\ Process+FileKit.swift,\ PropertyListType.swift /Users/admin/builder/spi-builder-workspace/Sources/Path.swift /Users/admin/builder/spi-builder-workspace/Sources/Process+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/PropertyListType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Path.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'Path' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let root = Path(separator)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
    public static let root = Path(separator)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let root = Path(separator)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: warning: initializer 'init(stringInterpolation:)' nearly matches defaulted requirement 'init(stringInterpolation:)' of protocol 'ExpressibleByStringInterpolation'
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: candidate has non-matching type '(stringInterpolation: Path...)' [with StringInterpolation = DefaultStringInterpolation]
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: move 'init(stringInterpolation:)' to another extension to silence this warning
    public init(stringInterpolation paths: Path...) {
           ^
Swift.ExpressibleByStringInterpolation.init:2:1: note: requirement 'init(stringInterpolation:)' declared here
init(stringInterpolation: Self.StringInterpolation)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Process+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/PropertyListType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Image+FileKit.swift,\ ImageFile.swift,\ JSONType.swift /Users/admin/builder/spi-builder-workspace/Sources/Image+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/ImageFile.swift /Users/admin/builder/spi-builder-workspace/Sources/JSONType.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Image+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ImageFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/JSONType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ NSDictionary+FileKit.swift,\ NSString+FileKit.swift,\ Operators.swift /Users/admin/builder/spi-builder-workspace/Sources/NSDictionary+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/NSString+FileKit.swift /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSDictionary+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/NSString+FileKit.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Operators.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ DataFile.swift,\ DataType.swift,\ Dictionary+File.swift,\ DictionaryFile.swift /Users/admin/builder/spi-builder-workspace/Sources/DataFile.swift /Users/admin/builder/spi-builder-workspace/Sources/DataType.swift /Users/admin/builder/spi-builder-workspace/Sources/Dictionary+File.swift /Users/admin/builder/spi-builder-workspace/Sources/DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DataType.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Dictionary+File.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ FileKit (in target 'FileKit' from project 'FileKit')
EmitSwiftModule normal arm64 (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: warning: static property 'Delete' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: add '@MainActor' to make static property 'Delete' part of global actor 'MainActor'
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Delete = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.delete.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: warning: static property 'Write' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: add '@MainActor' to make static property 'Write' part of global actor 'MainActor'
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Write = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.write.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: warning: static property 'Extend' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: add '@MainActor' to make static property 'Extend' part of global actor 'MainActor'
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:23:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Extend = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.extend.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: warning: static property 'Attribute' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: add '@MainActor' to make static property 'Attribute' part of global actor 'MainActor'
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:26:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Attribute = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.attrib.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: warning: static property 'Link' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: add '@MainActor' to make static property 'Link' part of global actor 'MainActor'
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Link = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.link.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: warning: static property 'Rename' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: add '@MainActor' to make static property 'Rename' part of global actor 'MainActor'
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Rename = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.rename.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: warning: static property 'Revoke' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: add '@MainActor' to make static property 'Revoke' part of global actor 'MainActor'
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Revoke = DispatchFileSystemEvents(rawValue: DispatchSource.FileSystemEvent.revoke.rawValue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: warning: static property 'Create' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: add '@MainActor' to make static property 'Create' part of global actor 'MainActor'
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:38:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Create = DispatchFileSystemEvents(rawValue: 0x1000)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: warning: static property 'All' is not concurrency-safe because non-'Sendable' type 'DispatchFileSystemEvents' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: add '@MainActor' to make static property 'All' part of global actor 'MainActor'
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let All: DispatchFileSystemEvents = [.Delete, .Write, .Extend, .Attribute, .Link, .Rename, .Revoke, .Create]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: warning: static property 'allEvents' is not concurrency-safe because non-'Sendable' type '[DispatchFileSystemEvents]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:12:15: note: consider making struct 'DispatchFileSystemEvents' conform to the 'Sendable' protocol
public struct DispatchFileSystemEvents: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                        , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: add '@MainActor' to make static property 'allEvents' part of global actor 'MainActor'
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/DispatchEvent.swift:46:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allEvents: [DispatchFileSystemEvents] = [
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: warning: static property 'jsonDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonDecoder = JSONDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: convert 'jsonDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonDecoder = JSONDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: add '@MainActor' to make static property 'jsonDecoder' part of global actor 'MainActor'
    public static var jsonDecoder = JSONDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonDecoder = JSONDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: warning: static property 'jsonEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var jsonEncoder = JSONEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: convert 'jsonEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var jsonEncoder = JSONEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: add '@MainActor' to make static property 'jsonEncoder' part of global actor 'MainActor'
    public static var jsonEncoder = JSONEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var jsonEncoder = JSONEncoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: warning: static property 'propertyListDecoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: convert 'propertyListDecoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListDecoder = PropertyListDecoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: add '@MainActor' to make static property 'propertyListDecoder' part of global actor 'MainActor'
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListDecoder = PropertyListDecoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: warning: static property 'propertyListEncoder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: convert 'propertyListEncoder' to a 'let' constant to make 'Sendable' shared state immutable
    public static var propertyListEncoder = PropertyListEncoder()
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: add '@MainActor' to make static property 'propertyListEncoder' part of global actor 'MainActor'
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileKit.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var propertyListEncoder = PropertyListEncoder()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:79:14: warning: associated value 'conversion' of 'Sendable'-conforming enum 'ReasonError' has non-sendable type 'Any'; this is an error in the Swift 6 language mode
        case conversion(Any)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:36:10: warning: associated value 'fileDoesNotExist(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileDoesNotExist(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:39:10: warning: associated value 'fileAlreadyExists(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case fileAlreadyExists(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:42:10: warning: associated value 'changeDirectoryFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case changeDirectoryFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:45:10: warning: associated value 'createSymlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createSymlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:48:10: warning: associated value 'createHardlinkFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createHardlinkFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:51:10: warning: associated value 'createFileFail(path:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createFileFail(path: Path)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:54:10: warning: associated value 'createDirectoryFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case createDirectoryFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:57:10: warning: associated value 'deleteFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case deleteFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:60:10: warning: associated value 'readFromFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case readFromFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:63:10: warning: associated value 'writeToFileFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case writeToFileFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:66:10: warning: associated value 'moveFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case moveFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:69:10: warning: associated value 'copyFileFail(from:to:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case copyFileFail(from: Path, to: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileKitError.swift:72:10: warning: associated value 'attributesChangeFail(path:error:)' of 'Sendable'-conforming enum 'FileKitError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
    case attributesChangeFail(path: Path, error: Error)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: warning: static property 'read' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let read = FilePermissions(rawValue: 1)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: add '@MainActor' to make static property 'read' part of global actor 'MainActor'
    public static let read = FilePermissions(rawValue: 1)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:34:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let read = FilePermissions(rawValue: 1)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: warning: static property 'write' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let write = FilePermissions(rawValue: 2)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: add '@MainActor' to make static property 'write' part of global actor 'MainActor'
    public static let write = FilePermissions(rawValue: 2)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let write = FilePermissions(rawValue: 2)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: warning: static property 'execute' is not concurrency-safe because non-'Sendable' type 'FilePermissions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let execute = FilePermissions(rawValue: 4)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: add '@MainActor' to make static property 'execute' part of global actor 'MainActor'
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let execute = FilePermissions(rawValue: 4)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[FilePermissions]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:31:15: note: consider making struct 'FilePermissions' conform to the 'Sendable' protocol
public struct FilePermissions: OptionSet, CustomStringConvertible {
              ^
                                                                 , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: add '@MainActor' to make static property 'all' part of global actor 'MainActor'
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FilePermissions.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [FilePermissions] =  [.read, .write, .execute]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:98:23: warning: static property 'None' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let None = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagNone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:98:23: note: add '@MainActor' to make static property 'None' part of global actor 'MainActor'
    public static let None = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagNone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:98:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let None = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagNone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:102:23: warning: static property 'MustScanSubDirs' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let MustScanSubDirs = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMustScanSubDirs)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:102:23: note: add '@MainActor' to make static property 'MustScanSubDirs' part of global actor 'MainActor'
    public static let MustScanSubDirs = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMustScanSubDirs)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:102:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let MustScanSubDirs = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMustScanSubDirs)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:109:23: warning: static property 'UserDropped' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let UserDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUserDropped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:109:23: note: add '@MainActor' to make static property 'UserDropped' part of global actor 'MainActor'
    public static let UserDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUserDropped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:109:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let UserDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUserDropped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:116:23: warning: static property 'KernelDropped' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let KernelDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagKernelDropped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:116:23: note: add '@MainActor' to make static property 'KernelDropped' part of global actor 'MainActor'
    public static let KernelDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagKernelDropped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:116:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let KernelDropped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagKernelDropped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:119:23: warning: static property 'EventIdsWrapped' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let EventIdsWrapped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagEventIdsWrapped)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:119:23: note: add '@MainActor' to make static property 'EventIdsWrapped' part of global actor 'MainActor'
    public static let EventIdsWrapped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagEventIdsWrapped)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:119:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let EventIdsWrapped = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagEventIdsWrapped)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:124:23: warning: static property 'HistoryDone' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let HistoryDone = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagHistoryDone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:124:23: note: add '@MainActor' to make static property 'HistoryDone' part of global actor 'MainActor'
    public static let HistoryDone = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagHistoryDone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:124:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let HistoryDone = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagHistoryDone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:128:23: warning: static property 'RootChanged' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let RootChanged = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagRootChanged)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:128:23: note: add '@MainActor' to make static property 'RootChanged' part of global actor 'MainActor'
    public static let RootChanged = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagRootChanged)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:128:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let RootChanged = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagRootChanged)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:132:23: warning: static property 'Mount' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Mount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMount)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:132:23: note: add '@MainActor' to make static property 'Mount' part of global actor 'MainActor'
    public static let Mount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMount)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:132:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Mount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagMount)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:136:23: warning: static property 'Unmount' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Unmount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUnmount)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:136:23: note: add '@MainActor' to make static property 'Unmount' part of global actor 'MainActor'
    public static let Unmount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUnmount)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:136:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Unmount = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagUnmount)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:140:23: warning: static property 'Created' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let Created = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemCreated)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:140:23: note: add '@MainActor' to make static property 'Created' part of global actor 'MainActor'
    public static let Created = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemCreated)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:140:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let Created = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemCreated)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:144:23: warning: static property 'ItemRemoved' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemRemoved = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRemoved)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:144:23: note: add '@MainActor' to make static property 'ItemRemoved' part of global actor 'MainActor'
    public static let ItemRemoved = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRemoved)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:144:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemRemoved = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRemoved)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:148:23: warning: static property 'ItemInodeMetaMod' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemInodeMetaMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:148:23: note: add '@MainActor' to make static property 'ItemInodeMetaMod' part of global actor 'MainActor'
    public static let ItemInodeMetaMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:148:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemInodeMetaMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemInodeMetaMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:152:23: warning: static property 'ItemRenamed' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemRenamed = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRenamed)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:152:23: note: add '@MainActor' to make static property 'ItemRenamed' part of global actor 'MainActor'
    public static let ItemRenamed = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRenamed)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:152:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemRenamed = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemRenamed)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:156:23: warning: static property 'ItemModified' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemModified = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemModified)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:156:23: note: add '@MainActor' to make static property 'ItemModified' part of global actor 'MainActor'
    public static let ItemModified = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemModified)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:156:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemModified = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemModified)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:160:23: warning: static property 'ItemFinderInfoMod' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemFinderInfoMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:160:23: note: add '@MainActor' to make static property 'ItemFinderInfoMod' part of global actor 'MainActor'
    public static let ItemFinderInfoMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:160:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemFinderInfoMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemFinderInfoMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:164:23: warning: static property 'ItemChangeOwner' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemChangeOwner = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemChangeOwner)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:164:23: note: add '@MainActor' to make static property 'ItemChangeOwner' part of global actor 'MainActor'
    public static let ItemChangeOwner = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemChangeOwner)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:164:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemChangeOwner = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemChangeOwner)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:168:23: warning: static property 'ItemXattrMod' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemXattrMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemXattrMod)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:168:23: note: add '@MainActor' to make static property 'ItemXattrMod' part of global actor 'MainActor'
    public static let ItemXattrMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemXattrMod)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:168:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemXattrMod = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemXattrMod)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:172:23: warning: static property 'ItemIsFile' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsFile = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsFile)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:172:23: note: add '@MainActor' to make static property 'ItemIsFile' part of global actor 'MainActor'
    public static let ItemIsFile = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsFile)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:172:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsFile = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsFile)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:176:23: warning: static property 'ItemIsDir' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsDir = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsDir)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:176:23: note: add '@MainActor' to make static property 'ItemIsDir' part of global actor 'MainActor'
    public static let ItemIsDir = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsDir)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:176:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsDir = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsDir)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:180:23: warning: static property 'ItemIsSymlink' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsSymlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsSymlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:180:23: note: add '@MainActor' to make static property 'ItemIsSymlink' part of global actor 'MainActor'
    public static let ItemIsSymlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsSymlink)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:180:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsSymlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsSymlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:183:23: warning: static property 'OwnEvent' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let OwnEvent = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagOwnEvent)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:183:23: note: add '@MainActor' to make static property 'OwnEvent' part of global actor 'MainActor'
    public static let OwnEvent = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagOwnEvent)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:183:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let OwnEvent = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagOwnEvent)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:187:23: warning: static property 'ItemIsHardlink' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:187:23: note: add '@MainActor' to make static property 'ItemIsHardlink' part of global actor 'MainActor'
    public static let ItemIsHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:187:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsHardlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:191:23: warning: static property 'ItemIsLastHardlink' is not concurrency-safe because non-'Sendable' type 'FileSystemEventFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let ItemIsLastHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:92:15: note: consider making struct 'FileSystemEventFlags' conform to the 'Sendable' protocol
public struct FileSystemEventFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:191:23: note: add '@MainActor' to make static property 'ItemIsLastHardlink' part of global actor 'MainActor'
    public static let ItemIsLastHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:191:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let ItemIsLastHardlink = FileSystemEventFlags(rawValue: kFSEventStreamEventFlagItemIsLastHardlink)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:196:23: warning: static property 'allFlags' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var allFlags: [FileSystemEventFlags] = {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:196:23: note: convert 'allFlags' to a 'let' constant to make 'Sendable' shared state immutable
    public static var allFlags: [FileSystemEventFlags] = {
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:196:23: note: add '@MainActor' to make static property 'allFlags' part of global actor 'MainActor'
    public static var allFlags: [FileSystemEventFlags] = {
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:196:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var allFlags: [FileSystemEventFlags] = {
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:269:23: warning: static property 'None' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let None = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNone)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:269:23: note: add '@MainActor' to make static property 'None' part of global actor 'MainActor'
    public static let None = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNone)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:269:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let None = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNone)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:273:23: warning: static property 'UseCFTypes' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let UseCFTypes = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagUseCFTypes)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:273:23: note: add '@MainActor' to make static property 'UseCFTypes' part of global actor 'MainActor'
    public static let UseCFTypes = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagUseCFTypes)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:273:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let UseCFTypes = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagUseCFTypes)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:276:23: warning: static property 'FlagNoDefer' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let FlagNoDefer = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNoDefer)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:276:23: note: add '@MainActor' to make static property 'FlagNoDefer' part of global actor 'MainActor'
    public static let FlagNoDefer = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNoDefer)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:276:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let FlagNoDefer = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagNoDefer)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:279:23: warning: static property 'WatchRoot' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let WatchRoot = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagWatchRoot)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:279:23: note: add '@MainActor' to make static property 'WatchRoot' part of global actor 'MainActor'
    public static let WatchRoot = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagWatchRoot)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:279:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let WatchRoot = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagWatchRoot)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:282:23: warning: static property 'IgnoreSelf' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let IgnoreSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagIgnoreSelf)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:282:23: note: add '@MainActor' to make static property 'IgnoreSelf' part of global actor 'MainActor'
    public static let IgnoreSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagIgnoreSelf)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:282:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let IgnoreSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagIgnoreSelf)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:285:23: warning: static property 'FileEvents' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let FileEvents = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagFileEvents)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:285:23: note: add '@MainActor' to make static property 'FileEvents' part of global actor 'MainActor'
    public static let FileEvents = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagFileEvents)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:285:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let FileEvents = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagFileEvents)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:289:23: warning: static property 'MarkSelf' is not concurrency-safe because non-'Sendable' type 'FileSystemEventStreamCreateFlags' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let MarkSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagMarkSelf)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:289:23: note: add '@MainActor' to make static property 'MarkSelf' part of global actor 'MainActor'
    public static let MarkSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagMarkSelf)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:289:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let MarkSelf = FileSystemEventStreamCreateFlags(rawValue: kFSEventStreamCreateFlagMarkSelf)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:294:23: warning: static property 'allFlags' is not concurrency-safe because non-'Sendable' type '[FileSystemEventStreamCreateFlags]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let allFlags: [FileSystemEventStreamCreateFlags] = [.None, .UseCFTypes, .FlagNoDefer, .WatchRoot, .IgnoreSelf, .FileEvents, .MarkSelf]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:264:15: note: consider making struct 'FileSystemEventStreamCreateFlags' conform to the 'Sendable' protocol
public struct FileSystemEventStreamCreateFlags: OptionSet, CustomStringConvertible, CustomDebugStringConvertible {
              ^
                                                                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:294:23: note: add '@MainActor' to make static property 'allFlags' part of global actor 'MainActor'
    public static let allFlags: [FileSystemEventStreamCreateFlags] = [.None, .UseCFTypes, .FlagNoDefer, .WatchRoot, .IgnoreSelf, .FileEvents, .MarkSelf]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/FileSystemEvent.swift:294:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let allFlags: [FileSystemEventStreamCreateFlags] = [.None, .UseCFTypes, .FlagNoDefer, .WatchRoot, .IgnoreSelf, .FileEvents, .MarkSelf]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'Path' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let root = Path(separator)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:37:15: note: consider making struct 'Path' conform to the 'Sendable' protocol
public struct Path {
              ^
                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: add '@MainActor' to make static property 'root' part of global actor 'MainActor'
    public static let root = Path(separator)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let root = Path(separator)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: warning: initializer 'init(stringInterpolation:)' nearly matches defaulted requirement 'init(stringInterpolation:)' of protocol 'ExpressibleByStringInterpolation'
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: candidate has non-matching type '(stringInterpolation: Path...)' [with StringInterpolation = DefaultStringInterpolation]
    public init(stringInterpolation paths: Path...) {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Path.swift:1178:12: note: move 'init(stringInterpolation:)' to another extension to silence this warning
    public init(stringInterpolation paths: Path...) {
           ^
Swift.ExpressibleByStringInterpolation.init:2:1: note: requirement 'init(stringInterpolation:)' declared here
init(stringInterpolation: Self.StringInterpolation)}
^
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: warning: var 'ReadableWritableStringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: convert 'ReadableWritableStringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
var ReadableWritableStringEncoding = String.Encoding.utf8
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: add '@MainActor' to make var 'ReadableWritableStringEncoding' part of global actor 'MainActor'
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/String+FileKit.swift:30:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var ReadableWritableStringEncoding = String.Encoding.utf8
    ^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling NSArray+FileKit.swift, NSData+FileKit.swift, NSDataFile.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling Array+File.swift, ArrayFile.swift, Bundle+FileKit.swift, Data+FileKit.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling FileSystemEvent.swift, FileSystemEventStream.swift, FileSystemWatcher.swift, FileType.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling FileKit.swift, FileKitError.swift, FilePermissions.swift, FileProtection.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling Path.swift, Process+FileKit.swift, PropertyListType.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling NSDictionary+FileKit.swift, NSString+FileKit.swift, Operators.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling DirectoryEnumerator.swift, DispatchEvent.swift, DispatchWatcher.swift, File.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling DataFile.swift, DataType.swift, Dictionary+File.swift, DictionaryFile.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling RelativePathType.swift, String+FileKit.swift, TextFile.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Compiling Image+FileKit.swift, ImageFile.swift, JSONType.swift (in target 'FileKit' from project 'FileKit')
SwiftDriverJobDiscovery normal arm64 Emitting module for FileKit (in target 'FileKit' from project 'FileKit')
SwiftDriver\ Compilation\ Requirements FileKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FileKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation FileKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name FileKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/FileKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit-Swift.h (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/FileKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.swiftdoc (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.swiftmodule (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.abi.json (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.swiftsourceinfo (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.o normal (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.o
ExtractAppIntentsMetadata (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name FileKit --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.13 --bundle-identifier spi-builder-workspace.FileKit --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.appintents --target-triple arm64-apple-macos10.13 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/FileKit.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/FileKit.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/FileKit.build/Debug/FileKit.build/Objects-normal/arm64/FileKit.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 10:52:05.000 appintentsmetadataprocessor[722:4117] Starting appintentsmetadataprocessor export
2025-04-27 10:52:05.035 appintentsmetadataprocessor[722:4117] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.o (in target 'FileKit' from project 'FileKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/FileKit.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:67c85d76cbfefd7f582296e9bcb39100d93bc076, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:67c85d76cbfefd7f582296e9bcb39100d93bc076, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:67c85d76cbfefd7f582296e9bcb39100d93bc076, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:67c85d76cbfefd7f582296e9bcb39100d93bc076, name:My Mac }
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FileKit",
  "name" : "FileKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "FileKit",
      "targets" : [
        "FileKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "FileKitTests",
      "module_type" : "SwiftTarget",
      "name" : "FileKitTests",
      "path" : "Tests",
      "sources" : [
        "FileKitTests.swift"
      ],
      "target_dependencies" : [
        "FileKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FileKit",
      "module_type" : "SwiftTarget",
      "name" : "FileKit",
      "path" : "Sources",
      "product_memberships" : [
        "FileKit"
      ],
      "sources" : [
        "Array+File.swift",
        "ArrayFile.swift",
        "Bundle+FileKit.swift",
        "Data+FileKit.swift",
        "DataFile.swift",
        "DataType.swift",
        "Dictionary+File.swift",
        "DictionaryFile.swift",
        "DirectoryEnumerator.swift",
        "DispatchEvent.swift",
        "DispatchWatcher.swift",
        "File.swift",
        "FileKit.swift",
        "FileKitError.swift",
        "FilePermissions.swift",
        "FileProtection.swift",
        "FileSystemEvent.swift",
        "FileSystemEventStream.swift",
        "FileSystemWatcher.swift",
        "FileType.swift",
        "Image+FileKit.swift",
        "ImageFile.swift",
        "JSONType.swift",
        "NSArray+FileKit.swift",
        "NSData+FileKit.swift",
        "NSDataFile.swift",
        "NSDictionary+FileKit.swift",
        "NSString+FileKit.swift",
        "Operators.swift",
        "Path.swift",
        "Process+FileKit.swift",
        "PropertyListType.swift",
        "RelativePathType.swift",
        "String+FileKit.swift",
        "TextFile.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.