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 Linux on 3 Nov 2024 20:29:42 UTC.

Swift 6 data race errors: 4

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

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 /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
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
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/OperatorFoundation/Datable.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/36] Emitting module Datable
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/host/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
/host/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()
/host/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 | }
/host/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 String+Arrayable.swift
/host/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
[5/40] Compiling Datable String+Datable.swift
/host/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
[6/40] Compiling Datable String+Intable.swift
/host/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
[7/40] Compiling Datable Stringable.swift
/host/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
[8/40] Compiling Datable Arrayable.swift
[9/40] Compiling Datable CSVable.swift
[10/40] Compiling Datable Data+Arrayable.swift
[11/40] Compiling Datable Data+Base64.swift
[12/40] Compiling Datable Data+Datable.swift
[13/40] Compiling Datable Datable.swift
/host/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
/host/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()
/host/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 | }
/host/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
[14/40] Compiling Datable DatableConfig.swift
/host/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
/host/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()
/host/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 | }
/host/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
[15/40] Compiling Datable Double+MaybeDatable.swift
/host/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
/host/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()
/host/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 | }
/host/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 Double+Stringable.swift
/host/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
/host/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()
/host/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 | }
/host/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 File.swift
/host/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
/host/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()
/host/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 | }
/host/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 Data+ExpressibleByStringLiteral.swift
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/host/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()
/host/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
[19/40] Compiling Datable Data+Floatable.swift
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/host/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()
/host/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
[20/40] Compiling Datable Data+MaybeIntable.swift
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/host/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()
/host/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
[21/40] Compiling Datable Data+MaybeNetworkIntable.swift
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/host/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()
/host/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
[22/40] Compiling Datable Data+Stringable.swift
/host/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 'FoundationEssentials' 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 'FoundationEssentials' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |     public typealias StringLiteralType = String
12 |
/host/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()
/host/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
[23/40] Compiling Datable Int+MaybeDatable.swift
/host/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
/host/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 | }
[24/40] Compiling Datable Int+MaybeIntable.swift
/host/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
/host/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 | }
[25/40] Compiling Datable Int+Stringable.swift
/host/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
/host/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 | }
[26/40] Compiling Datable Intable.swift
/host/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
/host/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 | }
[27/40] Compiling Datable MaybeDatable.swift
/host/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
/host/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 Float+Floatable.swift
/host/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 | }
/host/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
[29/40] Compiling Datable Float+MaybeDatable.swift
/host/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 | }
/host/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
[30/40] Compiling Datable Float+MaybeIntable.swift
/host/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 | }
/host/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
[31/40] Compiling Datable Floatable.swift
/host/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 | }
/host/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
[32/40] Compiling Datable Int+Floatable.swift
/host/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 | }
/host/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
[33/40] Compiling Datable MaybeIntable.swift
[34/40] Compiling Datable MaybeNetworkIntable.swift
[35/40] Compiling Datable NetworkDatable.swift
[36/40] Compiling Datable NetworkIntable.swift
[37/40] Compiling Datable StringableArray+CSVable.swift
/host/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
/host/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 | }
/host/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 |                 }
/host/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 |     }
[38/40] Compiling Datable UInt+Datable.swift
/host/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
/host/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 | }
/host/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 |                 }
/host/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
/host/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
/host/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 | }
/host/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 |                 }
/host/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
/host/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
/host/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 | }
/host/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 |                 }
/host/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! (27.32s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Datable",
  "name" : "Datable",
  "path" : "/host/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"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.