The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SWCompression, reference develop (e32887), with Swift 6.1 for macOS (SPM) on 1 Mar 2026 18:37:00 UTC.

Swift 6 data race errors: 21

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

   |                       |- 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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[128/149] Compiling SWCompression ContainerEntry.swift
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[129/149] Compiling SWCompression ContainerEntryInfo.swift
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[130/149] Compiling SWCompression ContainerEntryType.swift
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[131/149] Compiling SWCompression DosAttributes.swift
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[132/149] Compiling SWCompression Permissions.swift
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[133/149] Compiling SWCompression DataError.swift
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[134/149] Compiling SWCompression DecompressionAlgorithm.swift
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[135/149] Compiling SWCompression DeltaFilter.swift
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[136/149] Compiling SWCompression Extensions.swift
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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.
/Users/admin/builder/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 | }
[137/149] Compiling SWCompression LZ4+Compress.swift
[138/149] Compiling SWCompression LZ4.swift
[139/149] Compiling SWCompression XxHash32.swift
[140/149] Compiling SWCompression LZMA.swift
[141/149] Compiling SWCompression LZMABitTreeDecoder.swift
[142/149] Compiling SWCompression LZMAConstants.swift
[143/149] Compiling SWCompression LZMADecoder.swift
[144/149] Compiling SWCompression LZMAError.swift
[145/149] Compiling SWCompression LZMALenDecoder.swift
[146/149] Compiling SWCompression LZMAProperties.swift
[147/177] Emitting module swcomp
[148/180] Compiling swcomp LZMACommand.swift
[149/180] Compiling swcomp XZCommand.swift
[150/180] Compiling swcomp Benchmark.swift
[151/180] Compiling swcomp ZipCommand.swift
[152/180] Compiling swcomp CompressionMethod+CustomStringConvertible.swift
[153/180] Compiling swcomp ContainerEntryInfo+CustomStringConvertible.swift
[154/180] Compiling swcomp FileSystemType+CustomStringConvertible.swift
[155/180] Compiling swcomp GzipHeader+CustomStringConvertible.swift
[156/180] Compiling swcomp TarEntry+Create.swift
[157/180] Compiling swcomp BZip2Command.swift
[158/180] Compiling swcomp GZipCommand.swift
[159/180] Compiling swcomp LZ4Command.swift
[160/180] Compiling swcomp TarFormat+ConvertibleFromString.swift
[161/180] Compiling swcomp SwcompError.swift
[162/180] Compiling swcomp main.swift
[163/180] Compiling swcomp BenchmarkGroup.swift
[164/180] Compiling swcomp BenchmarkMetadata.swift
[165/180] Compiling swcomp BenchmarkResult.swift
[166/180] Compiling swcomp CommonFunctions.swift
[167/180] Compiling swcomp ContainerCommand.swift
[168/180] Compiling swcomp TarCommand.swift
[169/180] Compiling swcomp RemoveRunCommand.swift
[170/180] Compiling swcomp RunBenchmarkCommand.swift
[171/180] Compiling swcomp SaveFile.swift
[172/180] Compiling swcomp ShowBenchmarkCommand.swift
[173/180] Compiling swcomp SpeedFormatter.swift
[174/180] Compiling swcomp 7ZipCommand.swift
[175/180] Compiling swcomp Benchmarks.swift
[176/180] Compiling swcomp ConvertCommand.swift
[177/180] Compiling swcomp OldSaveFile.swift
[177/180] Write Objects.LinkFileList
[178/180] Linking swcomp
[179/180] Applying swcomp
Build complete! (17.99s)
Fetching https://github.com/tsolomko/BitByteData
Fetching https://github.com/jakeheis/SwiftCLI
[1/5074] Fetching swiftcli
[204/8303] Fetching swiftcli, bitbytedata
Fetched https://github.com/tsolomko/BitByteData from cache (1.10s)
Fetched https://github.com/jakeheis/SwiftCLI from cache (1.10s)
Computing version for https://github.com/jakeheis/SwiftCLI
Computed https://github.com/jakeheis/SwiftCLI at 6.0.3 (4.39s)
Computing version for https://github.com/tsolomko/BitByteData
Computed https://github.com/tsolomko/BitByteData at 2.0.4 (0.57s)
Creating working copy for https://github.com/tsolomko/BitByteData
Working copy of https://github.com/tsolomko/BitByteData resolved at 2.0.4
Creating working copy for https://github.com/jakeheis/SwiftCLI
Working copy of https://github.com/jakeheis/SwiftCLI resolved at 6.0.3
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"
    },
    {
      "identity" : "swiftcli",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "6.0.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/jakeheis/SwiftCLI"
    }
  ],
  "manifest_display_name" : "SWCompression",
  "name" : "SWCompression",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "14.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    },
    {
      "name" : "tvos",
      "version" : "17.0"
    },
    {
      "name" : "watchos",
      "version" : "10.0"
    },
    {
      "name" : "visionos",
      "version" : "1.0"
    }
  ],
  "products" : [
    {
      "name" : "SWCompression",
      "targets" : [
        "SWCompression"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "swcomp",
      "targets" : [
        "swcomp"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "swcomp",
      "module_type" : "SwiftTarget",
      "name" : "swcomp",
      "path" : "Sources",
      "product_dependencies" : [
        "SwiftCLI"
      ],
      "product_memberships" : [
        "swcomp"
      ],
      "sources" : [
        "swcomp/Archives/BZip2Command.swift",
        "swcomp/Archives/GZipCommand.swift",
        "swcomp/Archives/LZ4Command.swift",
        "swcomp/Archives/LZMACommand.swift",
        "swcomp/Archives/XZCommand.swift",
        "swcomp/Benchmarks/Benchmark.swift",
        "swcomp/Benchmarks/BenchmarkGroup.swift",
        "swcomp/Benchmarks/BenchmarkMetadata.swift",
        "swcomp/Benchmarks/BenchmarkResult.swift",
        "swcomp/Benchmarks/Benchmarks.swift",
        "swcomp/Benchmarks/ConvertCommand.swift",
        "swcomp/Benchmarks/OldSaveFile.swift",
        "swcomp/Benchmarks/RemoveRunCommand.swift",
        "swcomp/Benchmarks/RunBenchmarkCommand.swift",
        "swcomp/Benchmarks/SaveFile.swift",
        "swcomp/Benchmarks/ShowBenchmarkCommand.swift",
        "swcomp/Benchmarks/SpeedFormatter.swift",
        "swcomp/Containers/7ZipCommand.swift",
        "swcomp/Containers/CommonFunctions.swift",
        "swcomp/Containers/ContainerCommand.swift",
        "swcomp/Containers/TarCommand.swift",
        "swcomp/Containers/ZipCommand.swift",
        "swcomp/Extensions/CompressionMethod+CustomStringConvertible.swift",
        "swcomp/Extensions/ContainerEntryInfo+CustomStringConvertible.swift",
        "swcomp/Extensions/FileSystemType+CustomStringConvertible.swift",
        "swcomp/Extensions/GzipHeader+CustomStringConvertible.swift",
        "swcomp/Extensions/TarEntry+Create.swift",
        "swcomp/Extensions/TarFormat+ConvertibleFromString.swift",
        "swcomp/SwcompError.swift",
        "swcomp/main.swift"
      ],
      "target_dependencies" : [
        "SWCompression"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SWCompression",
      "module_type" : "SwiftTarget",
      "name" : "SWCompression",
      "path" : "Sources",
      "product_dependencies" : [
        "BitByteData"
      ],
      "product_memberships" : [
        "SWCompression",
        "swcomp"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/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.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/LittleEndianByteReader+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.9"
}
Done.