This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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

Failed to build SwiftUICharts with Swift 6.0 (beta) for macOS (SPM).

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apppear/chartview.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/apppear/chartview
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 102b51b feat: added wiki article links to readme
Cloned https://github.com/apppear/chartview.git
Revision (git rev-parse @):
102b51bff6d2edcb4d0962d05795938199fe3eba
SUCCESS checkout https://github.com/apppear/chartview.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/apppear/chartview.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/19] Compiling SwiftUICharts PieChartRow.swift
[4/20] Compiling SwiftUICharts PieChartHelpers.swift
[5/20] Compiling SwiftUICharts Path+QuadCurve.swift
[6/20] Compiling SwiftUICharts PieChartCell.swift
[7/20] Compiling SwiftUICharts Legend.swift
[8/20] Compiling SwiftUICharts Line.swift
[9/20] Compiling SwiftUICharts MagnifierRect.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:60: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
 58 |
 59 | public struct Styles {
 60 |     public static let lineChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         backgroundColor: Color.white,
 62 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:124: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
122 |         dropShadowColor: Color.gray)
123 |
124 |     public static let lineViewDarkMode = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineViewDarkMode' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |         backgroundColor: Color.black,
126 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:48: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 46 |
 47 | public struct GradientColors {
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
    |                       |- 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
    |                       |- note: annotate 'orange' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
[10/20] Compiling SwiftUICharts MultiLineChartView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:60: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
 58 |
 59 | public struct Styles {
 60 |     public static let lineChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         backgroundColor: Color.white,
 62 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:124: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
122 |         dropShadowColor: Color.gray)
123 |
124 |     public static let lineViewDarkMode = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineViewDarkMode' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |         backgroundColor: Color.black,
126 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:48: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 46 |
 47 | public struct GradientColors {
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
    |                       |- 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
    |                       |- note: annotate 'orange' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
[11/20] Compiling SwiftUICharts LineChartView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:60: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
 58 |
 59 | public struct Styles {
 60 |     public static let lineChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         backgroundColor: Color.white,
 62 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:124: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
122 |         dropShadowColor: Color.gray)
123 |
124 |     public static let lineViewDarkMode = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineViewDarkMode' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |         backgroundColor: Color.black,
126 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/LineChart/LineChartView.swift:84:50: error: cannot force unwrap value of non-optional type 'Int'
 82 |                                     Image(systemName: "arrow.down")
 83 |                                 }
 84 |                                 Text("\(rateValue!)%")
    |                                                  `- error: cannot force unwrap value of non-optional type 'Int'
 85 |                             }
 86 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/LineChart/LineChartView.swift:145:97: error: missing argument for parameter 'rateValue' in call
 34 |     private var rateValue: Int?
 35 |
 36 |     public init(data: [Double],
    |            `- note: 'init(data:title:legend:style:form:rateValue:dropShadow:valueSpecifier:)' declared here
 37 |                 title: String,
 38 |                 legend: String? = nil,
    :
143 |     static var previews: some View {
144 |         Group {
145 |             LineChartView(data: [8,23,54,32,12,37,7,23,43], title: "Line chart", legend: "Basic")
    |                                                                                                 `- error: missing argument for parameter 'rateValue' in call
146 |                 .environment(\.colorScheme, .light)
147 |
[12/20] Compiling SwiftUICharts LineView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:60: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
 58 |
 59 | public struct Styles {
 60 |     public static let lineChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         backgroundColor: Color.white,
 62 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:124: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
122 |         dropShadowColor: Color.gray)
123 |
124 |     public static let lineViewDarkMode = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineViewDarkMode' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |         backgroundColor: Color.black,
126 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/LineChart/LineChartView.swift:84:50: error: cannot force unwrap value of non-optional type 'Int'
 82 |                                     Image(systemName: "arrow.down")
 83 |                                 }
 84 |                                 Text("\(rateValue!)%")
    |                                                  `- error: cannot force unwrap value of non-optional type 'Int'
 85 |                             }
 86 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/LineChart/LineChartView.swift:145:97: error: missing argument for parameter 'rateValue' in call
 34 |     private var rateValue: Int?
 35 |
 36 |     public init(data: [Double],
    |            `- note: 'init(data:title:legend:style:form:rateValue:dropShadow:valueSpecifier:)' declared here
 37 |                 title: String,
 38 |                 legend: String? = nil,
    :
143 |     static var previews: some View {
144 |         Group {
145 |             LineChartView(data: [8,23,54,32,12,37,7,23,43], title: "Line chart", legend: "Basic")
    |                                                                                                 `- error: missing argument for parameter 'rateValue' in call
146 |                 .environment(\.colorScheme, .light)
147 |
[13/20] Compiling SwiftUICharts BarChartView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:68: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
 66 |         dropShadowColor: Color.gray)
 67 |
 68 |     public static let barChartStyleOrangeLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |         backgroundColor: Color.white,
 70 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:76: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
 74 |         dropShadowColor: Color.gray)
 75 |
 76 |     public static let barChartStyleOrangeDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         backgroundColor: Color.black,
 78 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:236:23: warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
234 | public class TestData{
235 |     static public var data:ChartData = ChartData(points: [37,72,51,22,39,47,66,85,50])
236 |     static public var values:ChartData = ChartData(values: [("2017 Q3",220),
    |                       |- warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'values' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
237 |                                                             ("2017 Q4",1550),
238 |                                                             ("2018 Q1",8180),
[14/20] Compiling SwiftUICharts LabelView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:68: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
 66 |         dropShadowColor: Color.gray)
 67 |
 68 |     public static let barChartStyleOrangeLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |         backgroundColor: Color.white,
 70 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:76: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
 74 |         dropShadowColor: Color.gray)
 75 |
 76 |     public static let barChartStyleOrangeDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         backgroundColor: Color.black,
 78 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:236:23: warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
234 | public class TestData{
235 |     static public var data:ChartData = ChartData(points: [37,72,51,22,39,47,66,85,50])
236 |     static public var values:ChartData = ChartData(values: [("2017 Q3",220),
    |                       |- warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'values' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
237 |                                                             ("2017 Q4",1550),
238 |                                                             ("2018 Q1",8180),
[15/20] Compiling SwiftUICharts Helpers.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:48: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 46 |
 47 | public struct GradientColors {
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
    |                       |- 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
    |                       |- note: annotate 'orange' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:49: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 47 | public struct GradientColors {
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
    |                       |- 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
    |                       |- note: annotate 'blue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:50: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
    |                       |- 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
    |                       |- note: annotate 'green' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:51: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
    |                       |- 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
    |                       |- note: annotate 'blu' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:52: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
    |                       |- 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
    |                       |- note: annotate 'bluPurpl' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:53: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
    |                       |- 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
    |                       |- note: annotate 'purple' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:54: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
    |                       |- 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
    |                       |- note: annotate 'prplPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
 56 |     public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:55: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
    |                       |- 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
    |                       |- note: annotate 'prplNeon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
 57 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:56: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
 56 |     public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
    |                       |- 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
    |                       |- note: annotate 'orngPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 | }
 58 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:60: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
 58 |
 59 | public struct Styles {
 60 |     public static let lineChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         backgroundColor: Color.white,
 62 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:68: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
 66 |         dropShadowColor: Color.gray)
 67 |
 68 |     public static let barChartStyleOrangeLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |         backgroundColor: Color.white,
 70 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:76: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
 74 |         dropShadowColor: Color.gray)
 75 |
 76 |     public static let barChartStyleOrangeDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         backgroundColor: Color.black,
 78 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:84: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
 82 |         dropShadowColor: Color.gray)
 83 |
 84 |     public static let barChartStyleNeonBlueLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleNeonBlueLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |         backgroundColor: Color.white,
 86 |         accentColor: Colors.GradientNeonBlue,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:92: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
 90 |         dropShadowColor: Color.gray)
 91 |
 92 |     public static let barChartStyleNeonBlueDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleNeonBlueDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |         backgroundColor: Color.black,
 94 |         accentColor: Colors.GradientNeonBlue,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:100: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
 98 |         dropShadowColor: Color.gray)
 99 |
100 |     public static let barChartMidnightGreenDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartMidnightGreenDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |         backgroundColor: Color(hexString: "#36534D"), //3B5147, 313D34
102 |         accentColor: Color(hexString: "#FFD603"),
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:108: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
106 |         dropShadowColor: Color.gray)
107 |
108 |     public static let barChartMidnightGreenLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartMidnightGreenLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |         backgroundColor: Color.white,
110 |         accentColor: Color(hexString: "#84A094"), //84A094 , 698378
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:116: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
114 |         dropShadowColor: Color.gray)
115 |
116 |     public static let pieChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'pieChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |         backgroundColor: Color.white,
118 |         accentColor: Colors.OrangeEnd,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:124: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
122 |         dropShadowColor: Color.gray)
123 |
124 |     public static let lineViewDarkMode = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineViewDarkMode' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |         backgroundColor: Color.black,
126 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:235:23: warning: static property 'data' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
233 |
234 | public class TestData{
235 |     static public var data:ChartData = ChartData(points: [37,72,51,22,39,47,66,85,50])
    |                       |- warning: static property 'data' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |     static public var values:ChartData = ChartData(values: [("2017 Q3",220),
237 |                                                             ("2017 Q4",1550),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:236:23: warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
234 | public class TestData{
235 |     static public var data:ChartData = ChartData(points: [37,72,51,22,39,47,66,85,50])
236 |     static public var values:ChartData = ChartData(values: [("2017 Q3",220),
    |                       |- warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'values' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
237 |                                                             ("2017 Q4",1550),
238 |                                                             ("2018 Q1",8180),
[16/20] Compiling SwiftUICharts IndicatorPoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:48: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 46 |
 47 | public struct GradientColors {
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
    |                       |- 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
    |                       |- note: annotate 'orange' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:49: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 47 | public struct GradientColors {
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
    |                       |- 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
    |                       |- note: annotate 'blue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:50: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
    |                       |- 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
    |                       |- note: annotate 'green' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:51: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
    |                       |- 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
    |                       |- note: annotate 'blu' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:52: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
    |                       |- 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
    |                       |- note: annotate 'bluPurpl' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:53: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
    |                       |- 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
    |                       |- note: annotate 'purple' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:54: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
    |                       |- 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
    |                       |- note: annotate 'prplPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
 56 |     public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:55: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
    |                       |- 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
    |                       |- note: annotate 'prplNeon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
 57 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:56: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
 56 |     public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
    |                       |- 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
    |                       |- note: annotate 'orngPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 | }
 58 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:60: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
 58 |
 59 | public struct Styles {
 60 |     public static let lineChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         backgroundColor: Color.white,
 62 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:68: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
 66 |         dropShadowColor: Color.gray)
 67 |
 68 |     public static let barChartStyleOrangeLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |         backgroundColor: Color.white,
 70 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:76: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
 74 |         dropShadowColor: Color.gray)
 75 |
 76 |     public static let barChartStyleOrangeDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         backgroundColor: Color.black,
 78 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:84: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
 82 |         dropShadowColor: Color.gray)
 83 |
 84 |     public static let barChartStyleNeonBlueLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleNeonBlueLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |         backgroundColor: Color.white,
 86 |         accentColor: Colors.GradientNeonBlue,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:92: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
 90 |         dropShadowColor: Color.gray)
 91 |
 92 |     public static let barChartStyleNeonBlueDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleNeonBlueDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |         backgroundColor: Color.black,
 94 |         accentColor: Colors.GradientNeonBlue,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:100: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
 98 |         dropShadowColor: Color.gray)
 99 |
100 |     public static let barChartMidnightGreenDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartMidnightGreenDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |         backgroundColor: Color(hexString: "#36534D"), //3B5147, 313D34
102 |         accentColor: Color(hexString: "#FFD603"),
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:108: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
106 |         dropShadowColor: Color.gray)
107 |
108 |     public static let barChartMidnightGreenLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartMidnightGreenLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |         backgroundColor: Color.white,
110 |         accentColor: Color(hexString: "#84A094"), //84A094 , 698378
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:116: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
114 |         dropShadowColor: Color.gray)
115 |
116 |     public static let pieChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'pieChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |         backgroundColor: Color.white,
118 |         accentColor: Colors.OrangeEnd,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:124: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
122 |         dropShadowColor: Color.gray)
123 |
124 |     public static let lineViewDarkMode = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineViewDarkMode' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |         backgroundColor: Color.black,
126 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:235:23: warning: static property 'data' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
233 |
234 | public class TestData{
235 |     static public var data:ChartData = ChartData(points: [37,72,51,22,39,47,66,85,50])
    |                       |- warning: static property 'data' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |     static public var values:ChartData = ChartData(values: [("2017 Q3",220),
237 |                                                             ("2017 Q4",1550),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:236:23: warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
234 | public class TestData{
235 |     static public var data:ChartData = ChartData(points: [37,72,51,22,39,47,66,85,50])
236 |     static public var values:ChartData = ChartData(values: [("2017 Q3",220),
    |                       |- warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'values' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
237 |                                                             ("2017 Q4",1550),
238 |                                                             ("2018 Q1",8180),
[17/20] Emitting module SwiftUICharts
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:68: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
 66 |         dropShadowColor: Color.gray)
 67 |
 68 |     public static let barChartStyleOrangeLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 69 |         backgroundColor: Color.white,
 70 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:48: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 46 |
 47 | public struct GradientColors {
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
    |                       |- 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
    |                       |- note: annotate 'orange' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:49: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 47 | public struct GradientColors {
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
    |                       |- 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
    |                       |- note: annotate 'blue' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:50: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 48 |     public static let orange = GradientColor(start: Colors.OrangeStart, end: Colors.OrangeEnd)
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
    |                       |- 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
    |                       |- note: annotate 'green' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:51: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 49 |     public static let blue = GradientColor(start: Colors.GradientPurple, end: Colors.GradientNeonBlue)
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
    |                       |- 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
    |                       |- note: annotate 'blu' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:52: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 50 |     public static let green = GradientColor(start: Color(hexString: "0BCDF7"), end: Color(hexString: "A2FEAE"))
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
    |                       |- 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
    |                       |- note: annotate 'bluPurpl' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:53: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 51 |     public static let blu = GradientColor(start: Color(hexString: "0591FF"), end: Color(hexString: "29D9FE"))
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
    |                       |- 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
    |                       |- note: annotate 'purple' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:54: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 52 |     public static let bluPurpl = GradientColor(start: Color(hexString: "4ABBFB"), end: Color(hexString: "8C00FF"))
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
    |                       |- 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
    |                       |- note: annotate 'prplPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
 56 |     public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:55: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 53 |     public static let purple = GradientColor(start: Color(hexString: "741DF4"), end: Color(hexString: "C501B0"))
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
    |                       |- 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
    |                       |- note: annotate 'prplNeon' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 56 |     public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
 57 | }
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:56: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
 31 | }
 32 |
 33 | public struct GradientColor {
    |               `- note: consider making struct 'GradientColor' conform to the 'Sendable' protocol
 34 |     public let start: Color
 35 |     public let end: Color
    :
 54 |     public static let prplPink = GradientColor(start: Color(hexString: "BC05AF"), end: Color(hexString: "FF1378"))
 55 |     public static let prplNeon = GradientColor(start: Color(hexString: "FE019A"), end: Color(hexString: "FE0BF4"))
 56 |     public static let orngPink = GradientColor(start: Color(hexString: "FF8E2D"), end: Color(hexString: "FF4E7A"))
    |                       |- 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
    |                       |- note: annotate 'orngPink' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 | }
 58 |
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:60: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
 58 |
 59 | public struct Styles {
 60 |     public static let lineChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 61 |         backgroundColor: Color.white,
 62 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:76: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
 74 |         dropShadowColor: Color.gray)
 75 |
 76 |     public static let barChartStyleOrangeDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleOrangeDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 77 |         backgroundColor: Color.black,
 78 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:84: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
 82 |         dropShadowColor: Color.gray)
 83 |
 84 |     public static let barChartStyleNeonBlueLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleNeonBlueLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 85 |         backgroundColor: Color.white,
 86 |         accentColor: Colors.GradientNeonBlue,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:92: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
 90 |         dropShadowColor: Color.gray)
 91 |
 92 |     public static let barChartStyleNeonBlueDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartStyleNeonBlueDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 93 |         backgroundColor: Color.black,
 94 |         accentColor: Colors.GradientNeonBlue,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:100: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
 98 |         dropShadowColor: Color.gray)
 99 |
100 |     public static let barChartMidnightGreenDark = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartMidnightGreenDark' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |         backgroundColor: Color(hexString: "#36534D"), //3B5147, 313D34
102 |         accentColor: Color(hexString: "#FFD603"),
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:108: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
106 |         dropShadowColor: Color.gray)
107 |
108 |     public static let barChartMidnightGreenLight = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'barChartMidnightGreenLight' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
109 |         backgroundColor: Color.white,
110 |         accentColor: Color(hexString: "#84A094"), //84A094 , 698378
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:116: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
114 |         dropShadowColor: Color.gray)
115 |
116 |     public static let pieChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'pieChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |         backgroundColor: Color.white,
118 |         accentColor: Colors.OrangeEnd,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:124: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
122 |         dropShadowColor: Color.gray)
123 |
124 |     public static let lineViewDarkMode = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'lineViewDarkMode' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
125 |         backgroundColor: Color.black,
126 |         accentColor: Colors.OrangeStart,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:235:23: warning: static property 'data' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
233 |
234 | public class TestData{
235 |     static public var data:ChartData = ChartData(points: [37,72,51,22,39,47,66,85,50])
    |                       |- warning: static property 'data' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'data' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'data' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
236 |     static public var values:ChartData = ChartData(values: [("2017 Q3",220),
237 |                                                             ("2017 Q4",1550),
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:236:23: warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
234 | public class TestData{
235 |     static public var data:ChartData = ChartData(points: [37,72,51,22,39,47,66,85,50])
236 |     static public var values:ChartData = ChartData(values: [("2017 Q3",220),
    |                       |- warning: static property 'values' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'values' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'values' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
237 |                                                             ("2017 Q4",1550),
238 |                                                             ("2018 Q1",8180),
[18/20] Compiling SwiftUICharts BarChartCell.swift
[19/20] Compiling SwiftUICharts BarChartRow.swift
[20/20] Compiling SwiftUICharts PieChartView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/Helpers.swift:116: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
114 |         dropShadowColor: Color.gray)
115 |
116 |     public static let pieChartStyleOne = ChartStyle(
    |                       |- 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
    |                       |- note: annotate 'pieChartStyleOne' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |         backgroundColor: Color.white,
118 |         accentColor: Colors.OrangeEnd,
    :
147 | }
148 |
149 | public class ChartStyle {
    |              `- note: class 'ChartStyle' does not conform to the 'Sendable' protocol
150 |     public var backgroundColor: Color
151 |     public var accentColor: Color
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.