The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SWCompression, reference develop (e71c7d), with Swift 6.1 for Linux on 28 Apr 2025 16:53:52 UTC.

Swift 6 data race errors: 21

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[52/122] Compiling SWCompression ContainerEntry.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[53/122] Compiling SWCompression ContainerEntryInfo.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[54/122] Compiling SWCompression ContainerEntryType.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[55/122] Compiling SWCompression DosAttributes.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[56/122] Compiling SWCompression Permissions.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[57/122] Compiling SWCompression DataError.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[58/122] Compiling SWCompression DecompressionAlgorithm.swift
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:20:23: warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
18 |
19 |     /// File is archive or archived.
20 |     public static let archive = DosAttributes(rawValue: 0b00100000)
   |                       |- warning: static property 'archive' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'archive' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// File is a directory.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:23:23: warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
21 |
22 |     /// File is a directory.
23 |     public static let directory = DosAttributes(rawValue: 0b00010000)
   |                       |- warning: static property 'directory' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'directory' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// File is a volume.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:26:23: warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
24 |
25 |     /// File is a volume.
26 |     public static let volume = DosAttributes(rawValue: 0b00001000)
   |                       |- warning: static property 'volume' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'volume' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// File is a system file.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:29:23: warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
27 |
28 |     /// File is a system file.
29 |     public static let system = DosAttributes(rawValue: 0b00000100)
   |                       |- warning: static property 'system' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'system' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// File is hidden.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:32:23: warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
30 |
31 |     /// File is hidden.
32 |     public static let hidden = DosAttributes(rawValue: 0b00000010)
   |                       |- warning: static property 'hidden' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'hidden' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// File is read-only.
