The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of BeautyChart, reference master (1cc9d0), with Swift 6.1 for watchOS using Xcode 16.3 on 27 Apr 2025 13:33:04 UTC.

Swift 6 data race errors: 60

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme BeautyChart -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

    public static let lineViewDarkMode = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineViewDarkMode = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: warning: static property 'data' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ Path+QuadCurve.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/Path+QuadCurve.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/Path+QuadCurve.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ Plottable.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Protocols/Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Protocols/Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64 Emitting\ module\ for\ BeautyChart (in target 'BeautyChart' from project 'BeautyChart')
EmitSwiftModule normal arm64 (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: warning: static property 'blu' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: add '@MainActor' to make static property 'blu' part of global actor 'MainActor'
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: warning: static property 'bluPurpl' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: add '@MainActor' to make static property 'bluPurpl' part of global actor 'MainActor'
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: warning: static property 'prplPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: add '@MainActor' to make static property 'prplPink' part of global actor 'MainActor'
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: warning: static property 'prplNeon' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: add '@MainActor' to make static property 'prplNeon' part of global actor 'MainActor'
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: warning: static property 'orngPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: add '@MainActor' to make static property 'orngPink' part of global actor 'MainActor'
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: warning: static property 'lineChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: add '@MainActor' to make static property 'lineChartStyleOne' part of global actor 'MainActor'
    public static let lineChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: warning: static property 'barChartStyleOrangeLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: add '@MainActor' to make static property 'barChartStyleOrangeLight' part of global actor 'MainActor'
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: warning: static property 'barChartStyleOrangeDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: add '@MainActor' to make static property 'barChartStyleOrangeDark' part of global actor 'MainActor'
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: warning: static property 'barChartStyleNeonBlueLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueLight' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: warning: static property 'barChartStyleNeonBlueDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueDark' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: warning: static property 'barChartMidnightGreenDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: add '@MainActor' to make static property 'barChartMidnightGreenDark' part of global actor 'MainActor'
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: warning: static property 'barChartMidnightGreenLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: add '@MainActor' to make static property 'barChartMidnightGreenLight' part of global actor 'MainActor'
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: warning: static property 'pieChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pieChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: add '@MainActor' to make static property 'pieChartStyleOne' part of global actor 'MainActor'
    public static let pieChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pieChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: warning: static property 'lineViewDarkMode' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineViewDarkMode = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: add '@MainActor' to make static property 'lineViewDarkMode' part of global actor 'MainActor'
    public static let lineViewDarkMode = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineViewDarkMode = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: warning: static property 'data' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ View+Conditional.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/View+Conditional.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/View+Conditional.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ PressWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/PressWindow.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/PressWindow.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ CGPoint+Plottable.swift,\ CGPointsSet.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPoint+Plottable.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPointsSet.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPoint+Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPointsSet.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ ChartSmoothView.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/ChartSmoothView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/ChartSmoothView.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ View+Conditional.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/View+Conditional.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/View+Conditional.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Plottable.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Protocols/Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Protocols/Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64_32 Emitting\ module\ for\ BeautyChart (in target 'BeautyChart' from project 'BeautyChart')
EmitSwiftModule normal arm64_32 (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: warning: static property 'blu' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: add '@MainActor' to make static property 'blu' part of global actor 'MainActor'
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: warning: static property 'bluPurpl' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: add '@MainActor' to make static property 'bluPurpl' part of global actor 'MainActor'
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: warning: static property 'prplPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: add '@MainActor' to make static property 'prplPink' part of global actor 'MainActor'
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: warning: static property 'prplNeon' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: add '@MainActor' to make static property 'prplNeon' part of global actor 'MainActor'
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: warning: static property 'orngPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: add '@MainActor' to make static property 'orngPink' part of global actor 'MainActor'
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: warning: static property 'lineChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: add '@MainActor' to make static property 'lineChartStyleOne' part of global actor 'MainActor'
    public static let lineChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: warning: static property 'barChartStyleOrangeLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: add '@MainActor' to make static property 'barChartStyleOrangeLight' part of global actor 'MainActor'
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: warning: static property 'barChartStyleOrangeDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: add '@MainActor' to make static property 'barChartStyleOrangeDark' part of global actor 'MainActor'
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: warning: static property 'barChartStyleNeonBlueLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueLight' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: warning: static property 'barChartStyleNeonBlueDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueDark' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: warning: static property 'barChartMidnightGreenDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: add '@MainActor' to make static property 'barChartMidnightGreenDark' part of global actor 'MainActor'
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: warning: static property 'barChartMidnightGreenLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: add '@MainActor' to make static property 'barChartMidnightGreenLight' part of global actor 'MainActor'
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: warning: static property 'pieChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pieChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: add '@MainActor' to make static property 'pieChartStyleOne' part of global actor 'MainActor'
    public static let pieChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pieChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: warning: static property 'lineViewDarkMode' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineViewDarkMode = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: add '@MainActor' to make static property 'lineViewDarkMode' part of global actor 'MainActor'
    public static let lineViewDarkMode = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineViewDarkMode = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: warning: static property 'data' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for BeautyChart (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 Compiling\ DragView.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/DragView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/DragView.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Emitting module for BeautyChart (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriver\ Compilation\ Requirements BeautyChart normal armv7k com.apple.xcode.tools.swift.compiler (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BeautyChart -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart-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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal armv7k Compiling Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriver\ Compilation\ Requirements BeautyChart normal arm64 com.apple.xcode.tools.swift.compiler (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BeautyChart -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart-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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64_32 Compiling\ View+Conditional.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/View+Conditional.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/View+Conditional.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ DragView.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/DragView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/DragView.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriverJobDiscovery normal armv7k Compiling View+Conditional.swift (in target 'BeautyChart' from project 'BeautyChart')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.swiftmodule (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.swiftdoc (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/armv7k-apple-watchos.swiftdoc
SwiftDriverJobDiscovery normal armv7k Compiling ChartSmoothView.swift (in target 'BeautyChart' from project 'BeautyChart')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.abi.json (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.swiftmodule (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.swiftdoc (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.abi.json (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.swiftsourceinfo (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.swiftsourceinfo (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ CubicBezier.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CubicBezier.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CubicBezier.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ Path+QuadCurve.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/Path+QuadCurve.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/Path+QuadCurve.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Path+QuadCurve.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/Path+QuadCurve.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/Path+QuadCurve.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling PressWindow.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 Compiling\ ChartSmoothView.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/ChartSmoothView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/ChartSmoothView.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling Path+QuadCurve.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k Compiling\ CGPoint+Plottable.swift,\ CGPointsSet.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPoint+Plottable.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPointsSet.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPoint+Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPointsSet.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling View+Conditional.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k Compiling\ Style.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: warning: static property 'blu' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: add '@MainActor' to make static property 'blu' part of global actor 'MainActor'
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: warning: static property 'bluPurpl' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: add '@MainActor' to make static property 'bluPurpl' part of global actor 'MainActor'
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: warning: static property 'prplPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: add '@MainActor' to make static property 'prplPink' part of global actor 'MainActor'
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: warning: static property 'prplNeon' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: add '@MainActor' to make static property 'prplNeon' part of global actor 'MainActor'
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: warning: static property 'orngPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: add '@MainActor' to make static property 'orngPink' part of global actor 'MainActor'
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: warning: static property 'lineChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: add '@MainActor' to make static property 'lineChartStyleOne' part of global actor 'MainActor'
    public static let lineChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: warning: static property 'barChartStyleOrangeLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: add '@MainActor' to make static property 'barChartStyleOrangeLight' part of global actor 'MainActor'
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: warning: static property 'barChartStyleOrangeDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: add '@MainActor' to make static property 'barChartStyleOrangeDark' part of global actor 'MainActor'
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: warning: static property 'barChartStyleNeonBlueLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueLight' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: warning: static property 'barChartStyleNeonBlueDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueDark' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: warning: static property 'barChartMidnightGreenDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: add '@MainActor' to make static property 'barChartMidnightGreenDark' part of global actor 'MainActor'
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: warning: static property 'barChartMidnightGreenLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: add '@MainActor' to make static property 'barChartMidnightGreenLight' part of global actor 'MainActor'
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: warning: static property 'pieChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pieChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: add '@MainActor' to make static property 'pieChartStyleOne' part of global actor 'MainActor'
    public static let pieChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pieChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: warning: static property 'lineViewDarkMode' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineViewDarkMode = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: add '@MainActor' to make static property 'lineViewDarkMode' part of global actor 'MainActor'
    public static let lineViewDarkMode = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineViewDarkMode = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: warning: static property 'data' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling CGPoint+Plottable.swift, CGPointsSet.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 Compiling\ CubicBezier.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CubicBezier.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CubicBezier.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CubicBezier.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 Compiling\ MagnifyOnPress.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/MagnifyOnPress.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/MagnifyOnPress.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling DragView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k Compiling\ CubicBezier.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CubicBezier.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CubicBezier.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Path+QuadCurve.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 Compiling\ PressWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/PressWindow.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/PressWindow.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling CGPoint+Plottable.swift, CGPointsSet.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 Compiling\ CGPoint+Plottable.swift,\ CGPointsSet.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPoint+Plottable.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPointsSet.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPoint+Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Geometry/CGPointsSet.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling Style.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 Compiling\ Plottable.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Protocols/Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Protocols/Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling CubicBezier.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k Compiling\ MagnifyOnPress.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/MagnifyOnPress.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/MagnifyOnPress.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling PressWindow.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 Compiling\ PressWindow.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/PressWindow.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/PressWindow.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling MagnifyOnPress.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriver\ Compilation BeautyChart normal armv7k com.apple.xcode.tools.swift.compiler (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BeautyChart -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart-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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for BeautyChart (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriver\ Compilation\ Requirements BeautyChart normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BeautyChart -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart-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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ Style.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: warning: static property 'blu' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: add '@MainActor' to make static property 'blu' part of global actor 'MainActor'
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: warning: static property 'bluPurpl' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: add '@MainActor' to make static property 'bluPurpl' part of global actor 'MainActor'
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: warning: static property 'prplPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: add '@MainActor' to make static property 'prplPink' part of global actor 'MainActor'
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: warning: static property 'prplNeon' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: add '@MainActor' to make static property 'prplNeon' part of global actor 'MainActor'
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: warning: static property 'orngPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: add '@MainActor' to make static property 'orngPink' part of global actor 'MainActor'
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: warning: static property 'lineChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: add '@MainActor' to make static property 'lineChartStyleOne' part of global actor 'MainActor'
    public static let lineChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: warning: static property 'barChartStyleOrangeLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: add '@MainActor' to make static property 'barChartStyleOrangeLight' part of global actor 'MainActor'
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: warning: static property 'barChartStyleOrangeDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: add '@MainActor' to make static property 'barChartStyleOrangeDark' part of global actor 'MainActor'
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: warning: static property 'barChartStyleNeonBlueLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueLight' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: warning: static property 'barChartStyleNeonBlueDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueDark' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: warning: static property 'barChartMidnightGreenDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: add '@MainActor' to make static property 'barChartMidnightGreenDark' part of global actor 'MainActor'
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: warning: static property 'barChartMidnightGreenLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: add '@MainActor' to make static property 'barChartMidnightGreenLight' part of global actor 'MainActor'
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: warning: static property 'pieChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pieChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: add '@MainActor' to make static property 'pieChartStyleOne' part of global actor 'MainActor'
    public static let pieChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pieChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: warning: static property 'lineViewDarkMode' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineViewDarkMode = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: add '@MainActor' to make static property 'lineViewDarkMode' part of global actor 'MainActor'
    public static let lineViewDarkMode = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineViewDarkMode = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: warning: static property 'data' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           nonisolated(unsafe)
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/BeautyChart-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart-Swift.h (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/BeautyChart-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling Style.swift (in target 'BeautyChart' from project 'BeautyChart')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.swiftmodule (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.swiftdoc (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.abi.json (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.swiftsourceinfo (in target 'BeautyChart' from project 'BeautyChart')
    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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ DragView.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/DragView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/DragView.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ Style.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:58:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:59:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:60:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: warning: static property 'blu' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: add '@MainActor' to make static property 'blu' part of global actor 'MainActor'
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:61:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: warning: static property 'bluPurpl' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: add '@MainActor' to make static property 'bluPurpl' part of global actor 'MainActor'
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:62:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:63:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: warning: static property 'prplPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: add '@MainActor' to make static property 'prplPink' part of global actor 'MainActor'
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:64:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: warning: static property 'prplNeon' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: add '@MainActor' to make static property 'prplNeon' part of global actor 'MainActor'
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:65:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: warning: static property 'orngPink' is not concurrency-safe because non-'Sendable' type 'GradientColor' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:43:15: note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
public struct GradientColor {
              ^
                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: add '@MainActor' to make static property 'orngPink' part of global actor 'MainActor'
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: warning: static property 'lineChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: add '@MainActor' to make static property 'lineChartStyleOne' part of global actor 'MainActor'
    public static let lineChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:70:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: warning: static property 'barChartStyleOrangeLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: add '@MainActor' to make static property 'barChartStyleOrangeLight' part of global actor 'MainActor'
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:78:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: warning: static property 'barChartStyleOrangeDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: add '@MainActor' to make static property 'barChartStyleOrangeDark' part of global actor 'MainActor'
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:86:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleOrangeDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: warning: static property 'barChartStyleNeonBlueLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueLight' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:94:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: warning: static property 'barChartStyleNeonBlueDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: add '@MainActor' to make static property 'barChartStyleNeonBlueDark' part of global actor 'MainActor'
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:102:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartStyleNeonBlueDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: warning: static property 'barChartMidnightGreenDark' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: add '@MainActor' to make static property 'barChartMidnightGreenDark' part of global actor 'MainActor'
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:110:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenDark = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: warning: static property 'barChartMidnightGreenLight' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: add '@MainActor' to make static property 'barChartMidnightGreenLight' part of global actor 'MainActor'
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:118:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let barChartMidnightGreenLight = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: warning: static property 'pieChartStyleOne' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let pieChartStyleOne = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: add '@MainActor' to make static property 'pieChartStyleOne' part of global actor 'MainActor'
    public static let pieChartStyleOne = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:126:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let pieChartStyleOne = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: warning: static property 'lineViewDarkMode' is not concurrency-safe because non-'Sendable' type 'ChartStyle' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let lineViewDarkMode = ChartStyle(
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:159:14: note: class 'ChartStyle' does not conform to the 'Sendable' protocol
public class ChartStyle {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: add '@MainActor' to make static property 'lineViewDarkMode' part of global actor 'MainActor'
    public static let lineViewDarkMode = ChartStyle(
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:134:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let lineViewDarkMode = ChartStyle(
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: warning: static property 'data' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: add '@MainActor' to make static property 'data' part of global actor 'MainActor'
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:259:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var data: ChartData = ChartData(points: [37, 72, 51, 22, 39, 47, 66, 85, 50])
                      ^
           nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: warning: static property 'values' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                  ~~~ ^
                  let
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: add '@MainActor' to make static property 'values' part of global actor 'MainActor'
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/Style.swift:260:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static public var values: ChartData = ChartData(values: [("2017 Q3", 220),
                      ^
           nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Plottable.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 Compiling\ ChartSmoothView.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/ChartSmoothView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Views/Elements/ChartSmoothView.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling DragView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 Compiling\ MagnifyOnPress.swift /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/MagnifyOnPress.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/BeautyChart/Tools/SwiftUI/MagnifyOnPress.swift (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling DragView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriverJobDiscovery normal arm64 Compiling ChartSmoothView.swift (in target 'BeautyChart' from project 'BeautyChart')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/Binary/BeautyChart.o normal armv7k (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos7.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/Binary/BeautyChart.o
SwiftDriverJobDiscovery normal arm64_32 Compiling Style.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriverJobDiscovery normal arm64_32 Compiling ChartSmoothView.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriverJobDiscovery normal arm64_32 Compiling View+Conditional.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriverJobDiscovery normal arm64 Compiling MagnifyOnPress.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriver\ Compilation BeautyChart normal arm64 com.apple.xcode.tools.swift.compiler (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BeautyChart -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart-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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/Binary/BeautyChart.o normal arm64 (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos7.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/Binary/BeautyChart.o
SwiftDriverJobDiscovery normal arm64_32 Compiling CGPoint+Plottable.swift, CGPointsSet.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriverJobDiscovery normal arm64_32 Compiling CubicBezier.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriverJobDiscovery normal arm64_32 Compiling MagnifyOnPress.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriverJobDiscovery normal arm64_32 Compiling PressWindow.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriverJobDiscovery normal arm64_32 Compiling Path+QuadCurve.swift (in target 'BeautyChart' from project 'BeautyChart')
SwiftDriver\ Compilation BeautyChart normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name BeautyChart -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos7.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart-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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.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/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/Binary/BeautyChart.o normal arm64_32 (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos7.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/Binary/BeautyChart.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.o normal arm64\ armv7k\ arm64_32 (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/Binary/BeautyChart.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/Binary/BeautyChart.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/Binary/BeautyChart.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.o
ExtractAppIntentsMetadata (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name BeautyChart --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 7.0 --bundle-identifier spi-builder-workspace.BeautyChart --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.appintents --target-triple arm64-apple-watchos7.0 --target-triple armv7k-apple-watchos7.0 --target-triple arm64_32-apple-watchos7.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/BeautyChart.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/BeautyChart.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64/BeautyChart.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/armv7k/BeautyChart.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BeautyChart.build/Debug-watchos/BeautyChart.build/Objects-normal/arm64_32/BeautyChart.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 06:33:03.387 appintentsmetadataprocessor[742:4328] Starting appintentsmetadataprocessor export
2025-04-27 06:33:03.425 appintentsmetadataprocessor[742:4328] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.o (in target 'BeautyChart' from project 'BeautyChart')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/BeautyChart.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "BeautyChart",
  "name" : "BeautyChart",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "BeautyChart",
      "targets" : [
        "BeautyChart"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "BeautyChart",
      "module_type" : "SwiftTarget",
      "name" : "BeautyChart",
      "path" : "Sources/BeautyChart",
      "product_memberships" : [
        "BeautyChart"
      ],
      "sources" : [
        "Tools/Geometry/CGPoint+Plottable.swift",
        "Tools/Geometry/CGPointsSet.swift",
        "Tools/Geometry/CubicBezier.swift",
        "Tools/Geometry/Path+QuadCurve.swift",
        "Tools/Protocols/Plottable.swift",
        "Tools/Style.swift",
        "Tools/SwiftUI/DragView.swift",
        "Tools/SwiftUI/MagnifyOnPress.swift",
        "Tools/SwiftUI/View+Conditional.swift",
        "Views/Elements/ChartSmoothView.swift",
        "Views/Elements/PressWindow.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.