The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of SwiftUICharts, reference 1.5.5 (9115a9), with Swift 6.0 for macOS (SPM) on 1 Nov 2024 14:31:12 UTC.

Swift 6 data race errors: 20

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/apppear/chartview.git
Reference: 1.5.5
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/apppear/chartview
 * tag               1.5.5      -> FETCH_HEAD
HEAD is now at 9115a99 Add legend format specifier option in LineView (#186)
Cloned https://github.com/apppear/chartview.git
Revision (git rev-parse @):
9115a992c91fa19cbb4f2241084240d38654a1fc
SUCCESS checkout https://github.com/apppear/chartview.git at 1.5.5
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "chartview",
      "name": "SwiftUICharts",
      "url": "https://github.com/apppear/chartview.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/chartview",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/apppear/chartview.git
[1/3027] Fetching chartview
Fetched https://github.com/apppear/chartview.git from cache (1.33s)
Creating working copy for https://github.com/apppear/chartview.git
Working copy of https://github.com/apppear/chartview.git resolved at 1.5.5 (9115a99)
warning: '.resolve-product-dependencies': dependency 'chartview' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/apppear/chartview.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun 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--7754E27361AE5C74.txt
[3/19] Compiling SwiftUICharts PieChartHelpers.swift
[4/20] Compiling SwiftUICharts PieChartRow.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUICharts/PieChart/PieChartRow.swift:44:41: warning: non-constant range: argument must be an integer literal
42 |         GeometryReader { geometry in
43 |             ZStack{
44 |                 ForEach(0..<self.slices.count){ i in
   |                                         `- warning: non-constant range: argument must be an integer literal
45 |                     PieChartCell(rect: geometry.frame(in: .local), startDeg: self.slices[i].startDeg, endDeg: self.slices[i].endDeg, index: i, backgroundColor: self.backgroundColor,accentColor: self.accentColor)
46 |                         .scaleEffect(self.currentTouchedIndex == i ? 1.1 : 1)
[5/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/LineChart/MultiLineChartView.swift:113:47: warning: non-constant range: argument must be an integer literal
111 |                 GeometryReader{ geometry in
112 |                     ZStack{
113 |                         ForEach(0..<self.data.count) { i in
    |                                               `- warning: non-constant range: argument must be an integer literal
114 |                             Line(data: self.data[i],
115 |                                  frame: .constant(geometry.frame(in: .local)),
/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"))
[6/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/LineChart/MultiLineChartView.swift:113:47: warning: non-constant range: argument must be an integer literal
111 |                 GeometryReader{ geometry in
112 |                     ZStack{
113 |                         ForEach(0..<self.data.count) { i in
    |                                               `- warning: non-constant range: argument must be an integer literal
114 |                             Line(data: self.data[i],
115 |                                  frame: .constant(geometry.frame(in: .local)),
/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"))
[7/20] Compiling SwiftUICharts Path+QuadCurve.swift
[8/20] Compiling SwiftUICharts PieChartCell.swift
[9/20] Compiling SwiftUICharts Legend.swift
[10/20] Compiling SwiftUICharts Line.swift
[11/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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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),
[12/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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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),
[13/20] Compiling SwiftUICharts BarChartCell.swift
[14/20] Compiling SwiftUICharts BarChartRow.swift
[15/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 nonisolated 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 nonisolated 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 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 nonisolated 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 nonisolated 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] 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
[18/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
[19/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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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),
[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 complete! (27.93s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftUICharts",
  "name" : "SwiftUICharts",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "macos",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftUICharts",
      "targets" : [
        "SwiftUICharts"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftUIChartsTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftUIChartsTests",
      "path" : "Tests/SwiftUIChartsTests",
      "sources" : [
        "SwiftUIChartsTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "SwiftUICharts"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftUICharts",
      "module_type" : "SwiftTarget",
      "name" : "SwiftUICharts",
      "path" : "Sources/SwiftUICharts",
      "product_memberships" : [
        "SwiftUICharts"
      ],
      "sources" : [
        "BarChart/BarChartCell.swift",
        "BarChart/BarChartRow.swift",
        "BarChart/BarChartView.swift",
        "BarChart/LabelView.swift",
        "Helpers.swift",
        "LineChart/IndicatorPoint.swift",
        "LineChart/Legend.swift",
        "LineChart/Line.swift",
        "LineChart/LineChartView.swift",
        "LineChart/LineView.swift",
        "LineChart/MagnifierRect.swift",
        "LineChart/MultiLineChartView.swift",
        "LineChart/Path+QuadCurve.swift",
        "PieChart/PieChartCell.swift",
        "PieChart/PieChartHelpers.swift",
        "PieChart/PieChartRow.swift",
        "PieChart/PieChartView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.