/host/spi-builder-workspace/Sources/Common/Container/DosAttributes.swift:35:23: warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file attributes in DOS format.
 9 | public struct DosAttributes: OptionSet {
   |               `- note: consider making struct 'DosAttributes' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value.
   :
33 |
34 |     /// File is read-only.
35 |     public static let readOnly = DosAttributes(rawValue: 0b00000001)
   |                       |- warning: static property 'readOnly' is not concurrency-safe because non-'Sendable' type 'DosAttributes' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOnly' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | }
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:20:23: warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
18 |
19 |     /// Set UID.
20 |     public static let setuid = Permissions(rawValue: 0o4000)
   |                       |- warning: static property 'setuid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setuid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 |     /// Set GID.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:23:23: warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
21 |
22 |     /// Set GID.
23 |     public static let setgid = Permissions(rawValue: 0o2000)
   |                       |- warning: static property 'setgid' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'setgid' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 |
25 |     /// Sticky bit.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:26:23: warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
24 |
25 |     /// Sticky bit.
26 |     public static let sticky = Permissions(rawValue: 0o1000)
   |                       |- warning: static property 'sticky' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'sticky' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
27 |
28 |     /// Owner can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:29:23: warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
27 |
28 |     /// Owner can read.
29 |     public static let readOwner = Permissions(rawValue: 0o0400)
   |                       |- warning: static property 'readOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 |     /// Owner can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:32:23: warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
30 |
31 |     /// Owner can write.
32 |     public static let writeOwner = Permissions(rawValue: 0o0200)
   |                       |- warning: static property 'writeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Owner can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:35:23: warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
33 |
34 |     /// Owner can execute.
35 |     public static let executeOwner = Permissions(rawValue: 0o0100)
   |                       |- warning: static property 'executeOwner' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOwner' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 |     /// Group can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:38:23: warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
36 |
37 |     /// Group can read.
38 |     public static let readGroup = Permissions(rawValue: 0o0040)
   |                       |- warning: static property 'readGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
39 |
40 |     /// Group can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:41:23: warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
39 |
40 |     /// Group can write.
41 |     public static let writeGroup = Permissions(rawValue: 0o0020)
   |                       |- warning: static property 'writeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 |     /// Group can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:44:23: warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
42 |
43 |     /// Group can execute.
44 |     public static let executeGroup = Permissions(rawValue: 0o0010)
   |                       |- warning: static property 'executeGroup' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeGroup' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 |     /// Others can read.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:47:23: warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
45 |
46 |     /// Others can read.
47 |     public static let readOther = Permissions(rawValue: 0o0004)
   |                       |- warning: static property 'readOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'readOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     /// Others can write.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:50:23: warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
48 |
49 |     /// Others can write.
50 |     public static let writeOther = Permissions(rawValue: 0o0002)
   |                       |- warning: static property 'writeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'writeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |
52 |     /// Others can execute.
/host/spi-builder-workspace/Sources/Common/Container/Permissions.swift:53:23: warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | /// Represents file access permissions in UNIX format.
 9 | public struct Permissions: OptionSet {
   |               `- note: consider making struct 'Permissions' conform to the 'Sendable' protocol
10 |
11 |     /// Raw bit flags value (in decimal).
   :
51 |
52 |     /// Others can execute.
53 |     public static let executeOther = Permissions(rawValue: 0o0001)
   |                       |- warning: static property 'executeOther' is not concurrency-safe because non-'Sendable' type 'Permissions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: add '@MainActor' to make static property 'executeOther' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 |
55 | }
[59/122] Compiling SWCompression 7zSubstreamInfo.swift
[60/122] Compiling SWCompression CompressionMethod+7z.swift
[61/122] Compiling SWCompression MsbBitReader+7z.swift
[62/122] Compiling SWCompression BZip2+BlockSize.swift
[63/122] Compiling SWCompression BZip2+Compress.swift
[64/122] Compiling SWCompression BZip2+Lengths.swift
[65/122] Compiling SWCompression BZip2.swift
[66/122] Compiling SWCompression BZip2Error.swift
[67/122] Compiling SWCompression BurrowsWheeler.swift
[68/122] Compiling SWCompression SuffixArray.swift
[69/122] Compiling SWCompression Archive.swift
[70/122] Compiling SWCompression CheckSums.swift
[71/122] Compiling SWCompression Code.swift
[72/122] Compiling SWCompression ZipContainer.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[73/122] Compiling SWCompression ZipEndOfCentralDirectory.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[74/122] Compiling SWCompression ZipEntry.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[75/122] Compiling SWCompression ZipEntryInfo.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[76/122] Compiling SWCompression ZipEntryInfoHelper.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[77/122] Compiling SWCompression ZipError.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[78/122] Compiling SWCompression ZipExtraField.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[79/122] Compiling SWCompression ZipLocalHeader.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[80/122] Compiling SWCompression ZlibArchive.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[81/122] Compiling SWCompression ZlibError.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[82/122] Compiling SWCompression ZlibHeader.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[83/122] Compiling SWCompression resource_bundle_accessor.swift
/host/spi-builder-workspace/Sources/ZIP/ZipContainer.swift:25:23: warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 23 |      executed may cause undefined behavior.
 24 |      */
 25 |     public static var customExtraFields = [UInt16: ZipExtraField.Type]()
    |                       |- warning: static property 'customExtraFields' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'customExtraFields' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: add '@MainActor' to make static property 'customExtraFields' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 26 |
 27 |     /**
/host/spi-builder-workspace/Sources/ZIP/ZipError.swift:35:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
33 |      Associated value of the error contains `ZipEntry` objects for all already processed entries:
34 |      */
35 |     case wrongCRC([ZipEntry])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'ZipError' has non-sendable type 'ZipEntry'; this is an error in the Swift 6 language mode
36 |     /// Either entry's comment or file name cannot be processed using UTF-8 encoding.
37 |     case wrongTextField
/host/spi-builder-workspace/Sources/ZIP/ZipEntry.swift:9:15: note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
 7 |
 8 | /// Represents an entry from the ZIP container.
 9 | public struct ZipEntry: ContainerEntry {
   |               `- note: consider making struct 'ZipEntry' conform to the 'Sendable' protocol
10 |
11 |     public let info: ZipEntryInfo
[84/122] Compiling SWCompression DeltaFilter.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[85/122] Compiling SWCompression Extensions.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[86/122] Compiling SWCompression FileSystemType.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[87/122] Compiling SWCompression Deflate+Compress.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[88/122] Compiling SWCompression Deflate+Constants.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[89/122] Compiling SWCompression Deflate+Lengths.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[90/122] Compiling SWCompression Deflate.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[91/122] Compiling SWCompression DeflateError.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[92/122] Compiling SWCompression FileSystemType+Gzip.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[93/122] Compiling SWCompression GzipArchive.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[94/122] Compiling SWCompression GzipError.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[95/122] Compiling SWCompression GzipHeader+ExtraField.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[96/122] Compiling SWCompression GzipHeader.swift
/host/spi-builder-workspace/Sources/GZip/GzipError.swift:32:10: warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
30 |      for each already decompressed member, including the one with mismatching checksum.
31 |      */
32 |     case wrongCRC([GzipArchive.Member])
   |          `- warning: associated value 'wrongCRC' of 'Sendable'-conforming enum 'GzipError' has non-sendable type 'GzipArchive.Member'; this is an error in the Swift 6 language mode
33 |     /// Computed 'isize' didn't match the value stored in the archive.
34 |     case wrongISize
/host/spi-builder-workspace/Sources/GZip/GzipArchive.swift:13:19: note: consider making struct 'Member' conform to the 'Sendable' protocol
 11 |
 12 |     /// Represents the member of a multi-member GZip archive.
 13 |     public struct Member {
    |                   `- note: consider making struct 'Member' conform to the 'Sendable' protocol
 14 |
 15 |         /// GZip header of a member.
[97/122] Compiling SWCompression 7zCoder+Equatable.swift
[98/122] Compiling SWCompression 7zCoder.swift
[99/122] Compiling SWCompression 7zCoderInfo.swift
[100/122] Compiling SWCompression 7zContainer.swift
[101/122] Compiling SWCompression 7zEntry.swift
[102/122] Compiling SWCompression 7zEntryInfo.swift
[103/122] Compiling SWCompression 7zError.swift
[104/122] Compiling SWCompression 7zFileInfo.swift
[105/122] Compiling SWCompression 7zFolder.swift
[106/122] Compiling SWCompression 7zHeader.swift
[107/122] Compiling SWCompression 7zPackInfo.swift
[108/122] Compiling SWCompression 7zProperty.swift
[109/122] Compiling SWCompression 7zStreamInfo.swift
[110/122] Compiling SWCompression LZ4+Compress.swift
[111/122] Compiling SWCompression LZ4.swift
[112/122] Compiling SWCompression XxHash32.swift
[113/122] Compiling SWCompression LZMA.swift
[114/122] Compiling SWCompression LZMABitTreeDecoder.swift
[115/122] Compiling SWCompression LZMAConstants.swift
[116/122] Compiling SWCompression LZMADecoder.swift
[117/122] Compiling SWCompression LZMAError.swift
[118/122] Compiling SWCompression LZMALenDecoder.swift
[119/122] Compiling SWCompression LZMAProperties.swift
[120/122] Compiling SWCompression LZMARangeDecoder.swift
[121/122] Compiling SWCompression LZMA2.swift
[122/122] Compiling SWCompression LZMA2Decoder.swift
Build complete! (21.07s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "bitbytedata",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tsolomko/BitByteData"
    }
  ],
  "manifest_display_name" : "SWCompression",
  "name" : "SWCompression",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "SWCompression",
      "targets" : [
        "SWCompression"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "SWCompression",
      "module_type" : "SwiftTarget",
      "name" : "SWCompression",
      "path" : "Sources",
      "product_dependencies" : [
        "BitByteData"
      ],
      "product_memberships" : [
        "SWCompression"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Sources/PrivacyInfo.xcprivacy",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "7-Zip/7zCoder+Equatable.swift",
        "7-Zip/7zCoder.swift",
        "7-Zip/7zCoderInfo.swift",
        "7-Zip/7zContainer.swift",
        "7-Zip/7zEntry.swift",
        "7-Zip/7zEntryInfo.swift",
        "7-Zip/7zError.swift",
        "7-Zip/7zFileInfo.swift",
        "7-Zip/7zFolder.swift",
        "7-Zip/7zHeader.swift",
        "7-Zip/7zPackInfo.swift",
        "7-Zip/7zProperty.swift",
        "7-Zip/7zStreamInfo.swift",
        "7-Zip/7zSubstreamInfo.swift",
        "7-Zip/CompressionMethod+7z.swift",
        "7-Zip/MsbBitReader+7z.swift",
        "BZip2/BZip2+BlockSize.swift",
        "BZip2/BZip2+Compress.swift",
        "BZip2/BZip2+Lengths.swift",
        "BZip2/BZip2.swift",
        "BZip2/BZip2Error.swift",
        "BZip2/BurrowsWheeler.swift",
        "BZip2/SuffixArray.swift",
        "Common/Archive.swift",
        "Common/CheckSums.swift",
        "Common/CodingTree/Code.swift",
        "Common/CodingTree/CodeLength.swift",
        "Common/CodingTree/DecodingTree.swift",
        "Common/CodingTree/EncodingTree.swift",
        "Common/CompressionAlgorithm.swift",
        "Common/CompressionMethod.swift",
        "Common/Container/Container.swift",
        "Common/Container/ContainerEntry.swift",
        "Common/Container/ContainerEntryInfo.swift",
        "Common/Container/ContainerEntryType.swift",
        "Common/Container/DosAttributes.swift",
        "Common/Container/Permissions.swift",
        "Common/DataError.swift",
        "Common/DecompressionAlgorithm.swift",
        "Common/DeltaFilter.swift",
        "Common/Extensions.swift",
        "Common/FileSystemType.swift",
        "Deflate/Deflate+Compress.swift",
        "Deflate/Deflate+Constants.swift",
        "Deflate/Deflate+Lengths.swift",
        "Deflate/Deflate.swift",
        "Deflate/DeflateError.swift",
        "GZip/FileSystemType+Gzip.swift",
        "GZip/GzipArchive.swift",
        "GZip/GzipError.swift",
        "GZip/GzipHeader+ExtraField.swift",
        "GZip/GzipHeader.swift",
        "LZ4/LZ4+Compress.swift",
        "LZ4/LZ4.swift",
        "LZ4/XxHash32.swift",
        "LZMA/LZMA.swift",
        "LZMA/LZMABitTreeDecoder.swift",
        "LZMA/LZMAConstants.swift",
        "LZMA/LZMADecoder.swift",
        "LZMA/LZMAError.swift",
        "LZMA/LZMALenDecoder.swift",
        "LZMA/LZMAProperties.swift",
        "LZMA/LZMARangeDecoder.swift",
        "LZMA2/LZMA2.swift",
        "LZMA2/LZMA2Decoder.swift",
        "LZMA2/LZMA2Error.swift",
        "TAR/ContainerEntryType+Tar.swift",
        "TAR/Data+Tar.swift",
        "TAR/LittleEndianByteReader+Tar.swift",
        "TAR/TarContainer.swift",
        "TAR/TarCreateError.swift",
        "TAR/TarEntry.swift",
        "TAR/TarEntryInfo.swift",
        "TAR/TarError.swift",
        "TAR/TarExtendedHeader.swift",
        "TAR/TarHeader.swift",
        "TAR/TarParser.swift",
        "TAR/TarReader.swift",
        "TAR/TarWriter.swift",
        "XZ/ByteReader+XZ.swift",
        "XZ/Sha256.swift",
        "XZ/XZArchive.swift",
        "XZ/XZBlock.swift",
        "XZ/XZError.swift",
        "XZ/XZStreamHeader.swift",
        "ZIP/BuiltinExtraFields.swift",
        "ZIP/CompressionMethod+Zip.swift",
        "ZIP/FileSystemType+Zip.swift",
        "ZIP/LittleEndianByteReader+Zip.swift",
        "ZIP/ZipCentralDirectoryEntry.swift",
        "ZIP/ZipContainer.swift",
        "ZIP/ZipEndOfCentralDirectory.swift",
        "ZIP/ZipEntry.swift",
        "ZIP/ZipEntryInfo.swift",
        "ZIP/ZipEntryInfoHelper.swift",
        "ZIP/ZipError.swift",
        "ZIP/ZipExtraField.swift",
        "ZIP/ZipLocalHeader.swift",
        "Zlib/ZlibArchive.swift",
        "Zlib/ZlibError.swift",
        "Zlib/ZlibHeader.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Done.