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

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of BFKit with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.41.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/FabrizioBrancati/BFKit-Swift.git
Reference: 6.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
warning: templates not found in /usr/share/git-core/templates
From https://github.com/FabrizioBrancati/BFKit-Swift
 * tag               6.0.1      -> FETCH_HEAD
HEAD is now at c8a6f15 Fixing `swift_version` and bumping version to 6.0.1
Cloned https://github.com/FabrizioBrancati/BFKit-Swift.git
Revision (git rev-parse @):
c8a6f1584a6955387bd236581a127a55e8a4d6c1
SUCCESS checkout https://github.com/FabrizioBrancati/BFKit-Swift.git at 6.0.1
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/FabrizioBrancati/BFKit-Swift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.4.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-33747A42983211AE.txt
[3/19] Compiling BFKit BFApp.swift
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: warning: static property 'isDebug' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: note: isolate 'isDebug' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: warning: static property 'name' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var name: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: note: isolate 'name' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var name: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:158:16: warning: static property 'version' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var version: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:158:16: note: isolate 'version' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var version: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:163:16: warning: static property 'build' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var build: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:163:16: note: isolate 'build' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var build: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:168:16: warning: static property 'executable' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var executable: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:168:16: note: isolate 'executable' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var executable: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:173:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var bundle: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:173:16: note: isolate 'bundle' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var bundle: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:58:12: warning: reference to static property 'isDebug' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        if isDebug {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: note: static property declared here
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:67:13: warning: reference to static property 'isDebug' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        if !isDebug {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: note: static property declared here
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:123:57: warning: reference to static property 'name' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        FileManager.default.setSettings(filename: BFApp.name, object: object, forKey: objectKey)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: note: static property declared here
    static var name: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:131:57: warning: reference to static property 'name' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        FileManager.default.getSettings(filename: BFApp.name, forKey: objectKey)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: note: static property declared here
    static var name: String = {
               ^
[4/19] Compiling BFKit BFDataStructures.swift
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: warning: static property 'isDebug' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: note: isolate 'isDebug' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: warning: static property 'name' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var name: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: note: isolate 'name' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var name: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:158:16: warning: static property 'version' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var version: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:158:16: note: isolate 'version' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var version: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:163:16: warning: static property 'build' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var build: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:163:16: note: isolate 'build' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var build: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:168:16: warning: static property 'executable' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var executable: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:168:16: note: isolate 'executable' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var executable: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:173:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var bundle: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:173:16: note: isolate 'bundle' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var bundle: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:58:12: warning: reference to static property 'isDebug' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        if isDebug {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: note: static property declared here
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:67:13: warning: reference to static property 'isDebug' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        if !isDebug {
            ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: note: static property declared here
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:123:57: warning: reference to static property 'name' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        FileManager.default.setSettings(filename: BFApp.name, object: object, forKey: objectKey)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: note: static property declared here
    static var name: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:131:57: warning: reference to static property 'name' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        FileManager.default.getSettings(filename: BFApp.name, forKey: objectKey)
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: note: static property declared here
    static var name: String = {
               ^
[5/19] Compiling BFKit BFPassword.swift
[6/19] Compiling BFKit Array+Extensions.swift
[7/19] Compiling BFKit Date+Extensions.swift
[8/19] Compiling BFKit Dictionary+Extensions.swift
[9/19] Compiling BFKit Collection+Extensions.swift
[10/19] Compiling BFKit Data+Extensions.swift
[11/19] Compiling BFKit FileManager+Extensions.swift
[12/19] Compiling BFKit NSObject+Extensions.swift
[13/19] Compiling BFKit Number+Extensions.swift
[14/19] Compiling BFKit ProcessInfo+Extensions.swift
[15/19] Compiling BFKit String+Extensions.swift
[16/19] Compiling BFKit Set+Extensions.swift
[17/20] Compiling BFKit Thread+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/Foundation/Thread+Extensions.swift:37:9: warning: capture of 'block' with non-sendable type '() -> Void' in a `@Sendable` closure
        block()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/Foundation/Thread+Extensions.swift:37:9: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        block()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/Foundation/Thread+Extensions.swift:46:9: warning: capture of 'block' with non-sendable type '() -> Void' in a `@Sendable` closure
        block()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/Foundation/Thread+Extensions.swift:46:9: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        block()
        ^
[18/20] Emitting module BFKit
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: warning: static property 'isDebug' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:50:23: note: isolate 'isDebug' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var isDebug = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: warning: static property 'name' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var name: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:153:16: note: isolate 'name' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var name: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:158:16: warning: static property 'version' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var version: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:158:16: note: isolate 'version' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var version: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:163:16: warning: static property 'build' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var build: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:163:16: note: isolate 'build' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var build: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:168:16: warning: static property 'executable' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var executable: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:168:16: note: isolate 'executable' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var executable: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:173:16: warning: static property 'bundle' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var bundle: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFApp.swift:173:16: note: isolate 'bundle' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var bundle: String = {
               ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:36:23: warning: static property 'active' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var active: Bool = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:36:23: note: isolate 'active' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var active: Bool = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: warning: static property 'logged' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: note: isolate 'logged' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: warning: static property 'detailedLog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var detailedLog: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: note: isolate 'detailedLog' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var detailedLog: String = ""
                      ^
[19/20] Compiling BFKit BFKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:36:23: warning: static property 'active' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var active: Bool = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:36:23: note: isolate 'active' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var active: Bool = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: warning: static property 'logged' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: note: isolate 'logged' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: warning: static property 'detailedLog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var detailedLog: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: note: isolate 'detailedLog' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var detailedLog: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:55:12: warning: reference to static property 'active' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        if active {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:36:23: note: static property declared here
    public static var active: Bool = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:56:13: warning: reference to static property 'logged' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
            logged += message + "\n"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: note: static property declared here
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:63:13: warning: reference to static property 'detailedLog' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
            detailedLog += log + "\n"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: note: static property declared here
    public static var detailedLog: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:121:9: warning: reference to static property 'logged' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        logged = ""
        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: note: static property declared here
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:122:9: warning: reference to static property 'detailedLog' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        detailedLog = ""
        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: note: static property declared here
    public static var detailedLog: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:132:73: warning: reference to static property 'detailedLog' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        try FileManager.default.save(file: filename, in: path, content: detailedLog)
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: note: static property declared here
    public static var detailedLog: String = ""
                      ^
[20/20] Compiling BFKit BFLog.swift
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:36:23: warning: static property 'active' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var active: Bool = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:36:23: note: isolate 'active' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var active: Bool = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: warning: static property 'logged' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: note: isolate 'logged' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: warning: static property 'detailedLog' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    public static var detailedLog: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: note: isolate 'detailedLog' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    public static var detailedLog: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:55:12: warning: reference to static property 'active' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        if active {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:36:23: note: static property declared here
    public static var active: Bool = false
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:56:13: warning: reference to static property 'logged' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
            logged += message + "\n"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: note: static property declared here
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:63:13: warning: reference to static property 'detailedLog' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
            detailedLog += log + "\n"
            ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: note: static property declared here
    public static var detailedLog: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:121:9: warning: reference to static property 'logged' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        logged = ""
        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:39:23: note: static property declared here
    public static var logged: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:122:9: warning: reference to static property 'detailedLog' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        detailedLog = ""
        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: note: static property declared here
    public static var detailedLog: String = ""
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:132:73: warning: reference to static property 'detailedLog' is not concurrency-safe because it involves shared mutable state; this is an error in Swift 6
        try FileManager.default.save(file: filename, in: path, content: detailedLog)
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/BFKit/Linux/BFKit/BFLog.swift:41:23: note: static property declared here
    public static var detailedLog: String = ""
                      ^
Build complete! (12.25s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "BFKit",
  "name" : "BFKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "8.0"
    },
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    }
  ],
  "products" : [
    {
      "name" : "BFKit",
      "targets" : [
        "BFKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "BFKitTests",
      "module_type" : "SwiftTarget",
      "name" : "BFKitTests",
      "path" : "Tests/BFKitTests",
      "sources" : [
        "Linux/BFKit/BFAppTests.swift",
        "Linux/BFKit/BFDataStructuresTests.swift",
        "Linux/BFKit/BFLogTests.swift",
        "Linux/BFKit/BFPasswordTests.swift",
        "Linux/Foundation/ArrayExtensionTests.swift",
        "Linux/Foundation/CollectionExtensionTests.swift",
        "Linux/Foundation/DataExtensionTests.swift",
        "Linux/Foundation/DateExtensionTests.swift",
        "Linux/Foundation/DictionaryExtensionTests.swift",
        "Linux/Foundation/FileManagerExtensionTests.swift",
        "Linux/Foundation/NSObjectExtensionTests.swift",
        "Linux/Foundation/NumberExtensionTests.swift",
        "Linux/Foundation/ProcessInfoExtensionTests.swift",
        "Linux/Foundation/SetExtensionTests.swift",
        "Linux/Foundation/StringExtensionTests.swift",
        "Linux/Foundation/ThreadExtensionTests.swift"
      ],
      "target_dependencies" : [
        "BFKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "BFKit",
      "module_type" : "SwiftTarget",
      "name" : "BFKit",
      "path" : "Sources/BFKit",
      "product_memberships" : [
        "BFKit"
      ],
      "sources" : [
        "Linux/BFKit/BFApp.swift",
        "Linux/BFKit/BFDataStructures.swift",
        "Linux/BFKit/BFKit.swift",
        "Linux/BFKit/BFLog.swift",
        "Linux/BFKit/BFPassword.swift",
        "Linux/Foundation/Array+Extensions.swift",
        "Linux/Foundation/Collection+Extensions.swift",
        "Linux/Foundation/Data+Extensions.swift",
        "Linux/Foundation/Date+Extensions.swift",
        "Linux/Foundation/Dictionary+Extensions.swift",
        "Linux/Foundation/FileManager+Extensions.swift",
        "Linux/Foundation/NSObject+Extensions.swift",
        "Linux/Foundation/Number+Extensions.swift",
        "Linux/Foundation/ProcessInfo+Extensions.swift",
        "Linux/Foundation/Set+Extensions.swift",
        "Linux/Foundation/String+Extensions.swift",
        "Linux/Foundation/Thread+Extensions.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.1"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.