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

The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of FinanceKit with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 2

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/christiankm/FinanceKit.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/christiankm/FinanceKit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 159de2e Add @available
Cloned https://github.com/christiankm/FinanceKit.git
Revision (git rev-parse @):
159de2e9a7ec70719a5161415a5566fcc3a0f029
SUCCESS checkout https://github.com/christiankm/FinanceKit.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/christiankm/FinanceKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/37] Emitting module FinanceKit
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Change.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | /// A Change keeps track of the numerical and percent changes between the cost and current price.
10 | public struct Change: Codable, Equatable, Hashable {
   |               `- note: consider making struct 'Change' conform to the 'Sendable' protocol
11 |
12 |     public static let zero = Change(cost: 0, currentValue: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     public let amount: Amount
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[4/40] Compiling FinanceKit Decimal+Rounded.swift
[5/40] Compiling FinanceKit Dividend.swift
[6/40] Compiling FinanceKit Exchange.swift
[7/40] Compiling FinanceKit ExchangeRate.swift
[8/40] Compiling FinanceKit PerformanceCalculator.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Change.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | /// A Change keeps track of the numerical and percent changes between the cost and current price.
10 | public struct Change: Codable, Equatable, Hashable {
   |               `- note: consider making struct 'Change' conform to the 'Sendable' protocol
11 |
12 |     public static let zero = Change(cost: 0, currentValue: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     public let amount: Amount
[9/40] Compiling FinanceKit Portfolio.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Change.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | /// A Change keeps track of the numerical and percent changes between the cost and current price.
10 | public struct Change: Codable, Equatable, Hashable {
   |               `- note: consider making struct 'Change' conform to the 'Sendable' protocol
11 |
12 |     public static let zero = Change(cost: 0, currentValue: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     public let amount: Amount
[10/40] Compiling FinanceKit Price.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Change.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | /// A Change keeps track of the numerical and percent changes between the cost and current price.
10 | public struct Change: Codable, Equatable, Hashable {
   |               `- note: consider making struct 'Change' conform to the 'Sendable' protocol
11 |
12 |     public static let zero = Change(cost: 0, currentValue: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     public let amount: Amount
[11/40] Compiling FinanceKit Change.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Change.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | /// A Change keeps track of the numerical and percent changes between the cost and current price.
10 | public struct Change: Codable, Equatable, Hashable {
   |               `- note: consider making struct 'Change' conform to the 'Sendable' protocol
11 |
12 |     public static let zero = Change(cost: 0, currentValue: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     public let amount: Amount
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[12/40] Compiling FinanceKit ChangePeriod.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Change.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | /// A Change keeps track of the numerical and percent changes between the cost and current price.
10 | public struct Change: Codable, Equatable, Hashable {
   |               `- note: consider making struct 'Change' conform to the 'Sendable' protocol
11 |
12 |     public static let zero = Change(cost: 0, currentValue: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     public let amount: Amount
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[13/40] Compiling FinanceKit Company.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Change.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | /// A Change keeps track of the numerical and percent changes between the cost and current price.
10 | public struct Change: Codable, Equatable, Hashable {
   |               `- note: consider making struct 'Change' conform to the 'Sendable' protocol
11 |
12 |     public static let zero = Change(cost: 0, currentValue: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     public let amount: Amount
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[14/40] Compiling FinanceKit ComparableToZero.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Change.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
 8 |
 9 | /// A Change keeps track of the numerical and percent changes between the cost and current price.
10 | public struct Change: Codable, Equatable, Hashable {
   |               `- note: consider making struct 'Change' conform to the 'Sendable' protocol
11 |
12 |     public static let zero = Change(cost: 0, currentValue: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Change' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     public let amount: Amount
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[15/40] Compiling FinanceKit CurrencyPair.swift
[16/40] Compiling FinanceKit Date+Comparison.swift
[17/40] Compiling FinanceKit Date+Ranges.swift
[18/40] Compiling FinanceKit Decimal+DoubleValue.swift
[19/40] Compiling FinanceKit Amount.swift
[20/40] Compiling FinanceKit Array+Holding.swift
[21/40] Compiling FinanceKit Asset.swift
[22/40] Compiling FinanceKit AssetAllocation.swift
[23/40] Compiling FinanceKit NumberFormatter+Currency.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[24/40] Compiling FinanceKit Numerics+Total+Average.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[25/40] Compiling FinanceKit Percentage.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[26/40] Compiling FinanceKit PercentageFormatter.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[27/40] Compiling FinanceKit Stock.swift
[28/40] Compiling FinanceKit Symbol.swift
[29/40] Compiling FinanceKit Transaction.swift
[30/40] Compiling FinanceKit PriceTarget.swift
[31/40] Compiling FinanceKit Quantity.swift
[32/40] Compiling FinanceKit Split.swift
[33/40] Compiling FinanceKit Currency.swift
[34/40] Compiling FinanceKit CurrencyCode.swift
[35/40] Compiling FinanceKit CurrencyConverter.swift
[36/40] Compiling FinanceKit CurrencyFormatter.swift
[37/40] Compiling FinanceKit HistoricalPrice.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[38/40] Compiling FinanceKit Holding.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[39/40] Compiling FinanceKit Money.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
[40/40] Compiling FinanceKit Number+LegacyType.swift
/Users/admin/builder/spi-builder-workspace/Sources/FinanceKit/Percentage.swift:12:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
 7 | import Foundation
 8 |
 9 | public struct Percentage: Equatable, Hashable, Codable {
   |               `- note: consider making struct 'Percentage' conform to the 'Sendable' protocol
10 |
11 |     /// Return a percentage of zero.
12 |     public static let zero = Percentage(decimal: 0)
   |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Percentage' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'zero' 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
13 |
14 |     // The percentage in decimal.
Build complete! (24.83s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "FinanceKit",
  "name" : "FinanceKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "FinanceKit",
      "targets" : [
        "FinanceKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "FinanceKitTests",
      "module_type" : "SwiftTarget",
      "name" : "FinanceKitTests",
      "path" : "Tests/FinanceKitTests",
      "sources" : [
        "AssetAllocationTests.swift",
        "ChangeTests.swift",
        "CompanyTests.swift",
        "CurrencyConverterTests.swift",
        "CurrencyFormatterTests.swift",
        "CurrencyPairTests.swift",
        "CurrencyTests.swift",
        "DateComparisonTests.swift",
        "DecimalDoubleValueTests.swift",
        "DividendTests.swift",
        "ExchangeTests.swift",
        "HoldingTests.swift",
        "MoneyTests.swift",
        "NumberFormatterCurrencyTests.swift",
        "NumberLegacyTypeTests.swift",
        "NumericsTotalAverageTests.swift",
        "PercentageFormatterTests.swift",
        "PercentageTests.swift",
        "PerformanceCalculatorTests.swift",
        "PortfolioTests.swift",
        "PriceTargetTests.swift",
        "QuantityTests.swift",
        "SplitTests.swift",
        "StockTests.swift",
        "SymbolTests.swift",
        "TestData.swift",
        "TransactionTests.swift"
      ],
      "target_dependencies" : [
        "FinanceKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "FinanceKit",
      "module_type" : "SwiftTarget",
      "name" : "FinanceKit",
      "path" : "Sources/FinanceKit",
      "product_memberships" : [
        "FinanceKit"
      ],
      "sources" : [
        "Amount.swift",
        "Array+Holding.swift",
        "Asset.swift",
        "AssetAllocation.swift",
        "Change.swift",
        "ChangePeriod.swift",
        "Company.swift",
        "ComparableToZero.swift",
        "Currency.swift",
        "CurrencyCode.swift",
        "CurrencyConverter.swift",
        "CurrencyFormatter.swift",
        "CurrencyPair.swift",
        "Date+Comparison.swift",
        "Date+Ranges.swift",
        "Decimal+DoubleValue.swift",
        "Decimal+Rounded.swift",
        "Dividend.swift",
        "Exchange.swift",
        "ExchangeRate.swift",
        "HistoricalPrice.swift",
        "Holding.swift",
        "Money.swift",
        "Number+LegacyType.swift",
        "NumberFormatter+Currency.swift",
        "Numerics+Total+Average.swift",
        "Percentage.swift",
        "PercentageFormatter.swift",
        "PerformanceCalculator.swift",
        "Portfolio.swift",
        "Price.swift",
        "PriceTarget.swift",
        "Quantity.swift",
        "Split.swift",
        "Stock.swift",
        "Symbol.swift",
        "Transaction.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.