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 Datable, reference main (118634), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 20:37:09 UTC.

Swift 6 data race errors: 4

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/OperatorFoundation/Datable.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/OperatorFoundation/Datable
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 1186348 Conversions between different types of ints and floats
Cloned https://github.com/OperatorFoundation/Datable.git
Revision (git rev-parse @):
118634847e499cc5a1edc1b852ea9b496cf7f5d2
SUCCESS checkout https://github.com/OperatorFoundation/Datable.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "datable",
      "name": "Datable",
      "url": "https://github.com/OperatorFoundation/Datable.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Datable",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/OperatorFoundation/Datable.git
[1/399] Fetching datable
Fetched https://github.com/OperatorFoundation/Datable.git from cache (0.82s)
Creating working copy for https://github.com/OperatorFoundation/Datable.git
Working copy of https://github.com/OperatorFoundation/Datable.git resolved at main (1186348)
warning: '.resolve-product-dependencies': dependency 'datable' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/OperatorFoundation/Datable.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--7754E27361AE5C74.txt
[3/37] Emitting module Datable
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension Data: ExpressibleByStringLiteral {
   | |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:12:23: warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public class DatableConfig
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
   |                       |- warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringEncoding' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:13:23: warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
   |                       |- warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringLiteralEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringLiteralEncoding' with '@MainActor' 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 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[4/40] Compiling Datable Data+Datable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension Data: ExpressibleByStringLiteral {
   | |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:13:23: warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
   |                       |- warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringLiteralEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringLiteralEncoding' with '@MainActor' 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 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
[5/40] Compiling Datable Data+ExpressibleByStringLiteral.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension Data: ExpressibleByStringLiteral {
   | |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:13:23: warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
   |                       |- warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringLiteralEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringLiteralEncoding' with '@MainActor' 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 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
[6/40] Compiling Datable Data+Floatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension Data: ExpressibleByStringLiteral {
   | |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:13:23: warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
   |                       |- warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringLiteralEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringLiteralEncoding' with '@MainActor' 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 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
[7/40] Compiling Datable Data+MaybeIntable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
 8 | import Foundation
 9 |
10 | extension Data: ExpressibleByStringLiteral {
   | |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:13:23: warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
   |                       |- warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringLiteralEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringLiteralEncoding' with '@MainActor' 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 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
[8/40] Compiling Datable Data+MaybeNetworkIntable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:12:23: warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public class DatableConfig
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
   |                       |- warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringEncoding' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:13:23: warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
   |                       |- warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringLiteralEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringLiteralEncoding' with '@MainActor' 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 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[9/40] Compiling Datable Data+Stringable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:12:23: warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public class DatableConfig
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
   |                       |- warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringEncoding' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:13:23: warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
   |                       |- warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringLiteralEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringLiteralEncoding' with '@MainActor' 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 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[10/40] Compiling Datable Datable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:12:23: warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public class DatableConfig
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
   |                       |- warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringEncoding' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:13:23: warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
   |                       |- warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringLiteralEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringLiteralEncoding' with '@MainActor' 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 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[11/40] Compiling Datable DatableConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:12:23: warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public class DatableConfig
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
   |                       |- warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringEncoding' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:13:23: warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
   |                       |- warning: static property 'stringLiteralEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringLiteralEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringLiteralEncoding' with '@MainActor' 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 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[12/40] Compiling Datable NetworkIntable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:12:23: warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public class DatableConfig
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
   |                       |- warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringEncoding' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
[13/40] Compiling Datable String+Arrayable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:12:23: warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public class DatableConfig
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
   |                       |- warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringEncoding' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
[14/40] Compiling Datable String+Datable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:12:23: warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public class DatableConfig
11 | {
12 |     public static var stringEncoding: String.Encoding = .utf8
   |                       |- warning: static property 'stringEncoding' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'stringEncoding' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'stringEncoding' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
[15/40] Compiling Datable Float+MaybeDatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[16/40] Compiling Datable Float+MaybeIntable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[17/40] Compiling Datable Floatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[18/40] Compiling Datable Int+Floatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[19/40] Compiling Datable Double+MaybeDatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[20/40] Compiling Datable Double+Stringable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[21/40] Compiling Datable File.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[22/40] Compiling Datable Float+Floatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
[23/40] Compiling Datable MaybeDatable.swift
[24/40] Compiling Datable MaybeIntable.swift
[25/40] Compiling Datable MaybeNetworkIntable.swift
[26/40] Compiling Datable NetworkDatable.swift
[27/40] Compiling Datable Int+MaybeDatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
[28/40] Compiling Datable Int+MaybeIntable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
[29/40] Compiling Datable Int+Stringable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
[30/40] Compiling Datable Intable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
[31/40] Compiling Datable Arrayable.swift
[32/40] Compiling Datable CSVable.swift
[33/40] Compiling Datable Data+Arrayable.swift
[34/40] Compiling Datable Data+Base64.swift
[35/40] Compiling Datable String+Intable.swift
[36/40] Compiling Datable Stringable.swift
[37/40] Compiling Datable StringableArray+CSVable.swift
[38/40] Compiling Datable UInt+Datable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:23:36: warning: will never be executed
 14 |     public init?(maybeNetworkData: Data)
 15 |     {
 16 |         switch UInt.bitWidth {
    |                     `- note: condition always evaluates to false
 17 |             case 64:
 18 |                 guard let result = UInt64(maybeNetworkData: maybeNetworkData) else {
    :
 21 |                 self = UInt(result)
 22 |             case 32:
 23 |                 guard let result = UInt32(maybeNetworkData: maybeNetworkData) else {
    |                                    `- warning: will never be executed
 24 |                     return nil
 25 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:42:24: warning: will never be executed
 32 |     public var maybeNetworkData: Data?
 33 |     {
 34 |         switch UInt.bitWidth {
    |                     `- note: condition always evaluates to true
 35 |             case 64:
 36 |                 let result = UInt64(self)
    :
 40 |                 return result.maybeNetworkData
 41 |             default:
 42 |                 return nil
    |                        `- warning: will never be executed
 43 |         }
 44 |     }
[39/40] Compiling Datable UInt+MaybeNetworkDatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:23:36: warning: will never be executed
 14 |     public init?(maybeNetworkData: Data)
 15 |     {
 16 |         switch UInt.bitWidth {
    |                     `- note: condition always evaluates to false
 17 |             case 64:
 18 |                 guard let result = UInt64(maybeNetworkData: maybeNetworkData) else {
    :
 21 |                 self = UInt(result)
 22 |             case 32:
 23 |                 guard let result = UInt32(maybeNetworkData: maybeNetworkData) else {
    |                                    `- warning: will never be executed
 24 |                     return nil
 25 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:42:24: warning: will never be executed
 32 |     public var maybeNetworkData: Data?
 33 |     {
 34 |         switch UInt.bitWidth {
    |                     `- note: condition always evaluates to true
 35 |             case 64:
 36 |                 let result = UInt64(self)
    :
 40 |                 return result.maybeNetworkData
 41 |             default:
 42 |                 return nil
    |                        `- warning: will never be executed
 43 |         }
 44 |     }
[40/40] Compiling Datable UInt+Stringable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:15:23: warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
   |                       |- warning: static property 'localEndianness' is not concurrency-safe because non-'Sendable' type 'Endianness' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'localEndianness' with '@MainActor' 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 | }
17 |
   :
24 | }
25 |
26 | public enum Endianness: Int
   |             `- note: consider making enum 'Endianness' conform to the 'Sendable' protocol
27 | {
28 |     case big    = 1
/Users/admin/builder/spi-builder-workspace/Sources/Datable/DatableConfig.swift:14:23: warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var stringEncoding: String.Encoding = .utf8
13 |     public static var stringLiteralEncoding: StringLiteralEncoding = .utf8
14 |     public static var endianess: Endianness = .big
   |                       |- warning: static property 'endianess' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'endianess' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'endianess' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 |     public static let localEndianness: Endianness = determineLocalEndianness()
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:23:36: warning: will never be executed
 14 |     public init?(maybeNetworkData: Data)
 15 |     {
 16 |         switch UInt.bitWidth {
    |                     `- note: condition always evaluates to false
 17 |             case 64:
 18 |                 guard let result = UInt64(maybeNetworkData: maybeNetworkData) else {
    :
 21 |                 self = UInt(result)
 22 |             case 32:
 23 |                 guard let result = UInt32(maybeNetworkData: maybeNetworkData) else {
    |                                    `- warning: will never be executed
 24 |                     return nil
 25 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:42:24: warning: will never be executed
 32 |     public var maybeNetworkData: Data?
 33 |     {
 34 |         switch UInt.bitWidth {
    |                     `- note: condition always evaluates to true
 35 |             case 64:
 36 |                 let result = UInt64(self)
    :
 40 |                 return result.maybeNetworkData
 41 |             default:
 42 |                 return nil
    |                        `- warning: will never be executed
 43 |         }
 44 |     }
Build complete! (15.23s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Datable",
  "name" : "Datable",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    }
  ],
  "products" : [
    {
      "name" : "Datable",
      "targets" : [
        "Datable"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "DatableTests",
      "module_type" : "SwiftTarget",
      "name" : "DatableTests",
      "path" : "Tests/DatableTests",
      "sources" : [
        "DatableTests.swift"
      ],
      "target_dependencies" : [
        "Datable"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Datable",
      "module_type" : "SwiftTarget",
      "name" : "Datable",
      "path" : "Sources/Datable",
      "product_memberships" : [
        "Datable"
      ],
      "sources" : [
        "Arrayable.swift",
        "CSVable.swift",
        "Data+Arrayable.swift",
        "Data+Base64.swift",
        "Data+Datable.swift",
        "Data+ExpressibleByStringLiteral.swift",
        "Data+Floatable.swift",
        "Data+MaybeIntable.swift",
        "Data+MaybeNetworkIntable.swift",
        "Data+Stringable.swift",
        "Datable.swift",
        "DatableConfig.swift",
        "Double+MaybeDatable.swift",
        "Double+Stringable.swift",
        "File.swift",
        "Float+Floatable.swift",
        "Float+MaybeDatable.swift",
        "Float+MaybeIntable.swift",
        "Floatable.swift",
        "Int+Floatable.swift",
        "Int+MaybeDatable.swift",
        "Int+MaybeIntable.swift",
        "Int+Stringable.swift",
        "Intable.swift",
        "MaybeDatable.swift",
        "MaybeIntable.swift",
        "MaybeNetworkIntable.swift",
        "NetworkDatable.swift",
        "NetworkIntable.swift",
        "String+Arrayable.swift",
        "String+Datable.swift",
        "String+Intable.swift",
        "Stringable.swift",
        "StringableArray+CSVable.swift",
        "UInt+Datable.swift",
        "UInt+MaybeNetworkDatable.swift",
        "UInt+Stringable.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
Done.