Build Information
Successful build of CLISpinner with Swift 6.0 for tvOS using Xcode 16.0.
Swift 6 data race errors: 65
Build Command
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme CLISpinner -destination generic/platform=tvos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
44 |
45 | public static let noise = Pattern(frames: "▓","▒","░", speed: 0.1)
| |- warning: static property 'noise' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'noise' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
46 |
47 | public static let bounce = Pattern(frames: "⠁","⠂","⠄","⠂", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:47:23: warning: static property 'bounce' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
45 | public static let noise = Pattern(frames: "▓","▒","░", speed: 0.1)
46 |
47 | public static let bounce = Pattern(frames: "⠁","⠂","⠄","⠂", speed: 0.12)
| |- warning: static property 'bounce' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bounce' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 | public static let boxBounce = Pattern(frames: "▖","▘","▝","▗", speed: 0.12)
49 | public static let boxBounce2 = Pattern(frames: "▌","▀","▐","▄", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:48:23: warning: static property 'boxBounce' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
46 |
47 | public static let bounce = Pattern(frames: "⠁","⠂","⠄","⠂", speed: 0.12)
48 | public static let boxBounce = Pattern(frames: "▖","▘","▝","▗", speed: 0.12)
| |- warning: static property 'boxBounce' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'boxBounce' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
49 | public static let boxBounce2 = Pattern(frames: "▌","▀","▐","▄", speed: 0.1)
50 |
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:49:23: warning: static property 'boxBounce2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
47 | public static let bounce = Pattern(frames: "⠁","⠂","⠄","⠂", speed: 0.12)
48 | public static let boxBounce = Pattern(frames: "▖","▘","▝","▗", speed: 0.12)
49 | public static let boxBounce2 = Pattern(frames: "▌","▀","▐","▄", speed: 0.1)
| |- warning: static property 'boxBounce2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'boxBounce2' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
50 |
51 | public static let triangle = Pattern(frames: "◢","◣","◤","◥", speed: 0.05)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:51:23: warning: static property 'triangle' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
49 | public static let boxBounce2 = Pattern(frames: "▌","▀","▐","▄", speed: 0.1)
50 |
51 | public static let triangle = Pattern(frames: "◢","◣","◤","◥", speed: 0.05)
| |- warning: static property 'triangle' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'triangle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
52 |
53 | public static let arc = Pattern(frames: "◜","◠","◝","◞","◡","◟", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:53:23: warning: static property 'arc' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
51 | public static let triangle = Pattern(frames: "◢","◣","◤","◥", speed: 0.05)
52 |
53 | public static let arc = Pattern(frames: "◜","◠","◝","◞","◡","◟", speed: 0.1)
| |- warning: static property 'arc' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'arc' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | public static let circle = Pattern(frames: "◡","⊙","◠", speed: 0.12)
55 | public static let squareCorners = Pattern(frames: "◰","◳","◲","◱", speed: 0.18)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:54:23: warning: static property 'circle' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
52 |
53 | public static let arc = Pattern(frames: "◜","◠","◝","◞","◡","◟", speed: 0.1)
54 | public static let circle = Pattern(frames: "◡","⊙","◠", speed: 0.12)
| |- warning: static property 'circle' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'circle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
55 | public static let squareCorners = Pattern(frames: "◰","◳","◲","◱", speed: 0.18)
56 | public static let circleQuarters = Pattern(frames: "◴","◷","◶","◵", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:55:23: warning: static property 'squareCorners' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
53 | public static let arc = Pattern(frames: "◜","◠","◝","◞","◡","◟", speed: 0.1)
54 | public static let circle = Pattern(frames: "◡","⊙","◠", speed: 0.12)
55 | public static let squareCorners = Pattern(frames: "◰","◳","◲","◱", speed: 0.18)
| |- warning: static property 'squareCorners' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'squareCorners' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
56 | public static let circleQuarters = Pattern(frames: "◴","◷","◶","◵", speed: 0.12)
57 | public static let circleHalves = Pattern(frames: "◐","◓","◑","◒", speed: 0.05)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:56:23: warning: static property 'circleQuarters' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
54 | public static let circle = Pattern(frames: "◡","⊙","◠", speed: 0.12)
55 | public static let squareCorners = Pattern(frames: "◰","◳","◲","◱", speed: 0.18)
56 | public static let circleQuarters = Pattern(frames: "◴","◷","◶","◵", speed: 0.12)
| |- warning: static property 'circleQuarters' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'circleQuarters' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
57 | public static let circleHalves = Pattern(frames: "◐","◓","◑","◒", speed: 0.05)
58 |
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:57:23: warning: static property 'circleHalves' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
55 | public static let squareCorners = Pattern(frames: "◰","◳","◲","◱", speed: 0.18)
56 | public static let circleQuarters = Pattern(frames: "◴","◷","◶","◵", speed: 0.12)
57 | public static let circleHalves = Pattern(frames: "◐","◓","◑","◒", speed: 0.05)
| |- warning: static property 'circleHalves' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'circleHalves' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
58 |
59 | public static let squish = Pattern(frames: "╫","╪", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:59:23: warning: static property 'squish' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
57 | public static let circleHalves = Pattern(frames: "◐","◓","◑","◒", speed: 0.05)
58 |
59 | public static let squish = Pattern(frames: "╫","╪", speed: 0.1)
| |- warning: static property 'squish' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'squish' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
60 |
61 | public static let toggle = Pattern(frames: "⊶","⊷", speed: 0.25)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:61:23: warning: static property 'toggle' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
59 | public static let squish = Pattern(frames: "╫","╪", speed: 0.1)
60 |
61 | public static let toggle = Pattern(frames: "⊶","⊷", speed: 0.25)
| |- warning: static property 'toggle' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | public static let toggle2 = Pattern(frames: "▫","▪", speed: 0.08)
63 | public static let toggle3 = Pattern(frames: "□","■", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:62:23: warning: static property 'toggle2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
60 |
61 | public static let toggle = Pattern(frames: "⊶","⊷", speed: 0.25)
62 | public static let toggle2 = Pattern(frames: "▫","▪", speed: 0.08)
| |- warning: static property 'toggle2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle2' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 | public static let toggle3 = Pattern(frames: "□","■", speed: 0.12)
64 | public static let toggle4 = Pattern(frames: "■","□","▪","▫", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:63:23: warning: static property 'toggle3' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
61 | public static let toggle = Pattern(frames: "⊶","⊷", speed: 0.25)
62 | public static let toggle2 = Pattern(frames: "▫","▪", speed: 0.08)
63 | public static let toggle3 = Pattern(frames: "□","■", speed: 0.12)
| |- warning: static property 'toggle3' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle3' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
64 | public static let toggle4 = Pattern(frames: "■","□","▪","▫", speed: 0.1)
65 | public static let toggle5 = Pattern(frames: "▮","▯", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:64:23: warning: static property 'toggle4' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
62 | public static let toggle2 = Pattern(frames: "▫","▪", speed: 0.08)
63 | public static let toggle3 = Pattern(frames: "□","■", speed: 0.12)
64 | public static let toggle4 = Pattern(frames: "■","□","▪","▫", speed: 0.1)
| |- warning: static property 'toggle4' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle4' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
65 | public static let toggle5 = Pattern(frames: "▮","▯", speed: 0.1)
66 | public static let toggle6 = Pattern(frames: "ဝ","၀", speed: 0.3)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:65:23: warning: static property 'toggle5' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
63 | public static let toggle3 = Pattern(frames: "□","■", speed: 0.12)
64 | public static let toggle4 = Pattern(frames: "■","□","▪","▫", speed: 0.1)
65 | public static let toggle5 = Pattern(frames: "▮","▯", speed: 0.1)
| |- warning: static property 'toggle5' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle5' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
66 | public static let toggle6 = Pattern(frames: "ဝ","၀", speed: 0.3)
67 | public static let toggle7 = Pattern(frames: "⦾","⦿", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:66:23: warning: static property 'toggle6' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
64 | public static let toggle4 = Pattern(frames: "■","□","▪","▫", speed: 0.1)
65 | public static let toggle5 = Pattern(frames: "▮","▯", speed: 0.1)
66 | public static let toggle6 = Pattern(frames: "ဝ","၀", speed: 0.3)
| |- warning: static property 'toggle6' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle6' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
67 | public static let toggle7 = Pattern(frames: "⦾","⦿", speed: 0.08)
68 | public static let toggle8 = Pattern(frames: "◍","◌", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:67:23: warning: static property 'toggle7' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
65 | public static let toggle5 = Pattern(frames: "▮","▯", speed: 0.1)
66 | public static let toggle6 = Pattern(frames: "ဝ","၀", speed: 0.3)
67 | public static let toggle7 = Pattern(frames: "⦾","⦿", speed: 0.08)
| |- warning: static property 'toggle7' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle7' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
68 | public static let toggle8 = Pattern(frames: "◍","◌", speed: 0.1)
69 | public static let toggle9 = Pattern(frames: "◉","◎", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:68:23: warning: static property 'toggle8' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
66 | public static let toggle6 = Pattern(frames: "ဝ","၀", speed: 0.3)
67 | public static let toggle7 = Pattern(frames: "⦾","⦿", speed: 0.08)
68 | public static let toggle8 = Pattern(frames: "◍","◌", speed: 0.1)
| |- warning: static property 'toggle8' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle8' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
69 | public static let toggle9 = Pattern(frames: "◉","◎", speed: 0.1)
70 | public static let toggle10 = Pattern(frames: "㊂","㊀","㊁", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:69:23: warning: static property 'toggle9' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
67 | public static let toggle7 = Pattern(frames: "⦾","⦿", speed: 0.08)
68 | public static let toggle8 = Pattern(frames: "◍","◌", speed: 0.1)
69 | public static let toggle9 = Pattern(frames: "◉","◎", speed: 0.1)
| |- warning: static property 'toggle9' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle9' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
70 | public static let toggle10 = Pattern(frames: "㊂","㊀","㊁", speed: 0.1)
71 | public static let toggle11 = Pattern(frames: "⧇","⧆", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:70:23: warning: static property 'toggle10' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
68 | public static let toggle8 = Pattern(frames: "◍","◌", speed: 0.1)
69 | public static let toggle9 = Pattern(frames: "◉","◎", speed: 0.1)
70 | public static let toggle10 = Pattern(frames: "㊂","㊀","㊁", speed: 0.1)
| |- warning: static property 'toggle10' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle10' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
71 | public static let toggle11 = Pattern(frames: "⧇","⧆", speed: 0.1)
72 | public static let toggle12 = Pattern(frames: "☗","☖", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:71:23: warning: static property 'toggle11' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
69 | public static let toggle9 = Pattern(frames: "◉","◎", speed: 0.1)
70 | public static let toggle10 = Pattern(frames: "㊂","㊀","㊁", speed: 0.1)
71 | public static let toggle11 = Pattern(frames: "⧇","⧆", speed: 0.1)
| |- warning: static property 'toggle11' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle11' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 | public static let toggle12 = Pattern(frames: "☗","☖", speed: 0.12)
73 | public static let toggle13 = Pattern(frames: "=","*","-", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:72:23: warning: static property 'toggle12' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
70 | public static let toggle10 = Pattern(frames: "㊂","㊀","㊁", speed: 0.1)
71 | public static let toggle11 = Pattern(frames: "⧇","⧆", speed: 0.1)
72 | public static let toggle12 = Pattern(frames: "☗","☖", speed: 0.12)
| |- warning: static property 'toggle12' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle12' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
73 | public static let toggle13 = Pattern(frames: "=","*","-", speed: 0.08)
74 |
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:73:23: warning: static property 'toggle13' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
71 | public static let toggle11 = Pattern(frames: "⧇","⧆", speed: 0.1)
72 | public static let toggle12 = Pattern(frames: "☗","☖", speed: 0.12)
73 | public static let toggle13 = Pattern(frames: "=","*","-", speed: 0.08)
| |- warning: static property 'toggle13' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'toggle13' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
74 |
75 | public static let arrow = Pattern(frames: "←","↖","↑","↗","→","↘","↓","↙", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:75:23: warning: static property 'arrow' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
73 | public static let toggle13 = Pattern(frames: "=","*","-", speed: 0.08)
74 |
75 | public static let arrow = Pattern(frames: "←","↖","↑","↗","→","↘","↓","↙", speed: 0.1)
| |- warning: static property 'arrow' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'arrow' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
76 | public static let arrow2 = Pattern(frames: "⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ ", speed: 0.08)
77 | public static let arrow3 = Pattern(frames: "▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:76:23: warning: static property 'arrow2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
74 |
75 | public static let arrow = Pattern(frames: "←","↖","↑","↗","→","↘","↓","↙", speed: 0.1)
76 | public static let arrow2 = Pattern(frames: "⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ ", speed: 0.08)
| |- warning: static property 'arrow2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'arrow2' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
77 | public static let arrow3 = Pattern(frames: "▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸", speed: 0.12)
78 |
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:77:23: warning: static property 'arrow3' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
75 | public static let arrow = Pattern(frames: "←","↖","↑","↗","→","↘","↓","↙", speed: 0.1)
76 | public static let arrow2 = Pattern(frames: "⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ ", speed: 0.08)
77 | public static let arrow3 = Pattern(frames: "▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸", speed: 0.12)
| |- warning: static property 'arrow3' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'arrow3' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
78 |
79 | public static let bouncingBar = Pattern(frames: "[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:79:23: warning: static property 'bouncingBar' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
77 | public static let arrow3 = Pattern(frames: "▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸", speed: 0.12)
78 |
79 | public static let bouncingBar = Pattern(frames: "[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]", speed: 0.08)
| |- warning: static property 'bouncingBar' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bouncingBar' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
80 | public static let bouncingBall = Pattern(frames: "( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )", speed: 0.08)
81 |
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:80:23: warning: static property 'bouncingBall' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
78 |
79 | public static let bouncingBar = Pattern(frames: "[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]", speed: 0.08)
80 | public static let bouncingBall = Pattern(frames: "( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )", speed: 0.08)
| |- warning: static property 'bouncingBall' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'bouncingBall' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
81 |
82 | public static let smiley = Pattern(frames: "😄 ","😝 ", speed: 0.2)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:82:23: warning: static property 'smiley' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
80 | public static let bouncingBall = Pattern(frames: "( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )", speed: 0.08)
81 |
82 | public static let smiley = Pattern(frames: "😄 ","😝 ", speed: 0.2)
| |- warning: static property 'smiley' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'smiley' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
83 | public static let monkey = Pattern(frames: "🙈 ","🙈 ","🙉 ","🙊 ", speed: 0.3)
84 | public static let hearts = Pattern(frames: "💛 ","💙 ","💜 ","💚 ","❤️ ", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:83:23: warning: static property 'monkey' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
81 |
82 | public static let smiley = Pattern(frames: "😄 ","😝 ", speed: 0.2)
83 | public static let monkey = Pattern(frames: "🙈 ","🙈 ","🙉 ","🙊 ", speed: 0.3)
| |- warning: static property 'monkey' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'monkey' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
84 | public static let hearts = Pattern(frames: "💛 ","💙 ","💜 ","💚 ","❤️ ", speed: 0.1)
85 | public static let clock = Pattern(frames: "🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 ", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:84:23: warning: static property 'hearts' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
82 | public static let smiley = Pattern(frames: "😄 ","😝 ", speed: 0.2)
83 | public static let monkey = Pattern(frames: "🙈 ","🙈 ","🙉 ","🙊 ", speed: 0.3)
84 | public static let hearts = Pattern(frames: "💛 ","💙 ","💜 ","💚 ","❤️ ", speed: 0.1)
| |- warning: static property 'hearts' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'hearts' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
85 | public static let clock = Pattern(frames: "🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 ", speed: 0.1)
86 | public static let earth = Pattern(frames: "🌍 ","🌎 ","🌏 ", speed: 0.18)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:85:23: warning: static property 'clock' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
83 | public static let monkey = Pattern(frames: "🙈 ","🙈 ","🙉 ","🙊 ", speed: 0.3)
84 | public static let hearts = Pattern(frames: "💛 ","💙 ","💜 ","💚 ","❤️ ", speed: 0.1)
85 | public static let clock = Pattern(frames: "🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 ", speed: 0.1)
| |- warning: static property 'clock' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'clock' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
86 | public static let earth = Pattern(frames: "🌍 ","🌎 ","🌏 ", speed: 0.18)
87 | public static let moon = Pattern(frames: "🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 ", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:86:23: warning: static property 'earth' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
84 | public static let hearts = Pattern(frames: "💛 ","💙 ","💜 ","💚 ","❤️ ", speed: 0.1)
85 | public static let clock = Pattern(frames: "🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 ", speed: 0.1)
86 | public static let earth = Pattern(frames: "🌍 ","🌎 ","🌏 ", speed: 0.18)
| |- warning: static property 'earth' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'earth' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
87 | public static let moon = Pattern(frames: "🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 ", speed: 0.08)
88 | public static let runner = Pattern(frames: "🚶 ","🏃 ", speed: 0.14)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:87:23: warning: static property 'moon' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
85 | public static let clock = Pattern(frames: "🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 ", speed: 0.1)
86 | public static let earth = Pattern(frames: "🌍 ","🌎 ","🌏 ", speed: 0.18)
87 | public static let moon = Pattern(frames: "🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 ", speed: 0.08)
| |- warning: static property 'moon' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'moon' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
88 | public static let runner = Pattern(frames: "🚶 ","🏃 ", speed: 0.14)
89 |
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:88:23: warning: static property 'runner' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
86 | public static let earth = Pattern(frames: "🌍 ","🌎 ","🌏 ", speed: 0.18)
87 | public static let moon = Pattern(frames: "🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 ", speed: 0.08)
88 | public static let runner = Pattern(frames: "🚶 ","🏃 ", speed: 0.14)
| |- warning: static property 'runner' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'runner' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
89 |
90 | public static let pong = Pattern(frames: "▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:90:23: warning: static property 'pong' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
88 | public static let runner = Pattern(frames: "🚶 ","🏃 ", speed: 0.14)
89 |
90 | public static let pong = Pattern(frames: "▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌", speed: 0.08)
| |- warning: static property 'pong' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'pong' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
91 |
92 | public static let shark = Pattern(frames: "▐|\\____________▌","▐_|\\___________▌","▐__|\\__________▌","▐___|\\_________▌","▐____|\\________▌","▐_____|\\_______▌","▐______|\\______▌","▐_______|\\_____▌","▐________|\\____▌","▐_________|\\___▌","▐__________|\\__▌","▐___________|\\_▌","▐____________|\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:92:23: warning: static property 'shark' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
90 | public static let pong = Pattern(frames: "▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌", speed: 0.08)
91 |
92 | public static let shark = Pattern(frames: "▐|\\____________▌","▐_|\\___________▌","▐__|\\__________▌","▐___|\\_________▌","▐____|\\________▌","▐_____|\\_______▌","▐______|\\______▌","▐_______|\\_____▌","▐________|\\____▌","▐_________|\\___▌","▐__________|\\__▌","▐___________|\\_▌","▐____________|\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌", speed: 0.12)
| |- warning: static property 'shark' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'shark' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
93 |
94 | public static let dqpb = Pattern(frames: "d","q","p","b", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:94:23: warning: static property 'dqpb' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
5 |
6 | // Props go to https://github.com/sindresorhus/cli-spinners
7 | public struct Pattern: SpinnerPattern, Decodable {
| `- note: consider making struct 'Pattern' conform to the 'Sendable' protocol
8 | public let frames: [String]
9 | public let speed: Double
:
92 | public static let shark = Pattern(frames: "▐|\\____________▌","▐_|\\___________▌","▐__|\\__________▌","▐___|\\_________▌","▐____|\\________▌","▐_____|\\_______▌","▐______|\\______▌","▐_______|\\_____▌","▐________|\\____▌","▐_________|\\___▌","▐__________|\\__▌","▐___________|\\_▌","▐____________|\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌", speed: 0.12)
93 |
94 | public static let dqpb = Pattern(frames: "d","q","p","b", speed: 0.1)
| |- warning: static property 'dqpb' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'dqpb' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
95 |
96 | public static func single(_ pattern: String, speed: Double = 1.0) -> Pattern {
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift:6:13: warning: let 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
4 |
5 |
6 | private let manager = FileManager.default
| |- warning: let 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'manager' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
7 | public extension Pattern {
8 | static func load(from filepath: String) throws -> Pattern {
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
1 | open class FileManager : NSObject {
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
2 | open class var `default`: FileManager { get }
3 | @available(swift, obsoleted: 3, renamed: "default")
SwiftCompile normal arm64 Compiling\ Patterns+File.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CLISpinner -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.o -index-unit-output-path /CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CLISpinner -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.o -index-unit-output-path /CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Patterns+File.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift:6:13: warning: let 'manager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
private let manager = FileManager.default
^
Foundation.FileManager:1:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
open class FileManager : NSObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift:6:13: note: annotate 'manager' with '@MainActor' if property should only be accessed from the main actor
private let manager = FileManager.default
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift:6:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let manager = FileManager.default
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Spinner.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CLISpinner -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.o -index-unit-output-path /CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CLISpinner -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.o -index-unit-output-path /CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Spinner.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift:70:32: warning: capture of 'self' with non-sendable type 'Spinner?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
guard let `self` = self else { return }
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift:6:20: note: class 'Spinner' does not conform to the 'Sendable' protocol
public final class Spinner {
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift:79:32: warning: capture of 'self' with non-sendable type 'Spinner?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
guard let `self` = self else { return }
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift:6:20: note: class 'Spinner' does not conform to the 'Sendable' protocol
public final class Spinner {
^
SwiftCompile normal arm64 Compiling\ Pattern.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CLISpinner -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.o -index-unit-output-path /CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Patterns+File.swift /Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Spinner.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CLISpinner -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.o -index-unit-output-path /CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/Pattern.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:11:23: warning: static property 'dots' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots = Pattern(frames: "⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:11:23: note: annotate 'dots' with '@MainActor' if property should only be accessed from the main actor
public static let dots = Pattern(frames: "⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:11:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots = Pattern(frames: "⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:12:23: warning: static property 'dots2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots2 = Pattern(frames: "⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:12:23: note: annotate 'dots2' with '@MainActor' if property should only be accessed from the main actor
public static let dots2 = Pattern(frames: "⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots2 = Pattern(frames: "⣾","⣽","⣻","⢿","⡿","⣟","⣯","⣷", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:13:23: warning: static property 'dots3' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots3 = Pattern(frames: "⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:13:23: note: annotate 'dots3' with '@MainActor' if property should only be accessed from the main actor
public static let dots3 = Pattern(frames: "⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots3 = Pattern(frames: "⠋","⠙","⠚","⠞","⠖","⠦","⠴","⠲","⠳","⠓", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:14:23: warning: static property 'dots4' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots4 = Pattern(frames: "⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:14:23: note: annotate 'dots4' with '@MainActor' if property should only be accessed from the main actor
public static let dots4 = Pattern(frames: "⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots4 = Pattern(frames: "⠄","⠆","⠇","⠋","⠙","⠸","⠰","⠠","⠰","⠸","⠙","⠋","⠇","⠆", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:15:23: warning: static property 'dots5' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots5 = Pattern(frames: "⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:15:23: note: annotate 'dots5' with '@MainActor' if property should only be accessed from the main actor
public static let dots5 = Pattern(frames: "⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:15:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots5 = Pattern(frames: "⠋","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:16:23: warning: static property 'dots6' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots6 = Pattern(frames: "⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:16:23: note: annotate 'dots6' with '@MainActor' if property should only be accessed from the main actor
public static let dots6 = Pattern(frames: "⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:16:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots6 = Pattern(frames: "⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠴","⠲","⠒","⠂","⠂","⠒","⠚","⠙","⠉","⠁", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:17:23: warning: static property 'dots7' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots7 = Pattern(frames: "⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:17:23: note: annotate 'dots7' with '@MainActor' if property should only be accessed from the main actor
public static let dots7 = Pattern(frames: "⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:17:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots7 = Pattern(frames: "⠈","⠉","⠋","⠓","⠒","⠐","⠐","⠒","⠖","⠦","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:18:23: warning: static property 'dots8' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots8 = Pattern(frames: "⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:18:23: note: annotate 'dots8' with '@MainActor' if property should only be accessed from the main actor
public static let dots8 = Pattern(frames: "⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:18:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots8 = Pattern(frames: "⠁","⠁","⠉","⠙","⠚","⠒","⠂","⠂","⠒","⠲","⠴","⠤","⠄","⠄","⠤","⠠","⠠","⠤","⠦","⠖","⠒","⠐","⠐","⠒","⠓","⠋","⠉","⠈","⠈", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:19:23: warning: static property 'dots9' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots9 = Pattern(frames: "⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:19:23: note: annotate 'dots9' with '@MainActor' if property should only be accessed from the main actor
public static let dots9 = Pattern(frames: "⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots9 = Pattern(frames: "⢹","⢺","⢼","⣸","⣇","⡧","⡗","⡏", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:20:23: warning: static property 'dots10' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots10 = Pattern(frames: "⢄","⢂","⢁","⡁","⡈","⡐","⡠", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:20:23: note: annotate 'dots10' with '@MainActor' if property should only be accessed from the main actor
public static let dots10 = Pattern(frames: "⢄","⢂","⢁","⡁","⡈","⡐","⡠", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:20:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots10 = Pattern(frames: "⢄","⢂","⢁","⡁","⡈","⡐","⡠", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:21:23: warning: static property 'dots11' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots11 = Pattern(frames: "⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:21:23: note: annotate 'dots11' with '@MainActor' if property should only be accessed from the main actor
public static let dots11 = Pattern(frames: "⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:21:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots11 = Pattern(frames: "⠁","⠂","⠄","⡀","⢀","⠠","⠐","⠈", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:22:23: warning: static property 'dots12' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dots12 = Pattern(frames: "⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:22:23: note: annotate 'dots12' with '@MainActor' if property should only be accessed from the main actor
public static let dots12 = Pattern(frames: "⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:22:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dots12 = Pattern(frames: "⢀⠀","⡀⠀","⠄⠀","⢂⠀","⡂⠀","⠅⠀","⢃⠀","⡃⠀","⠍⠀","⢋⠀","⡋⠀","⠍⠁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⢈⠩","⡀⢙","⠄⡙","⢂⠩","⡂⢘","⠅⡘","⢃⠨","⡃⢐","⠍⡐","⢋⠠","⡋⢀","⠍⡁","⢋⠁","⡋⠁","⠍⠉","⠋⠉","⠋⠉","⠉⠙","⠉⠙","⠉⠩","⠈⢙","⠈⡙","⠈⠩","⠀⢙","⠀⡙","⠀⠩","⠀⢘","⠀⡘","⠀⠨","⠀⢐","⠀⡐","⠀⠠","⠀⢀","⠀⡀", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:24:23: warning: static property 'line' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let line = Pattern(frames: "-","\\","|","/", speed: 0.13)
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:24:23: note: annotate 'line' with '@MainActor' if property should only be accessed from the main actor
public static let line = Pattern(frames: "-","\\","|","/", speed: 0.13)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:24:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let line = Pattern(frames: "-","\\","|","/", speed: 0.13)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:25:23: warning: static property 'line2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let line2 = Pattern(frames: "⠂","-","–","—","–","-", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:25:23: note: annotate 'line2' with '@MainActor' if property should only be accessed from the main actor
public static let line2 = Pattern(frames: "⠂","-","–","—","–","-", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:25:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let line2 = Pattern(frames: "⠂","-","–","—","–","-", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:27:23: warning: static property 'pipe' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pipe = Pattern(frames: "┤","┘","┴","└","├","┌","┬","┐", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:27:23: note: annotate 'pipe' with '@MainActor' if property should only be accessed from the main actor
public static let pipe = Pattern(frames: "┤","┘","┴","└","├","┌","┬","┐", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:27:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pipe = Pattern(frames: "┤","┘","┴","└","├","┌","┬","┐", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:29:23: warning: static property 'simpleDots' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let simpleDots = Pattern(frames: ". ",".. ","..."," ", speed: 0.4)
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:29:23: note: annotate 'simpleDots' with '@MainActor' if property should only be accessed from the main actor
public static let simpleDots = Pattern(frames: ". ",".. ","..."," ", speed: 0.4)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let simpleDots = Pattern(frames: ". ",".. ","..."," ", speed: 0.4)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:30:23: warning: static property 'simpleDotsScrolling' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let simpleDotsScrolling = Pattern(frames: ". ",".. ","..."," .."," ."," ", speed: 0.2)
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:30:23: note: annotate 'simpleDotsScrolling' with '@MainActor' if property should only be accessed from the main actor
public static let simpleDotsScrolling = Pattern(frames: ". ",".. ","..."," .."," ."," ", speed: 0.2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:30:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let simpleDotsScrolling = Pattern(frames: ". ",".. ","..."," .."," ."," ", speed: 0.2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:32:23: warning: static property 'star' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let star = Pattern(frames: "✶","✸","✹","✺","✹","✷", speed: 0.7)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:32:23: note: annotate 'star' with '@MainActor' if property should only be accessed from the main actor
public static let star = Pattern(frames: "✶","✸","✹","✺","✹","✷", speed: 0.7)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:32:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let star = Pattern(frames: "✶","✸","✹","✺","✹","✷", speed: 0.7)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:33:23: warning: static property 'star2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let star2 = Pattern(frames: "+","x","*", speed: 0.8)
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:33:23: note: annotate 'star2' with '@MainActor' if property should only be accessed from the main actor
public static let star2 = Pattern(frames: "+","x","*", speed: 0.8)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:33:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let star2 = Pattern(frames: "+","x","*", speed: 0.8)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:35:23: warning: static property 'flip' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let flip = Pattern(frames: "_","_","_","-","`","`","'","´","-","_","_","_", speed: 0.7)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:35:23: note: annotate 'flip' with '@MainActor' if property should only be accessed from the main actor
public static let flip = Pattern(frames: "_","_","_","-","`","`","'","´","-","_","_","_", speed: 0.7)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:35:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let flip = Pattern(frames: "_","_","_","-","`","`","'","´","-","_","_","_", speed: 0.7)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:37:23: warning: static property 'hamburger' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hamburger = Pattern(frames: "☱","☲","☴", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:37:23: note: annotate 'hamburger' with '@MainActor' if property should only be accessed from the main actor
public static let hamburger = Pattern(frames: "☱","☲","☴", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hamburger = Pattern(frames: "☱","☲","☴", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:39:23: warning: static property 'growVertical' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let growVertical = Pattern(frames: "▁","▃","▄","▅","▆","▇","▆","▅","▄","▃", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:39:23: note: annotate 'growVertical' with '@MainActor' if property should only be accessed from the main actor
public static let growVertical = Pattern(frames: "▁","▃","▄","▅","▆","▇","▆","▅","▄","▃", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:39:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let growVertical = Pattern(frames: "▁","▃","▄","▅","▆","▇","▆","▅","▄","▃", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:40:23: warning: static property 'growHorizontal' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let growHorizontal = Pattern(frames: "▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:40:23: note: annotate 'growHorizontal' with '@MainActor' if property should only be accessed from the main actor
public static let growHorizontal = Pattern(frames: "▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:40:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let growHorizontal = Pattern(frames: "▏","▎","▍","▌","▋","▊","▉","▊","▋","▌","▍","▎", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:42:23: warning: static property 'balloon' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let balloon = Pattern(frames: " ",".","o","O","@","*"," ", speed: 0.14)
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:42:23: note: annotate 'balloon' with '@MainActor' if property should only be accessed from the main actor
public static let balloon = Pattern(frames: " ",".","o","O","@","*"," ", speed: 0.14)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:42:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let balloon = Pattern(frames: " ",".","o","O","@","*"," ", speed: 0.14)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:43:23: warning: static property 'balloon2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let balloon2 = Pattern(frames: ".","o","O","°","O","o",".", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:43:23: note: annotate 'balloon2' with '@MainActor' if property should only be accessed from the main actor
public static let balloon2 = Pattern(frames: ".","o","O","°","O","o",".", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:43:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let balloon2 = Pattern(frames: ".","o","O","°","O","o",".", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:45:23: warning: static property 'noise' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let noise = Pattern(frames: "▓","▒","░", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:45:23: note: annotate 'noise' with '@MainActor' if property should only be accessed from the main actor
public static let noise = Pattern(frames: "▓","▒","░", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:45:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let noise = Pattern(frames: "▓","▒","░", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:47:23: warning: static property 'bounce' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bounce = Pattern(frames: "⠁","⠂","⠄","⠂", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:47:23: note: annotate 'bounce' with '@MainActor' if property should only be accessed from the main actor
public static let bounce = Pattern(frames: "⠁","⠂","⠄","⠂", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:47:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bounce = Pattern(frames: "⠁","⠂","⠄","⠂", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:48:23: warning: static property 'boxBounce' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let boxBounce = Pattern(frames: "▖","▘","▝","▗", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:48:23: note: annotate 'boxBounce' with '@MainActor' if property should only be accessed from the main actor
public static let boxBounce = Pattern(frames: "▖","▘","▝","▗", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:48:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let boxBounce = Pattern(frames: "▖","▘","▝","▗", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:49:23: warning: static property 'boxBounce2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let boxBounce2 = Pattern(frames: "▌","▀","▐","▄", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:49:23: note: annotate 'boxBounce2' with '@MainActor' if property should only be accessed from the main actor
public static let boxBounce2 = Pattern(frames: "▌","▀","▐","▄", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:49:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let boxBounce2 = Pattern(frames: "▌","▀","▐","▄", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:51:23: warning: static property 'triangle' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let triangle = Pattern(frames: "◢","◣","◤","◥", speed: 0.05)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:51:23: note: annotate 'triangle' with '@MainActor' if property should only be accessed from the main actor
public static let triangle = Pattern(frames: "◢","◣","◤","◥", speed: 0.05)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:51:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let triangle = Pattern(frames: "◢","◣","◤","◥", speed: 0.05)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:53:23: warning: static property 'arc' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let arc = Pattern(frames: "◜","◠","◝","◞","◡","◟", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:53:23: note: annotate 'arc' with '@MainActor' if property should only be accessed from the main actor
public static let arc = Pattern(frames: "◜","◠","◝","◞","◡","◟", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:53:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let arc = Pattern(frames: "◜","◠","◝","◞","◡","◟", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:54:23: warning: static property 'circle' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let circle = Pattern(frames: "◡","⊙","◠", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:54:23: note: annotate 'circle' with '@MainActor' if property should only be accessed from the main actor
public static let circle = Pattern(frames: "◡","⊙","◠", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:54:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let circle = Pattern(frames: "◡","⊙","◠", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:55:23: warning: static property 'squareCorners' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let squareCorners = Pattern(frames: "◰","◳","◲","◱", speed: 0.18)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:55:23: note: annotate 'squareCorners' with '@MainActor' if property should only be accessed from the main actor
public static let squareCorners = Pattern(frames: "◰","◳","◲","◱", speed: 0.18)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:55:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let squareCorners = Pattern(frames: "◰","◳","◲","◱", speed: 0.18)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:56:23: warning: static property 'circleQuarters' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let circleQuarters = Pattern(frames: "◴","◷","◶","◵", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:56:23: note: annotate 'circleQuarters' with '@MainActor' if property should only be accessed from the main actor
public static let circleQuarters = Pattern(frames: "◴","◷","◶","◵", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:56:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let circleQuarters = Pattern(frames: "◴","◷","◶","◵", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:57:23: warning: static property 'circleHalves' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let circleHalves = Pattern(frames: "◐","◓","◑","◒", speed: 0.05)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:57:23: note: annotate 'circleHalves' with '@MainActor' if property should only be accessed from the main actor
public static let circleHalves = Pattern(frames: "◐","◓","◑","◒", speed: 0.05)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:57:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let circleHalves = Pattern(frames: "◐","◓","◑","◒", speed: 0.05)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:59:23: warning: static property 'squish' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let squish = Pattern(frames: "╫","╪", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:59:23: note: annotate 'squish' with '@MainActor' if property should only be accessed from the main actor
public static let squish = Pattern(frames: "╫","╪", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let squish = Pattern(frames: "╫","╪", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:61:23: warning: static property 'toggle' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle = Pattern(frames: "⊶","⊷", speed: 0.25)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:61:23: note: annotate 'toggle' with '@MainActor' if property should only be accessed from the main actor
public static let toggle = Pattern(frames: "⊶","⊷", speed: 0.25)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle = Pattern(frames: "⊶","⊷", speed: 0.25)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:62:23: warning: static property 'toggle2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle2 = Pattern(frames: "▫","▪", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:62:23: note: annotate 'toggle2' with '@MainActor' if property should only be accessed from the main actor
public static let toggle2 = Pattern(frames: "▫","▪", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle2 = Pattern(frames: "▫","▪", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:63:23: warning: static property 'toggle3' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle3 = Pattern(frames: "□","■", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:63:23: note: annotate 'toggle3' with '@MainActor' if property should only be accessed from the main actor
public static let toggle3 = Pattern(frames: "□","■", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle3 = Pattern(frames: "□","■", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:64:23: warning: static property 'toggle4' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle4 = Pattern(frames: "■","□","▪","▫", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:64:23: note: annotate 'toggle4' with '@MainActor' if property should only be accessed from the main actor
public static let toggle4 = Pattern(frames: "■","□","▪","▫", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle4 = Pattern(frames: "■","□","▪","▫", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:65:23: warning: static property 'toggle5' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle5 = Pattern(frames: "▮","▯", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:65:23: note: annotate 'toggle5' with '@MainActor' if property should only be accessed from the main actor
public static let toggle5 = Pattern(frames: "▮","▯", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle5 = Pattern(frames: "▮","▯", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:66:23: warning: static property 'toggle6' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle6 = Pattern(frames: "ဝ","၀", speed: 0.3)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:66:23: note: annotate 'toggle6' with '@MainActor' if property should only be accessed from the main actor
public static let toggle6 = Pattern(frames: "ဝ","၀", speed: 0.3)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle6 = Pattern(frames: "ဝ","၀", speed: 0.3)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:67:23: warning: static property 'toggle7' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle7 = Pattern(frames: "⦾","⦿", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:67:23: note: annotate 'toggle7' with '@MainActor' if property should only be accessed from the main actor
public static let toggle7 = Pattern(frames: "⦾","⦿", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:67:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle7 = Pattern(frames: "⦾","⦿", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:68:23: warning: static property 'toggle8' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle8 = Pattern(frames: "◍","◌", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:68:23: note: annotate 'toggle8' with '@MainActor' if property should only be accessed from the main actor
public static let toggle8 = Pattern(frames: "◍","◌", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:68:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle8 = Pattern(frames: "◍","◌", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:69:23: warning: static property 'toggle9' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle9 = Pattern(frames: "◉","◎", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:69:23: note: annotate 'toggle9' with '@MainActor' if property should only be accessed from the main actor
public static let toggle9 = Pattern(frames: "◉","◎", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:69:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle9 = Pattern(frames: "◉","◎", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:70:23: warning: static property 'toggle10' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle10 = Pattern(frames: "㊂","㊀","㊁", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:70:23: note: annotate 'toggle10' with '@MainActor' if property should only be accessed from the main actor
public static let toggle10 = Pattern(frames: "㊂","㊀","㊁", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle10 = Pattern(frames: "㊂","㊀","㊁", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:71:23: warning: static property 'toggle11' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle11 = Pattern(frames: "⧇","⧆", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:71:23: note: annotate 'toggle11' with '@MainActor' if property should only be accessed from the main actor
public static let toggle11 = Pattern(frames: "⧇","⧆", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:71:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle11 = Pattern(frames: "⧇","⧆", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:72:23: warning: static property 'toggle12' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle12 = Pattern(frames: "☗","☖", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:72:23: note: annotate 'toggle12' with '@MainActor' if property should only be accessed from the main actor
public static let toggle12 = Pattern(frames: "☗","☖", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:72:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle12 = Pattern(frames: "☗","☖", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:73:23: warning: static property 'toggle13' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let toggle13 = Pattern(frames: "=","*","-", speed: 0.08)
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:73:23: note: annotate 'toggle13' with '@MainActor' if property should only be accessed from the main actor
public static let toggle13 = Pattern(frames: "=","*","-", speed: 0.08)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:73:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let toggle13 = Pattern(frames: "=","*","-", speed: 0.08)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:75:23: warning: static property 'arrow' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let arrow = Pattern(frames: "←","↖","↑","↗","→","↘","↓","↙", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:75:23: note: annotate 'arrow' with '@MainActor' if property should only be accessed from the main actor
public static let arrow = Pattern(frames: "←","↖","↑","↗","→","↘","↓","↙", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:75:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let arrow = Pattern(frames: "←","↖","↑","↗","→","↘","↓","↙", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:76:23: warning: static property 'arrow2' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let arrow2 = Pattern(frames: "⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ ", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:76:23: note: annotate 'arrow2' with '@MainActor' if property should only be accessed from the main actor
public static let arrow2 = Pattern(frames: "⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ ", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:76:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let arrow2 = Pattern(frames: "⬆️ ","↗️ ","➡️ ","↘️ ","⬇️ ","↙️ ","⬅️ ","↖️ ", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:77:23: warning: static property 'arrow3' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let arrow3 = Pattern(frames: "▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:77:23: note: annotate 'arrow3' with '@MainActor' if property should only be accessed from the main actor
public static let arrow3 = Pattern(frames: "▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:77:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let arrow3 = Pattern(frames: "▹▹▹▹▹","▸▹▹▹▹","▹▸▹▹▹","▹▹▸▹▹","▹▹▹▸▹","▹▹▹▹▸", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:79:23: warning: static property 'bouncingBar' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bouncingBar = Pattern(frames: "[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]", speed: 0.08)
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:79:23: note: annotate 'bouncingBar' with '@MainActor' if property should only be accessed from the main actor
public static let bouncingBar = Pattern(frames: "[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]", speed: 0.08)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:79:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bouncingBar = Pattern(frames: "[ ]","[ =]","[ ==]","[ ===]","[====]","[=== ]","[== ]","[= ]", speed: 0.08)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:80:23: warning: static property 'bouncingBall' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let bouncingBall = Pattern(frames: "( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:80:23: note: annotate 'bouncingBall' with '@MainActor' if property should only be accessed from the main actor
public static let bouncingBall = Pattern(frames: "( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:80:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let bouncingBall = Pattern(frames: "( ● )","( ● )","( ● )","( ● )","( ●)","( ● )","( ● )","( ● )","( ● )","(● )", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:82:23: warning: static property 'smiley' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let smiley = Pattern(frames: "😄 ","😝 ", speed: 0.2)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:82:23: note: annotate 'smiley' with '@MainActor' if property should only be accessed from the main actor
public static let smiley = Pattern(frames: "😄 ","😝 ", speed: 0.2)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:82:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let smiley = Pattern(frames: "😄 ","😝 ", speed: 0.2)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:83:23: warning: static property 'monkey' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let monkey = Pattern(frames: "🙈 ","🙈 ","🙉 ","🙊 ", speed: 0.3)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:83:23: note: annotate 'monkey' with '@MainActor' if property should only be accessed from the main actor
public static let monkey = Pattern(frames: "🙈 ","🙈 ","🙉 ","🙊 ", speed: 0.3)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:83:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let monkey = Pattern(frames: "🙈 ","🙈 ","🙉 ","🙊 ", speed: 0.3)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:84:23: warning: static property 'hearts' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let hearts = Pattern(frames: "💛 ","💙 ","💜 ","💚 ","❤️ ", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:84:23: note: annotate 'hearts' with '@MainActor' if property should only be accessed from the main actor
public static let hearts = Pattern(frames: "💛 ","💙 ","💜 ","💚 ","❤️ ", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:84:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let hearts = Pattern(frames: "💛 ","💙 ","💜 ","💚 ","❤️ ", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:85:23: warning: static property 'clock' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let clock = Pattern(frames: "🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 ", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:85:23: note: annotate 'clock' with '@MainActor' if property should only be accessed from the main actor
public static let clock = Pattern(frames: "🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 ", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:85:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let clock = Pattern(frames: "🕐 ","🕑 ","🕒 ","🕓 ","🕔 ","🕕 ","🕖 ","🕗 ","🕘 ","🕙 ","🕚 ", speed: 0.1)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:86:23: warning: static property 'earth' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let earth = Pattern(frames: "🌍 ","🌎 ","🌏 ", speed: 0.18)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:86:23: note: annotate 'earth' with '@MainActor' if property should only be accessed from the main actor
public static let earth = Pattern(frames: "🌍 ","🌎 ","🌏 ", speed: 0.18)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let earth = Pattern(frames: "🌍 ","🌎 ","🌏 ", speed: 0.18)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:87:23: warning: static property 'moon' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let moon = Pattern(frames: "🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 ", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:87:23: note: annotate 'moon' with '@MainActor' if property should only be accessed from the main actor
public static let moon = Pattern(frames: "🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 ", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:87:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let moon = Pattern(frames: "🌑 ","🌒 ","🌓 ","🌔 ","🌕 ","🌖 ","🌗 ","🌘 ", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:88:23: warning: static property 'runner' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let runner = Pattern(frames: "🚶 ","🏃 ", speed: 0.14)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:88:23: note: annotate 'runner' with '@MainActor' if property should only be accessed from the main actor
public static let runner = Pattern(frames: "🚶 ","🏃 ", speed: 0.14)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:88:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let runner = Pattern(frames: "🚶 ","🏃 ", speed: 0.14)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:90:23: warning: static property 'pong' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pong = Pattern(frames: "▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:90:23: note: annotate 'pong' with '@MainActor' if property should only be accessed from the main actor
public static let pong = Pattern(frames: "▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pong = Pattern(frames: "▐⠂ ▌","▐⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂▌","▐ ⠠▌","▐ ⡀▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐ ⠠ ▌","▐ ⠂ ▌","▐ ⠈ ▌","▐ ⠂ ▌","▐ ⠠ ▌","▐ ⡀ ▌","▐⠠ ▌", speed: 0.08)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:92:23: warning: static property 'shark' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shark = Pattern(frames: "▐|\\____________▌","▐_|\\___________▌","▐__|\\__________▌","▐___|\\_________▌","▐____|\\________▌","▐_____|\\_______▌","▐______|\\______▌","▐_______|\\_____▌","▐________|\\____▌","▐_________|\\___▌","▐__________|\\__▌","▐___________|\\_▌","▐____________|\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:92:23: note: annotate 'shark' with '@MainActor' if property should only be accessed from the main actor
public static let shark = Pattern(frames: "▐|\\____________▌","▐_|\\___________▌","▐__|\\__________▌","▐___|\\_________▌","▐____|\\________▌","▐_____|\\_______▌","▐______|\\______▌","▐_______|\\_____▌","▐________|\\____▌","▐_________|\\___▌","▐__________|\\__▌","▐___________|\\_▌","▐____________|\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:92:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shark = Pattern(frames: "▐|\\____________▌","▐_|\\___________▌","▐__|\\__________▌","▐___|\\_________▌","▐____|\\________▌","▐_____|\\_______▌","▐______|\\______▌","▐_______|\\_____▌","▐________|\\____▌","▐_________|\\___▌","▐__________|\\__▌","▐___________|\\_▌","▐____________|\\▌","▐____________/|▌","▐___________/|_▌","▐__________/|__▌","▐_________/|___▌","▐________/|____▌","▐_______/|_____▌","▐______/|______▌","▐_____/|_______▌","▐____/|________▌","▐___/|_________▌","▐__/|__________▌","▐_/|___________▌","▐/|____________▌", speed: 0.12)
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:94:23: warning: static property 'dqpb' is not concurrency-safe because non-'Sendable' type 'Pattern' may have shared mutable state; this is an error in the Swift 6 language mode
public static let dqpb = Pattern(frames: "d","q","p","b", speed: 0.1)
^
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:7:15: note: consider making struct 'Pattern' conform to the 'Sendable' protocol
public struct Pattern: SpinnerPattern, Decodable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:94:23: note: annotate 'dqpb' with '@MainActor' if property should only be accessed from the main actor
public static let dqpb = Pattern(frames: "d","q","p","b", speed: 0.1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/CLISpinner/Pattern.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let dqpb = Pattern(frames: "d","q","p","b", speed: 0.1)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling ModesExtractor.swift (in target 'Rainbow' from project 'Rainbow')
SwiftDriverJobDiscovery normal arm64 Compiling Color.swift (in target 'Rainbow' from project 'Rainbow')
SwiftDriverJobDiscovery normal arm64 Emitting module for CLISpinner (in target 'CLISpinner' from project 'CLISpinner')
SwiftDriver\ Compilation\ Requirements CLISpinner normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name CLISpinner -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CLISpinner-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner-Swift.h (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/CLISpinner-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.swiftdoc (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.abi.json (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.swiftmodule (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.swiftsourceinfo (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Pattern.swift (in target 'CLISpinner' from project 'CLISpinner')
SwiftDriverJobDiscovery normal arm64 Compiling Rainbow.swift (in target 'Rainbow' from project 'Rainbow')
SwiftDriverJobDiscovery normal arm64 Compiling OutputTarget.swift (in target 'Rainbow' from project 'Rainbow')
SwiftDriver\ Compilation Rainbow normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Rainbow' from project 'Rainbow')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Rainbow -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Rainbow.o normal (in target 'Rainbow' from project 'Rainbow')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Rainbow.build/Debug-appletvos/Rainbow.build/Objects-normal/arm64/Rainbow_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Rainbow.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Rainbow.o (in target 'Rainbow' from project 'Rainbow')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Rainbow
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Rainbow.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.LinkFileList (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.LinkFileList
SwiftDriverJobDiscovery normal arm64 Compiling Patterns+File.swift (in target 'CLISpinner' from project 'CLISpinner')
SwiftDriverJobDiscovery normal arm64 Compiling Spinner.swift (in target 'CLISpinner' from project 'CLISpinner')
SwiftDriver\ Compilation CLISpinner normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name CLISpinner -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.o normal (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CLISpinner.build/Debug-appletvos/CLISpinner.build/Objects-normal/arm64/CLISpinner_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.o (in target 'CLISpinner' from project 'CLISpinner')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/CLISpinner.o
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CLISpinner' from project 'CLISpinner')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Rainbow' from project 'Rainbow')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CLISpinner' from project 'CLISpinner')
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "rainbow",
"requirement" : {
"range" : [
{
"lower_bound" : "3.1.4",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/onevcat/Rainbow"
}
],
"manifest_display_name" : "CLISpinner",
"name" : "CLISpinner",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CLISpinner",
"targets" : [
"CLISpinner"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CLISpinnerTests",
"module_type" : "SwiftTarget",
"name" : "CLISpinnerTests",
"path" : "Tests/CLISpinnerTests",
"sources" : [
"CLISpinnerTests.swift"
],
"target_dependencies" : [
"CLISpinner"
],
"type" : "test"
},
{
"c99name" : "CLISpinner",
"module_type" : "SwiftTarget",
"name" : "CLISpinner",
"path" : "Sources/CLISpinner",
"product_dependencies" : [
"Rainbow"
],
"product_memberships" : [
"CLISpinner"
],
"sources" : [
"Pattern.swift",
"Patterns+File.swift",
"Spinner.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.