Build Information
Successful build of SchafKit, reference master (7b3171
), with Swift 6.0 for macOS (SPM) on 30 Nov 2024 06:42:55 UTC.
Swift 6 data race errors: 15
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
291 |
292 | extension String: Identifiable {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
293 | public var id: String {
294 | return self
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/Timer.swift:11:13: warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | static func scheduledTimer(withTimeInterval timeInterval : TimeInterval, block : @escaping SKBlock) -> Timer {
10 | scheduledTimer(withTimeInterval: timeInterval, repeats: false, block: { (_) in
11 | block()
| |- warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
12 | })
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Other/Optional.swift:3:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Optional: Identifiable where Wrapped: Identifiable {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public var id: some Hashable {
5 | return self?.id
[71/110] Compiling SchafKit TimeInterval.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/String.swift:292:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
290 | // - MARK: Identifiable
291 |
292 | extension String: Identifiable {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
293 | public var id: String {
294 | return self
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/Timer.swift:11:13: warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | static func scheduledTimer(withTimeInterval timeInterval : TimeInterval, block : @escaping SKBlock) -> Timer {
10 | scheduledTimer(withTimeInterval: timeInterval, repeats: false, block: { (_) in
11 | block()
| |- warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
12 | })
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Other/Optional.swift:3:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Optional: Identifiable where Wrapped: Identifiable {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public var id: some Hashable {
5 | return self?.id
[72/110] Compiling SchafKit Timer.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/String.swift:292:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
290 | // - MARK: Identifiable
291 |
292 | extension String: Identifiable {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
293 | public var id: String {
294 | return self
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/Timer.swift:11:13: warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | static func scheduledTimer(withTimeInterval timeInterval : TimeInterval, block : @escaping SKBlock) -> Timer {
10 | scheduledTimer(withTimeInterval: timeInterval, repeats: false, block: { (_) in
11 | block()
| |- warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
12 | })
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Other/Optional.swift:3:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Optional: Identifiable where Wrapped: Identifiable {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public var id: some Hashable {
5 | return self?.id
[73/110] Compiling SchafKit URL.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/String.swift:292:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
290 | // - MARK: Identifiable
291 |
292 | extension String: Identifiable {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
293 | public var id: String {
294 | return self
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/Timer.swift:11:13: warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | static func scheduledTimer(withTimeInterval timeInterval : TimeInterval, block : @escaping SKBlock) -> Timer {
10 | scheduledTimer(withTimeInterval: timeInterval, repeats: false, block: { (_) in
11 | block()
| |- warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
12 | })
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Other/Optional.swift:3:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Optional: Identifiable where Wrapped: Identifiable {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public var id: some Hashable {
5 | return self?.id
[74/110] Compiling SchafKit CGImage.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/String.swift:292:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
290 | // - MARK: Identifiable
291 |
292 | extension String: Identifiable {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
293 | public var id: String {
294 | return self
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/Timer.swift:11:13: warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | static func scheduledTimer(withTimeInterval timeInterval : TimeInterval, block : @escaping SKBlock) -> Timer {
10 | scheduledTimer(withTimeInterval: timeInterval, repeats: false, block: { (_) in
11 | block()
| |- warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
12 | })
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Other/Optional.swift:3:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Optional: Identifiable where Wrapped: Identifiable {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public var id: some Hashable {
5 | return self?.id
[75/110] Compiling SchafKit Digest+Hex.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/String.swift:292:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
290 | // - MARK: Identifiable
291 |
292 | extension String: Identifiable {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
293 | public var id: String {
294 | return self
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/Timer.swift:11:13: warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | static func scheduledTimer(withTimeInterval timeInterval : TimeInterval, block : @escaping SKBlock) -> Timer {
10 | scheduledTimer(withTimeInterval: timeInterval, repeats: false, block: { (_) in
11 | block()
| |- warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
12 | })
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Other/Optional.swift:3:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Optional: Identifiable where Wrapped: Identifiable {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public var id: some Hashable {
5 | return self?.id
[76/110] Compiling SchafKit NSLayoutConstraint.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/String.swift:292:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
290 | // - MARK: Identifiable
291 |
292 | extension String: Identifiable {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
293 | public var id: String {
294 | return self
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/Timer.swift:11:13: warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | static func scheduledTimer(withTimeInterval timeInterval : TimeInterval, block : @escaping SKBlock) -> Timer {
10 | scheduledTimer(withTimeInterval: timeInterval, repeats: false, block: { (_) in
11 | block()
| |- warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
12 | })
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Other/Optional.swift:3:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Optional: Identifiable where Wrapped: Identifiable {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public var id: some Hashable {
5 | return self?.id
[77/110] Compiling SchafKit NSRegularExpression.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/String.swift:292:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
290 | // - MARK: Identifiable
291 |
292 | extension String: Identifiable {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
293 | public var id: String {
294 | return self
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/Timer.swift:11:13: warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | static func scheduledTimer(withTimeInterval timeInterval : TimeInterval, block : @escaping SKBlock) -> Timer {
10 | scheduledTimer(withTimeInterval: timeInterval, repeats: false, block: { (_) in
11 | block()
| |- warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
12 | })
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Other/Optional.swift:3:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Optional: Identifiable where Wrapped: Identifiable {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public var id: some Hashable {
5 | return self?.id
[78/110] Compiling SchafKit Optional.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/String.swift:292:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
290 | // - MARK: Identifiable
291 |
292 | extension String: Identifiable {
| |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
293 | public var id: String {
294 | return self
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Generic/Timer.swift:11:13: warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
9 | static func scheduledTimer(withTimeInterval timeInterval : TimeInterval, block : @escaping SKBlock) -> Timer {
10 | scheduledTimer(withTimeInterval: timeInterval, repeats: false, block: { (_) in
11 | block()
| |- warning: capture of 'block' with non-sendable type 'SKBlock' (aka '() -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
12 | })
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Extensions/Other/Optional.swift:3:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | import Foundation
2 |
3 | extension Optional: Identifiable where Wrapped: Identifiable {
| |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'Identifiable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
4 | public var id: some Hashable {
5 | return self?.id
[79/110] Compiling SchafKit Result.swift
[80/110] Compiling SchafKit Color+Components.swift
[81/110] Compiling SchafKit Color+UIColor.swift
[82/110] Compiling SchafKit Image+SFSymbols.swift
[83/110] Compiling SchafKit View+Erase.swift
[84/110] Compiling SchafKit UIAlertController.swift
[85/110] Compiling SchafKit UIColor.swift
[86/110] Compiling SchafKit UIDevice.swift
[87/110] Compiling SchafKit UIImage.swift
[88/110] Compiling SchafKit UIView.swift
[89/110] Compiling SchafKit UIViewController.swift
[90/110] Compiling SchafKit Screen.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[91/110] Compiling SchafKit Curve25519XSalsa20Poly1305BoxAlgorithm.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[92/110] Compiling SchafKit Ed25519Algorithm.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[93/110] Compiling SchafKit SKCryptography.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[94/110] Compiling SchafKit XSalsa20Poly1305SecretBoxAlgorithm.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[95/110] Compiling SchafKit SKDispatchHelper.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[96/110] Compiling SchafKit SKDirectory.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[97/110] Compiling SchafKit SKFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[98/110] Compiling SchafKit SKFileSystemItem.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[99/110] Compiling SchafKit SKKeychain.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[100/110] Compiling SchafKit SKNetworking.Request.Body.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Cross Platform/Screen.swift:9:23: warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
7 |
8 | public class Screen {
9 | public static var main = Screen()
| |- warning: static property 'main' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'main' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'main' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 |
11 | private init() {}
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/Dispatch/SKDispatchHelper.swift:23:34: warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
17 | - block : The block to dispatch.
18 | */
19 | public class func dispatch(on queue: DispatchQueue, sync: Bool = false, block: @escaping SKBlock){
| `- note: parameter 'block' is implicitly non-sendable
20 | if (sync){
21 | queue.sync(execute: block)
22 | }else {
23 | queue.async(execute: block)
| `- warning: passing non-sendable parameter 'block' to function expecting a @Sendable closure
24 | }
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 | private let slash = "/"
6 |
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:10:23: warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
| |- warning: static property 'bundle' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bundle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 |
12 | /// The `Library` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:13:23: warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
11 |
12 | /// The `Library` directory.
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'library' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'library' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:15:23: warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
13 | public static let library = SKDirectory(path: fileSystem.urls(for: .libraryDirectory, in: .userDomainMask).first!.relativePath)
14 | /// The `Library/ApplicationSupport` directory.
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'applicationSupport' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'applicationSupport' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:17:23: warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
15 | public static let applicationSupport = SKDirectory(path: fileSystem.urls(for: .applicationSupportDirectory, in: .userDomainMask).first!.relativePath)
16 | /// The `Library/Caches` directory.
17 | public static let caches = SKDirectory(path: fileSystem.urls(for: .cachesDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'caches' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'caches' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | /// The `Documents` directory.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:20:23: warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
18 |
19 | /// The `Documents` directory.
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
| |- warning: static property 'documents' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'documents' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKDirectory.swift:22:23: warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
6 |
7 | /// A dictionary representation.
8 | public class SKDirectory : SKFileSystemItem {
| `- note: class 'SKDirectory' does not conform to the 'Sendable' protocol
9 | /// The Bundle directory.
10 | public static let bundle = SKDirectory(path : Bundle.main.bundlePath)
:
20 | public static let documents = SKDirectory(path: fileSystem.urls(for: .documentDirectory, in: .userDomainMask).first!.relativePath)
21 | /// The `Documents/Inbox` directory.
22 | public static let inbox = documents.directoryByAppending(path: "Inbox")
| |- warning: static property 'inbox' is not concurrency-safe because non-'Sendable' type 'SKDirectory' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'inbox' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 | /// Returns the directory for the specified app group, if it exists.
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/FileSystem/SKFileSystemItem.swift:4:13: warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
2 | import Foundation
3 |
4 | private let fileSystem = FileManager.default
| |- warning: let 'fileSystem' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'fileSystem' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
5 |
6 | /// An item in the filesystem.
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
[101/110] Compiling SchafKit SKNetworkingBlocks.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
[102/110] Compiling SchafKit SKRegexMatch.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
[103/110] Compiling SchafKit String+OKRegexMatch.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
[104/110] Compiling SchafKit SchafKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
[105/110] Compiling SchafKit SKStoreKitHelper.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
[106/110] Compiling SchafKit AFText.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
[107/110] Compiling SchafKit AlignedText.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
[108/110] Compiling SchafKit Blur.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
[109/110] Compiling SchafKit EmojiTextFieldView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
[110/110] Compiling SchafKit FixedToggle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:70:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
67 |
68 | @available(watchOS 6.2, *)
69 | internal class _SKPaymentQueueHelper : NSObject, SKPaymentTransactionObserver {
| `- note: class '_SKPaymentQueueHelper' does not conform to the 'Sendable' protocol
70 | static let shared = _SKPaymentQueueHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type '_SKPaymentQueueHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 |
72 | let paymentQueue = SKPaymentQueue.default()
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:19:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
16 |
17 | @available(watchOS 6.2, *)
18 | public class SKStoreKitHelper {
| `- note: class 'SKStoreKitHelper' does not conform to the 'Sendable' protocol
19 | public static let shared = SKStoreKitHelper()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKStoreKitHelper' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 | private let queueHelper = _SKPaymentQueueHelper.shared
/Users/admin/builder/spi-builder-workspace/Sources/SchafKit/Kit/StoreKit/SKStoreKitHelper.swift:140:24: warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
138 | @available(watchOS 6.2, *)
139 | internal class _SKStoreKitProductRequest : NSObject, SKProductsRequestDelegate {
140 | private static var currentRequests : [_SKStoreKitProductRequest] = []
| |- warning: static property 'currentRequests' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'currentRequests' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'currentRequests' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |
142 | var completionHandler : SKProductsFetchCompletionHandler?
Build complete! (23.21s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SchafKit",
"name" : "SchafKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SchafKit",
"targets" : [
"SchafKit"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SchafKitTests",
"module_type" : "SwiftTarget",
"name" : "SchafKitTests",
"path" : "Tests/SchafKitTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/SchafKitTests/Images",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Common/Options/JSOptionSet.swift",
"Common/Structs/JS8BitRGBARepresentation.swift",
"Common/Structs/JSJsonRepresentable.swift",
"Common/Structs/JSRGBARepresentation.swift",
"Common/Units/JSTimeUnit.swift",
"Common/Units/OKUnit.swift",
"Extensions/Collections/Array.swift",
"Extensions/Collections/Dictionary.swift",
"Extensions/Other/NSRegularExpression.swift",
"Extensions/Scalar/Character.swift",
"Extensions/Scalar/Double.swift",
"Extensions/Scalar/String.swift",
"Extensions/UIKit+AppKit/UIColor.swift",
"Extensions/UIKit+AppKit/UIImage.swift",
"Kit/Cryptography.swift",
"Kit/Keychain.swift",
"Kit/Network.swift",
"Kit/Regex.swift",
"Tests.swift"
],
"target_dependencies" : [
"SchafKit"
],
"type" : "test"
},
{
"c99name" : "SchafKit",
"module_type" : "SwiftTarget",
"name" : "SchafKit",
"path" : "Sources/SchafKit",
"product_memberships" : [
"SchafKit"
],
"sources" : [
"Common/BackgroundPublished.swift",
"Common/Blocks.swift",
"Common/CodableSettingStorage.swift",
"Common/Enums/SKAxis.swift",
"Common/Options/SKOptionSet.swift",
"Common/Options/SKOptions.swift",
"Common/OrderedDictionary.swift",
"Common/PropertyWrappers/EquatablePublished.swift",
"Common/PropertyWrappers/SettingStorage.swift",
"Common/Publishable.swift",
"Common/PublishedCodableSettingStorage.swift",
"Common/PublishedSettingStorage.swift",
"Common/Structs/SK8BitRGBARepresentation.swift",
"Common/Structs/SKHSLARepresentation.swift",
"Common/Structs/SKJsonRepresentable.swift",
"Common/Structs/SKRGBARepresentation.swift",
"Common/Units/SKTimeUnit.swift",
"Common/Units/SKUnit.swift",
"Extensions/Collections/Array.swift",
"Extensions/Collections/Collection.swift",
"Extensions/Collections/Dictionary.swift",
"Extensions/Collections/Sequence.swift",
"Extensions/CoreData/NSManagedObjectContext.swift",
"Extensions/Generic/Bool.swift",
"Extensions/Generic/CGPoint.swift",
"Extensions/Generic/Character.swift",
"Extensions/Generic/Data.swift",
"Extensions/Generic/Date.swift",
"Extensions/Generic/DateFormatter.swift",
"Extensions/Generic/Double.swift",
"Extensions/Generic/Hashable.swift",
"Extensions/Generic/NSAttributedString.swift",
"Extensions/Generic/NSMutableAttributedString.swift",
"Extensions/Generic/NSObject.swift",
"Extensions/Generic/String+Markdown.swift",
"Extensions/Generic/String.swift",
"Extensions/Generic/TimeInterval.swift",
"Extensions/Generic/Timer.swift",
"Extensions/Generic/URL.swift",
"Extensions/Other/CGImage.swift",
"Extensions/Other/Digest+Hex.swift",
"Extensions/Other/NSLayoutConstraint.swift",
"Extensions/Other/NSRegularExpression.swift",
"Extensions/Other/Optional.swift",
"Extensions/Other/Result.swift",
"Extensions/SwiftUI/Color+Components.swift",
"Extensions/SwiftUI/Color+UIColor.swift",
"Extensions/SwiftUI/Image+SFSymbols.swift",
"Extensions/SwiftUI/View+Erase.swift",
"Extensions/UIKit+AppKit/UIAlertController.swift",
"Extensions/UIKit+AppKit/UIColor.swift",
"Extensions/UIKit+AppKit/UIDevice.swift",
"Extensions/UIKit+AppKit/UIImage.swift",
"Extensions/UIKit+AppKit/UIView.swift",
"Extensions/UIKit+AppKit/UIViewController.swift",
"Kit/Alerting/Platforms/SKAlerting-iOS+tvOS.swift",
"Kit/Alerting/Platforms/SKAlerting-macOS.swift",
"Kit/Alerting/Platforms/SKAlerting-watchOS.swift",
"Kit/Alerting/Platforms/_MultiInputView.swift",
"Kit/Alerting/SKAlerting.Action.Block.swift",
"Kit/Alerting/SKAlerting.Action.Style.swift",
"Kit/Alerting/SKAlerting.Action.swift",
"Kit/Alerting/SKAlerting.Style.swift",
"Kit/Alerting/SKAlerting.TextFieldConfiguration.swift",
"Kit/Alerting/SKAlerting.swift",
"Kit/Cross Platform/Application.swift",
"Kit/Cross Platform/Screen.swift",
"Kit/Cryptography/Curve25519XSalsa20Poly1305BoxAlgorithm.swift",
"Kit/Cryptography/Ed25519Algorithm.swift",
"Kit/Cryptography/SKCryptography.swift",
"Kit/Cryptography/XSalsa20Poly1305SecretBoxAlgorithm.swift",
"Kit/Dispatch/SKDispatchHelper.swift",
"Kit/FileSystem/SKDirectory.swift",
"Kit/FileSystem/SKFile.swift",
"Kit/FileSystem/SKFileSystemItem.swift",
"Kit/Keychain/SKKeychain.swift",
"Kit/Networking/Request/SKNetworking.Request.Body.swift",
"Kit/Networking/Request/SKNetworking.Request.HeaderField.swift",
"Kit/Networking/Request/SKNetworking.Request.Method.swift",
"Kit/Networking/Request/SKNetworking.Request.Options.swift",
"Kit/Networking/Request/SKNetworking.Request.swift",
"Kit/Networking/Response/SKNetworking.Response.Status.swift",
"Kit/Networking/Response/SKNetworking.Response.swift",
"Kit/Networking/Result/SKNetworking.Result.swift",
"Kit/Networking/SKNetworking.Endpoint.swift",
"Kit/Networking/SKNetworking._Helper.swift",
"Kit/Networking/SKNetworking.swift",
"Kit/Networking/SKNetworkingBlocks.swift",
"Kit/Regular Expression/SKRegexMatch.swift",
"Kit/Regular Expression/String+OKRegexMatch.swift",
"Kit/SchafKit.swift",
"Kit/StoreKit/SKStoreKitHelper.swift",
"Kit/SwiftUI/Components/AFText.swift",
"Kit/SwiftUI/Components/AlignedText.swift",
"Kit/SwiftUI/Components/Blur.swift",
"Kit/SwiftUI/Components/EmojiTextFieldView.swift",
"Kit/SwiftUI/Components/FixedToggle.swift",
"Kit/SwiftUI/Components/LabeledView.swift",
"Kit/SwiftUI/Components/PresentationLink.swift",
"Kit/SwiftUI/Components/RoundedCorners.swift",
"Kit/SwiftUI/Components/SearchBar.swift",
"Kit/SwiftUI/Components/TimePicker.swift",
"Kit/SwiftUI/Helpers/AppearanceHandler.swift",
"Kit/SwiftUI/Helpers/KeyboardResponder.swift",
"Kit/SwiftUI/View.swift",
"Platform-Specific/iOS+tvOS/Classes/OKSubtileNotification.swift",
"Platform-Specific/iOS+tvOS/UIApplication.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.