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 MiseEnPlace, reference 5.3.0 (24aa8c), with Swift 6.0 for macOS (SPM) on 8 Nov 2024 18:42:52 UTC.

Swift 6 data race errors: 14

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.57.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/richardpiazza/MiseEnPlace.git
Reference: 5.3.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/richardpiazza/MiseEnPlace
 * tag               5.3.0      -> FETCH_HEAD
HEAD is now at 24aa8cd Media Manager (#8)
Cloned https://github.com/richardpiazza/MiseEnPlace.git
Revision (git rev-parse @):
24aa8cd18af14a1c698cd63a7422c9463ec0be12
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/richardpiazza/MiseEnPlace.git at 5.3.0
========================================
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": "miseenplace",
      "name": "MiseEnPlace",
      "url": "https://github.com/richardpiazza/MiseEnPlace.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/MiseEnPlace",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/richardpiazza/MiseEnPlace.git
[1/1219] Fetching miseenplace
Fetched https://github.com/richardpiazza/MiseEnPlace.git from cache (1.00s)
Creating working copy for https://github.com/richardpiazza/MiseEnPlace.git
Working copy of https://github.com/richardpiazza/MiseEnPlace.git resolved at 5.3.0 (24aa8cd)
warning: '.resolve-product-dependencies': dependency 'miseenplace' 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/richardpiazza/MiseEnPlace.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/29] Compiling MiseEnPlace MeasurementMethod.swift
[4/29] Compiling MiseEnPlace MeasurementSystem.swift
[5/29] Compiling MiseEnPlace MeasurementSystemMethod.swift
[6/31] Compiling MiseEnPlace Quantifiable.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:39:16: warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 37 |     /// A representation usable for when a `Quantification` must be expressed, but the intended outcome
 38 |     /// is to express the implicit lack-of-quantification.
 39 |     static let notQuantified: Quantification = .init(amount: 0.0, unit: .noUnit)
    |                |- warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'notQuantified' 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
 40 |
 41 |     /// A representation when no-specific amount can be defined.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:42:16: warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 40 |
 41 |     /// A representation when no-specific amount can be defined.
 42 |     static let asNeeded: Quantification = .init(amount: -1.0, unit: .noUnit)
    |                |- warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'asNeeded' 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
 43 |
 44 |     /// A measurement typical of a 'small' portion size
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:68:23: warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
66 |
67 |     /// Changes the default behavior of the `Quantification` translation functions.
68 |     public static var abbreviateTranslations: Bool = false
   |                       |- warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'abbreviateTranslations' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'abbreviateTranslations' 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 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:84:23: warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
82 |
83 |     /// The method by which cross `MeasurementSystemMethod` conversions are performed. The default is `.methodThanSystem`.
84 |     public static var conversionOrder: ConversionOrder = .methodThanSystem
   |                       |- warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'conversionOrder' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'conversionOrder' 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 | }
86 |
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:7:23: warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
    |                       |- warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToOne' 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
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:9:23: warning: static property 'twoToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
    |                       |- warning: static property 'twoToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'twoToOne' 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
 10 |     /// A common/default ratio where weight is twice the measurement in volume
 11 |     public static let oneToTwo: Ratio = Ratio(volume: 1.0, weight: 2.0)
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:11:23: warning: static property 'oneToTwo' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
    :
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
 10 |     /// A common/default ratio where weight is twice the measurement in volume
 11 |     public static let oneToTwo: Ratio = Ratio(volume: 1.0, weight: 2.0)
    |                       |- warning: static property 'oneToTwo' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToTwo' 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
 12 |
 13 |     public var volume: Double
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:116:17: warning: var 'significantDigitFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
114 | }
115 |
116 | fileprivate var significantDigitFormatter: NumberFormatter = {
    |                 |- warning: var 'significantDigitFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: convert 'significantDigitFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |                 |- note: annotate 'significantDigitFormatter' 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 |     let formatter = NumberFormatter()
118 |     formatter.usesSignificantDigits = true
[7/31] Compiling MiseEnPlace Quantification.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:39:16: warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 37 |     /// A representation usable for when a `Quantification` must be expressed, but the intended outcome
 38 |     /// is to express the implicit lack-of-quantification.
 39 |     static let notQuantified: Quantification = .init(amount: 0.0, unit: .noUnit)
    |                |- warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'notQuantified' 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
 40 |
 41 |     /// A representation when no-specific amount can be defined.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:42:16: warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 40 |
 41 |     /// A representation when no-specific amount can be defined.
 42 |     static let asNeeded: Quantification = .init(amount: -1.0, unit: .noUnit)
    |                |- warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'asNeeded' 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
 43 |
 44 |     /// A measurement typical of a 'small' portion size
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:68:23: warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
66 |
67 |     /// Changes the default behavior of the `Quantification` translation functions.
68 |     public static var abbreviateTranslations: Bool = false
   |                       |- warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'abbreviateTranslations' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'abbreviateTranslations' 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 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:84:23: warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
82 |
83 |     /// The method by which cross `MeasurementSystemMethod` conversions are performed. The default is `.methodThanSystem`.
84 |     public static var conversionOrder: ConversionOrder = .methodThanSystem
   |                       |- warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'conversionOrder' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'conversionOrder' 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 | }
86 |
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:7:23: warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
    |                       |- warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToOne' 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
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:9:23: warning: static property 'twoToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
    |                       |- warning: static property 'twoToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'twoToOne' 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
 10 |     /// A common/default ratio where weight is twice the measurement in volume
 11 |     public static let oneToTwo: Ratio = Ratio(volume: 1.0, weight: 2.0)
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:11:23: warning: static property 'oneToTwo' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
    :
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
 10 |     /// A common/default ratio where weight is twice the measurement in volume
 11 |     public static let oneToTwo: Ratio = Ratio(volume: 1.0, weight: 2.0)
    |                       |- warning: static property 'oneToTwo' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToTwo' 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
 12 |
 13 |     public var volume: Double
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:116:17: warning: var 'significantDigitFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
114 | }
115 |
116 | fileprivate var significantDigitFormatter: NumberFormatter = {
    |                 |- warning: var 'significantDigitFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: convert 'significantDigitFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |                 |- note: annotate 'significantDigitFormatter' 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 |     let formatter = NumberFormatter()
118 |     formatter.usesSignificantDigits = true
[8/31] Compiling MiseEnPlace Ratio.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:39:16: warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 37 |     /// A representation usable for when a `Quantification` must be expressed, but the intended outcome
 38 |     /// is to express the implicit lack-of-quantification.
 39 |     static let notQuantified: Quantification = .init(amount: 0.0, unit: .noUnit)
    |                |- warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'notQuantified' 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
 40 |
 41 |     /// A representation when no-specific amount can be defined.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:42:16: warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 40 |
 41 |     /// A representation when no-specific amount can be defined.
 42 |     static let asNeeded: Quantification = .init(amount: -1.0, unit: .noUnit)
    |                |- warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'asNeeded' 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
 43 |
 44 |     /// A measurement typical of a 'small' portion size
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:68:23: warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
66 |
67 |     /// Changes the default behavior of the `Quantification` translation functions.
68 |     public static var abbreviateTranslations: Bool = false
   |                       |- warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'abbreviateTranslations' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'abbreviateTranslations' 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 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:84:23: warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
82 |
83 |     /// The method by which cross `MeasurementSystemMethod` conversions are performed. The default is `.methodThanSystem`.
84 |     public static var conversionOrder: ConversionOrder = .methodThanSystem
   |                       |- warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'conversionOrder' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'conversionOrder' 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 | }
86 |
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:7:23: warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
    |                       |- warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToOne' 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
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:9:23: warning: static property 'twoToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
    |                       |- warning: static property 'twoToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'twoToOne' 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
 10 |     /// A common/default ratio where weight is twice the measurement in volume
 11 |     public static let oneToTwo: Ratio = Ratio(volume: 1.0, weight: 2.0)
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:11:23: warning: static property 'oneToTwo' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
    :
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
 10 |     /// A common/default ratio where weight is twice the measurement in volume
 11 |     public static let oneToTwo: Ratio = Ratio(volume: 1.0, weight: 2.0)
    |                       |- warning: static property 'oneToTwo' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToTwo' 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
 12 |
 13 |     public var volume: Double
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:116:17: warning: var 'significantDigitFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
114 | }
115 |
116 | fileprivate var significantDigitFormatter: NumberFormatter = {
    |                 |- warning: var 'significantDigitFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: convert 'significantDigitFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |                 |- note: annotate 'significantDigitFormatter' 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 |     let formatter = NumberFormatter()
118 |     formatter.usesSignificantDigits = true
[9/31] Compiling MiseEnPlace Multimedia.swift
[10/31] Compiling MiseEnPlace ProcedureElement.swift
[11/31] Compiling MiseEnPlace Proportioned.swift
[12/31] Compiling MiseEnPlace Ingredient.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Intergral.swift:47:23: warning: static property 'singleDigits' is not concurrency-safe because non-'Sendable' type '[Integral]' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Enumeration of commonly used integrals in cooking.
 4 | public enum Integral: Int, CaseIterable, CustomStringConvertible {
   |             `- note: consider making enum 'Integral' conform to the 'Sendable' protocol
 5 |     case zero = 0
 6 |     case one = 1
   :
45 |     case nineHundred = 900
46 |
47 |     public static let singleDigits: [Integral] = [.zero, .one, .two, .three, .four, .five, .six, .seven, .eight, .nine]
   |                       |- warning: static property 'singleDigits' is not concurrency-safe because non-'Sendable' type '[Integral]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'singleDigits' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     public var description: String {
[13/31] Compiling MiseEnPlace Intergral.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Intergral.swift:47:23: warning: static property 'singleDigits' is not concurrency-safe because non-'Sendable' type '[Integral]' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Enumeration of commonly used integrals in cooking.
 4 | public enum Integral: Int, CaseIterable, CustomStringConvertible {
   |             `- note: consider making enum 'Integral' conform to the 'Sendable' protocol
 5 |     case zero = 0
 6 |     case one = 1
   :
45 |     case nineHundred = 900
46 |
47 |     public static let singleDigits: [Integral] = [.zero, .one, .two, .three, .four, .five, .six, .seven, .eight, .nine]
   |                       |- warning: static property 'singleDigits' is not concurrency-safe because non-'Sendable' type '[Integral]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'singleDigits' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     public var description: String {
[14/31] Compiling MiseEnPlace Measured.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Intergral.swift:47:23: warning: static property 'singleDigits' is not concurrency-safe because non-'Sendable' type '[Integral]' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Enumeration of commonly used integrals in cooking.
 4 | public enum Integral: Int, CaseIterable, CustomStringConvertible {
   |             `- note: consider making enum 'Integral' conform to the 'Sendable' protocol
 5 |     case zero = 0
 6 |     case one = 1
   :
45 |     case nineHundred = 900
46 |
47 |     public static let singleDigits: [Integral] = [.zero, .one, .two, .three, .four, .five, .six, .seven, .eight, .nine]
   |                       |- warning: static property 'singleDigits' is not concurrency-safe because non-'Sendable' type '[Integral]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'singleDigits' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     public var description: String {
[15/31] Compiling MiseEnPlace Recipe.swift
[16/31] Compiling MiseEnPlace Sequenced.swift
[17/31] Compiling MiseEnPlace AnyFormulaElement.swift
[18/31] Compiling MiseEnPlace AnyIngredient.swift
[19/31] Compiling MiseEnPlace AnyProcedureElement.swift
[20/31] Compiling MiseEnPlace Double+MiseEnPlace.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:39:16: warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 37 |     /// A representation usable for when a `Quantification` must be expressed, but the intended outcome
 38 |     /// is to express the implicit lack-of-quantification.
 39 |     static let notQuantified: Quantification = .init(amount: 0.0, unit: .noUnit)
    |                |- warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'notQuantified' 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
 40 |
 41 |     /// A representation when no-specific amount can be defined.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:42:16: warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 40 |
 41 |     /// A representation when no-specific amount can be defined.
 42 |     static let asNeeded: Quantification = .init(amount: -1.0, unit: .noUnit)
    |                |- warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'asNeeded' 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
 43 |
 44 |     /// A measurement typical of a 'small' portion size
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:7:23: warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
    |                       |- warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToOne' 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
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
[21/31] Compiling MiseEnPlace FormulaElement.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:39:16: warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 37 |     /// A representation usable for when a `Quantification` must be expressed, but the intended outcome
 38 |     /// is to express the implicit lack-of-quantification.
 39 |     static let notQuantified: Quantification = .init(amount: 0.0, unit: .noUnit)
    |                |- warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'notQuantified' 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
 40 |
 41 |     /// A representation when no-specific amount can be defined.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:42:16: warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 40 |
 41 |     /// A representation when no-specific amount can be defined.
 42 |     static let asNeeded: Quantification = .init(amount: -1.0, unit: .noUnit)
    |                |- warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'asNeeded' 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
 43 |
 44 |     /// A measurement typical of a 'small' portion size
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:7:23: warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
    |                       |- warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToOne' 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
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
[22/31] Compiling MiseEnPlace Fraction.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:39:16: warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 37 |     /// A representation usable for when a `Quantification` must be expressed, but the intended outcome
 38 |     /// is to express the implicit lack-of-quantification.
 39 |     static let notQuantified: Quantification = .init(amount: 0.0, unit: .noUnit)
    |                |- warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'notQuantified' 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
 40 |
 41 |     /// A representation when no-specific amount can be defined.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:42:16: warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 40 |
 41 |     /// A representation when no-specific amount can be defined.
 42 |     static let asNeeded: Quantification = .init(amount: -1.0, unit: .noUnit)
    |                |- warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'asNeeded' 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
 43 |
 44 |     /// A measurement typical of a 'small' portion size
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:7:23: warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
    |                       |- warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToOne' 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
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
[23/31] Compiling MiseEnPlace MeasurementUnit.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MediaManager.swift:5:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MediaManager' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaManager {
    |               `- note: consider making struct 'MediaManager' conform to the 'Sendable' protocol
  4 |
  5 |     public static let shared: MediaManager = MediaManager()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MediaManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' 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
  6 |
  7 |     let fileManager: FileManager
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MiseEnPlaceError.swift:9:10: warning: associated value 'measurementAmount(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
 7 |     case nanZeroConversion
 8 |     case unhandledConversion
 9 |     case measurementAmount(method: MeasurementMethod?)
   |          `- warning: associated value 'measurementAmount(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
10 |     case measurementUnit(method: MeasurementMethod?)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MeasurementMethod.swift:6:13: note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 4 | ///
 5 | /// In the case of the **MiseEnPlace** framework, this means _Volume_ and _Mass_.
 6 | public enum MeasurementMethod: Int {
   |             `- note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 7 |     case quantity = 0
 8 |     case volume = 1
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MiseEnPlaceError.swift:10:10: warning: associated value 'measurementUnit(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
 8 |     case unhandledConversion
 9 |     case measurementAmount(method: MeasurementMethod?)
10 |     case measurementUnit(method: MeasurementMethod?)
   |          `- warning: associated value 'measurementUnit(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
11 |
12 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MeasurementMethod.swift:6:13: note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 4 | ///
 5 | /// In the case of the **MiseEnPlace** framework, this means _Volume_ and _Mass_.
 6 | public enum MeasurementMethod: Int {
   |             `- note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 7 |     case quantity = 0
 8 |     case volume = 1
[24/31] Compiling MiseEnPlace MediaManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MediaManager.swift:5:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MediaManager' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaManager {
    |               `- note: consider making struct 'MediaManager' conform to the 'Sendable' protocol
  4 |
  5 |     public static let shared: MediaManager = MediaManager()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MediaManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' 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
  6 |
  7 |     let fileManager: FileManager
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MiseEnPlaceError.swift:9:10: warning: associated value 'measurementAmount(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
 7 |     case nanZeroConversion
 8 |     case unhandledConversion
 9 |     case measurementAmount(method: MeasurementMethod?)
   |          `- warning: associated value 'measurementAmount(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
10 |     case measurementUnit(method: MeasurementMethod?)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MeasurementMethod.swift:6:13: note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 4 | ///
 5 | /// In the case of the **MiseEnPlace** framework, this means _Volume_ and _Mass_.
 6 | public enum MeasurementMethod: Int {
   |             `- note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 7 |     case quantity = 0
 8 |     case volume = 1
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MiseEnPlaceError.swift:10:10: warning: associated value 'measurementUnit(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
 8 |     case unhandledConversion
 9 |     case measurementAmount(method: MeasurementMethod?)
10 |     case measurementUnit(method: MeasurementMethod?)
   |          `- warning: associated value 'measurementUnit(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
11 |
12 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MeasurementMethod.swift:6:13: note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 4 | ///
 5 | /// In the case of the **MiseEnPlace** framework, this means _Volume_ and _Mass_.
 6 | public enum MeasurementMethod: Int {
   |             `- note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 7 |     case quantity = 0
 8 |     case volume = 1
[25/31] Compiling MiseEnPlace MiseEnPlaceError.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MediaManager.swift:5:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MediaManager' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaManager {
    |               `- note: consider making struct 'MediaManager' conform to the 'Sendable' protocol
  4 |
  5 |     public static let shared: MediaManager = MediaManager()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MediaManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' 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
  6 |
  7 |     let fileManager: FileManager
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MiseEnPlaceError.swift:9:10: warning: associated value 'measurementAmount(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
 7 |     case nanZeroConversion
 8 |     case unhandledConversion
 9 |     case measurementAmount(method: MeasurementMethod?)
   |          `- warning: associated value 'measurementAmount(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
10 |     case measurementUnit(method: MeasurementMethod?)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MeasurementMethod.swift:6:13: note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 4 | ///
 5 | /// In the case of the **MiseEnPlace** framework, this means _Volume_ and _Mass_.
 6 | public enum MeasurementMethod: Int {
   |             `- note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 7 |     case quantity = 0
 8 |     case volume = 1
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MiseEnPlaceError.swift:10:10: warning: associated value 'measurementUnit(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
 8 |     case unhandledConversion
 9 |     case measurementAmount(method: MeasurementMethod?)
10 |     case measurementUnit(method: MeasurementMethod?)
   |          `- warning: associated value 'measurementUnit(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
11 |
12 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MeasurementMethod.swift:6:13: note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 4 | ///
 5 | /// In the case of the **MiseEnPlace** framework, this means _Volume_ and _Mass_.
 6 | public enum MeasurementMethod: Int {
   |             `- note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 7 |     case quantity = 0
 8 |     case volume = 1
[26/31] Compiling MiseEnPlace AnyRecipe.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:48:23: warning: static property 'locale' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
46 |     }
47 |
48 |     public static var locale: Locale = Locale.current {
   |                       |- warning: static property 'locale' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'locale' 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 |         didSet {
50 |             singleDecimalFormatter.locale = locale
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:68:23: warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
66 |
67 |     /// Changes the default behavior of the `Quantification` translation functions.
68 |     public static var abbreviateTranslations: Bool = false
   |                       |- warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'abbreviateTranslations' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'abbreviateTranslations' 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 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:71:23: warning: static property 'useLooseConversions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
69 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
71 |     public static var useLooseConversions: Bool = false
   |                       |- warning: static property 'useLooseConversions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'useLooseConversions' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'useLooseConversions' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 |     /// The number of **milliliters** to use for converting to/from **fluid ounces**.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:84:23: warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
82 |
83 |     /// The method by which cross `MeasurementSystemMethod` conversions are performed. The default is `.methodThanSystem`.
84 |     public static var conversionOrder: ConversionOrder = .methodThanSystem
   |                       |- warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'conversionOrder' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'conversionOrder' 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 | }
86 |
[27/31] Compiling MiseEnPlace Configuration.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:48:23: warning: static property 'locale' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
46 |     }
47 |
48 |     public static var locale: Locale = Locale.current {
   |                       |- warning: static property 'locale' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'locale' 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 |         didSet {
50 |             singleDecimalFormatter.locale = locale
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:68:23: warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
66 |
67 |     /// Changes the default behavior of the `Quantification` translation functions.
68 |     public static var abbreviateTranslations: Bool = false
   |                       |- warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'abbreviateTranslations' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'abbreviateTranslations' 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 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:71:23: warning: static property 'useLooseConversions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
69 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
71 |     public static var useLooseConversions: Bool = false
   |                       |- warning: static property 'useLooseConversions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'useLooseConversions' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'useLooseConversions' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 |     /// The number of **milliliters** to use for converting to/from **fluid ounces**.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:84:23: warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
82 |
83 |     /// The method by which cross `MeasurementSystemMethod` conversions are performed. The default is `.methodThanSystem`.
84 |     public static var conversionOrder: ConversionOrder = .methodThanSystem
   |                       |- warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'conversionOrder' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'conversionOrder' 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 | }
86 |
[28/31] Compiling MiseEnPlace Descriptive.swift
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:48:23: warning: static property 'locale' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
46 |     }
47 |
48 |     public static var locale: Locale = Locale.current {
   |                       |- warning: static property 'locale' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'locale' 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 |         didSet {
50 |             singleDecimalFormatter.locale = locale
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:68:23: warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
66 |
67 |     /// Changes the default behavior of the `Quantification` translation functions.
68 |     public static var abbreviateTranslations: Bool = false
   |                       |- warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'abbreviateTranslations' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'abbreviateTranslations' 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 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:71:23: warning: static property 'useLooseConversions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
69 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
71 |     public static var useLooseConversions: Bool = false
   |                       |- warning: static property 'useLooseConversions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'useLooseConversions' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'useLooseConversions' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 |     /// The number of **milliliters** to use for converting to/from **fluid ounces**.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:84:23: warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
82 |
83 |     /// The method by which cross `MeasurementSystemMethod` conversions are performed. The default is `.methodThanSystem`.
84 |     public static var conversionOrder: ConversionOrder = .methodThanSystem
   |                       |- warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'conversionOrder' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'conversionOrder' 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 | }
86 |
[29/31] Emitting module MiseEnPlace
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:48:23: warning: static property 'locale' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
46 |     }
47 |
48 |     public static var locale: Locale = Locale.current {
   |                       |- warning: static property 'locale' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'locale' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'locale' 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 |         didSet {
50 |             singleDecimalFormatter.locale = locale
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:68:23: warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
66 |
67 |     /// Changes the default behavior of the `Quantification` translation functions.
68 |     public static var abbreviateTranslations: Bool = false
   |                       |- warning: static property 'abbreviateTranslations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'abbreviateTranslations' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'abbreviateTranslations' 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 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:71:23: warning: static property 'useLooseConversions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
69 |
70 |     /// Replaces precise oz->g / floz->ml conversions with 30g/30ml respectively.
71 |     public static var useLooseConversions: Bool = false
   |                       |- warning: static property 'useLooseConversions' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'useLooseConversions' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'useLooseConversions' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
72 |
73 |     /// The number of **milliliters** to use for converting to/from **fluid ounces**.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Configuration.swift:84:23: warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
82 |
83 |     /// The method by which cross `MeasurementSystemMethod` conversions are performed. The default is `.methodThanSystem`.
84 |     public static var conversionOrder: ConversionOrder = .methodThanSystem
   |                       |- warning: static property 'conversionOrder' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'conversionOrder' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'conversionOrder' 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 | }
86 |
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Intergral.swift:47:23: warning: static property 'singleDigits' is not concurrency-safe because non-'Sendable' type '[Integral]' may have shared mutable state; this is an error in the Swift 6 language mode
 2 |
 3 | /// Enumeration of commonly used integrals in cooking.
 4 | public enum Integral: Int, CaseIterable, CustomStringConvertible {
   |             `- note: consider making enum 'Integral' conform to the 'Sendable' protocol
 5 |     case zero = 0
 6 |     case one = 1
   :
45 |     case nineHundred = 900
46 |
47 |     public static let singleDigits: [Integral] = [.zero, .one, .two, .three, .four, .five, .six, .seven, .eight, .nine]
   |                       |- warning: static property 'singleDigits' is not concurrency-safe because non-'Sendable' type '[Integral]' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'singleDigits' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 |     public var description: String {
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MediaManager.swift:5:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MediaManager' may have shared mutable state; this is an error in the Swift 6 language mode
  1 | import Foundation
  2 |
  3 | public struct MediaManager {
    |               `- note: consider making struct 'MediaManager' conform to the 'Sendable' protocol
  4 |
  5 |     public static let shared: MediaManager = MediaManager()
    |                       |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MediaManager' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'shared' 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
  6 |
  7 |     let fileManager: FileManager
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MiseEnPlaceError.swift:9:10: warning: associated value 'measurementAmount(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
 7 |     case nanZeroConversion
 8 |     case unhandledConversion
 9 |     case measurementAmount(method: MeasurementMethod?)
   |          `- warning: associated value 'measurementAmount(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
10 |     case measurementUnit(method: MeasurementMethod?)
11 |
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MeasurementMethod.swift:6:13: note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 4 | ///
 5 | /// In the case of the **MiseEnPlace** framework, this means _Volume_ and _Mass_.
 6 | public enum MeasurementMethod: Int {
   |             `- note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 7 |     case quantity = 0
 8 |     case volume = 1
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MiseEnPlaceError.swift:10:10: warning: associated value 'measurementUnit(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
 8 |     case unhandledConversion
 9 |     case measurementAmount(method: MeasurementMethod?)
10 |     case measurementUnit(method: MeasurementMethod?)
   |          `- warning: associated value 'measurementUnit(method:)' of 'Sendable'-conforming enum 'MiseEnPlaceError' has non-sendable type 'MeasurementMethod'; this is an error in the Swift 6 language mode
11 |
12 |     public var errorDescription: String? {
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/MeasurementMethod.swift:6:13: note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 4 | ///
 5 | /// In the case of the **MiseEnPlace** framework, this means _Volume_ and _Mass_.
 6 | public enum MeasurementMethod: Int {
   |             `- note: consider making enum 'MeasurementMethod' conform to the 'Sendable' protocol
 7 |     case quantity = 0
 8 |     case volume = 1
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:39:16: warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 37 |     /// A representation usable for when a `Quantification` must be expressed, but the intended outcome
 38 |     /// is to express the implicit lack-of-quantification.
 39 |     static let notQuantified: Quantification = .init(amount: 0.0, unit: .noUnit)
    |                |- warning: static property 'notQuantified' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'notQuantified' 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
 40 |
 41 |     /// A representation when no-specific amount can be defined.
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Quantification.swift:42:16: warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
 11 | /// ```
 12 | ///
 13 | public struct Quantification: Quantifiable, Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Quantification' conform to the 'Sendable' protocol
 14 |
 15 |     public var amount: Double
    :
 40 |
 41 |     /// A representation when no-specific amount can be defined.
 42 |     static let asNeeded: Quantification = .init(amount: -1.0, unit: .noUnit)
    |                |- warning: static property 'asNeeded' is not concurrency-safe because non-'Sendable' type 'Quantification' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: annotate 'asNeeded' 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
 43 |
 44 |     /// A measurement typical of a 'small' portion size
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:7:23: warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
    |                       |- warning: static property 'oneToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToOne' 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
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:9:23: warning: static property 'twoToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
  7 |     public static let oneToOne: Ratio = Ratio(volume: 1.0, weight: 1.0)
  8 |     /// A common/default ratio where volume is twice the measurement in weight
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
    |                       |- warning: static property 'twoToOne' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'twoToOne' 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
 10 |     /// A common/default ratio where weight is twice the measurement in volume
 11 |     public static let oneToTwo: Ratio = Ratio(volume: 1.0, weight: 2.0)
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:11:23: warning: static property 'oneToTwo' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
  2 |
  3 | /// The relation between volume and weight
  4 | public struct Ratio: Equatable, CustomStringConvertible {
    |               `- note: consider making struct 'Ratio' conform to the 'Sendable' protocol
  5 |
  6 |     /// A common/default ratio where volume is equivalent to weight
    :
  9 |     public static let twoToOne: Ratio = Ratio(volume: 2.0, weight: 1.0)
 10 |     /// A common/default ratio where weight is twice the measurement in volume
 11 |     public static let oneToTwo: Ratio = Ratio(volume: 1.0, weight: 2.0)
    |                       |- warning: static property 'oneToTwo' is not concurrency-safe because non-'Sendable' type 'Ratio' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'oneToTwo' 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
 12 |
 13 |     public var volume: Double
/Users/admin/builder/spi-builder-workspace/Sources/MiseEnPlace/Ratio.swift:116:17: warning: var 'significantDigitFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
114 | }
115 |
116 | fileprivate var significantDigitFormatter: NumberFormatter = {
    |                 |- warning: var 'significantDigitFormatter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                 |- note: convert 'significantDigitFormatter' to a 'let' constant to make 'Sendable' shared state immutable
    |                 |- note: annotate 'significantDigitFormatter' 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 |     let formatter = NumberFormatter()
118 |     formatter.usesSignificantDigits = true
[30/31] Compiling MiseEnPlace String+MiseEnPlace.swift
[31/31] Compiling MiseEnPlace Unique.swift
Build complete! (17.67s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "MiseEnPlace",
  "name" : "MiseEnPlace",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "MiseEnPlace",
      "targets" : [
        "MiseEnPlace"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "MiseEnPlaceTests",
      "module_type" : "SwiftTarget",
      "name" : "MiseEnPlaceTests",
      "path" : "Tests/MiseEnPlaceTests",
      "sources" : [
        "AsNeededTests.swift",
        "ConfigurationTests.swift",
        "DescriptiveTests.swift",
        "DoubleTests.swift",
        "EachMeasurementUnitTests.swift",
        "EdgeConditionTests.swift",
        "EqualRatioIngredientTests.swift",
        "FractionTests.swift",
        "HighMassRatioIngredientTests.swift",
        "HighVolumeRatioIngredientTests.swift",
        "InterpreterTests.swift",
        "LooseConversionTests.swift",
        "MeasurementUnitTests.swift",
        "MultimediaTests.swift",
        "QuantificationTests.swift",
        "RatioTests.swift",
        "RecipeTests.swift",
        "SignificantDigitTests.swift",
        "TestIngredient.swift",
        "TestMeasuredIngredient.swift",
        "TestMeasuredRecipe.swift",
        "TestProcedureElement.swift",
        "TestRecipe.swift"
      ],
      "target_dependencies" : [
        "MiseEnPlace"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MiseEnPlace",
      "module_type" : "SwiftTarget",
      "name" : "MiseEnPlace",
      "path" : "Sources/MiseEnPlace",
      "product_memberships" : [
        "MiseEnPlace"
      ],
      "sources" : [
        "AnyFormulaElement.swift",
        "AnyIngredient.swift",
        "AnyProcedureElement.swift",
        "AnyRecipe.swift",
        "Configuration.swift",
        "Descriptive.swift",
        "Double+MiseEnPlace.swift",
        "FormulaElement.swift",
        "Fraction.swift",
        "Ingredient.swift",
        "Intergral.swift",
        "Measured.swift",
        "MeasurementMethod.swift",
        "MeasurementSystem.swift",
        "MeasurementSystemMethod.swift",
        "MeasurementUnit.swift",
        "MediaManager.swift",
        "MiseEnPlaceError.swift",
        "Multimedia.swift",
        "ProcedureElement.swift",
        "Proportioned.swift",
        "Quantifiable.swift",
        "Quantification.swift",
        "Ratio.swift",
        "Recipe.swift",
        "Sequenced.swift",
        "String+MiseEnPlace.swift",
        "Unique.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/richardpiazza/miseenplace/5.3.0
Repository:               richardpiazza/MiseEnPlace
Swift version used:       6.0
Target:                   MiseEnPlace
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/swift-docc-render-artifact/.git/
From https://github.com/swiftlang/swift-docc-render-artifact
 * branch            88815688627177b9716a01ca41da19397bd30e47 -> FETCH_HEAD
HEAD is now at 8881568 Update the artifact
Extracting symbol information for 'MiseEnPlace'...
Finished extracting symbol information for 'MiseEnPlace'. (3.46s)
Building documentation for 'MiseEnPlace'...
warning: Parameter 'unit' not found in instance method declaration
  --> Sources/MiseEnPlace/Quantification.swift:69:9-69:63
67 |     /// This is a recursive algorithm
68 |     ///
69 +     /// - parameter unit: The `MeasurementUnit` to convert to.
   |         ╰─suggestion: Remove 'unit' parameter documentation
70 |     /// - parameter ratio: A multiplier used to convert between measurement systems & methods.
71 |     /// - throws: `MiseEnPlaceError`
warning: Parameter 'destinationUnit' is missing documentation
  --> Sources/MiseEnPlace/Quantification.swift:70:95-70:95
68 |     ///
69 |     /// - parameter unit: The `MeasurementUnit` to convert to.
70 +     /// - parameter ratio: A multiplier used to convert between measurement systems & methods.
   |         ╰─suggestion: Document 'destinationUnit' parameter
71 |     /// - throws: `MiseEnPlaceError`
72 |     func amount(for destinationUnit: MeasurementUnit, ratio: Ratio? = nil) throws -> Double {Finished building documentation for 'MiseEnPlace' (0.27s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/miseenplace/5.3.0
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2038] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.24s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.3 (2.66s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3168] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.25s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.69s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.3
Building for debugging...
[0/8] Write sources
[3/8] Write snippet-extract-tool-entitlement.plist
[4/8] Write swift-version--7754E27361AE5C74.txt
[6/53] Compiling SymbolKit GenericConstraint.swift
[7/53] Compiling SymbolKit GenericParameter.swift
[8/53] Compiling SymbolKit Generics.swift
[9/53] Compiling SymbolKit Namespace.swift
[10/53] Compiling SymbolKit Identifier.swift
[11/53] Compiling SymbolKit KindIdentifier.swift
[12/53] Compiling SymbolKit Location.swift
[13/53] Compiling SymbolKit Mutability.swift
[14/57] Compiling SymbolKit SourceRange.swift
[15/57] Compiling SymbolKit Metadata.swift
[16/57] Compiling SymbolKit Module.swift
[17/57] Compiling SymbolKit OperatingSystem.swift
[18/57] Compiling SymbolKit Platform.swift
[19/57] Compiling SymbolKit Names.swift
[20/57] Compiling SymbolKit SPI.swift
[21/57] Compiling SymbolKit Snippet.swift
[22/57] Compiling SymbolKit Extension.swift
[23/57] Emitting module SymbolKit
[24/57] Compiling SymbolKit DeclarationFragments.swift
[25/57] Compiling SymbolKit Fragment.swift
[26/57] Compiling SymbolKit FragmentKind.swift
[27/57] Compiling SymbolKit FunctionParameter.swift
[28/57] Compiling SymbolKit FunctionSignature.swift
[29/57] Compiling SymbolKit Mixin+Equals.swift
[30/57] Compiling SymbolKit Mixin+Hash.swift
[31/57] Compiling SymbolKit Mixin.swift
[32/57] Compiling SymbolKit LineList.swift
[33/57] Compiling SymbolKit Position.swift
[34/57] Compiling Snippets Snippet.swift
[35/57] Emitting module Snippets
[36/57] Compiling Snippets SnippetParser.swift
[37/57] Compiling SymbolKit SemanticVersion.swift
[38/57] Compiling SymbolKit AccessControl.swift
[39/57] Compiling SymbolKit Availability.swift
[40/57] Compiling SymbolKit AvailabilityItem.swift
[41/57] Compiling SymbolKit Domain.swift
[42/57] Compiling SymbolKit Relationship.swift
[43/57] Compiling SymbolKit RelationshipKind.swift
[44/57] Compiling SymbolKit SourceOrigin.swift
[45/57] Compiling SymbolKit GenericConstraints.swift
[46/57] Compiling SymbolKit Swift.swift
[47/57] Compiling SymbolKit Symbol.swift
[48/57] Compiling SymbolKit SymbolKind.swift
[49/57] Compiling SymbolKit SymbolGraph.swift
[50/57] Compiling SymbolKit GraphCollector.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.83s)
Building for debugging...
[0/1] Write swift-version--7754E27361AE5C74.txt
[2/28] Emitting module MiseEnPlace
[3/30] Compiling MiseEnPlace MeasurementMethod.swift
[4/30] Compiling MiseEnPlace MeasurementSystem.swift
[5/30] Compiling MiseEnPlace MeasurementSystemMethod.swift
[6/30] Compiling MiseEnPlace AnyRecipe.swift
[7/30] Compiling MiseEnPlace Configuration.swift
[8/30] Compiling MiseEnPlace Descriptive.swift
[9/30] Compiling MiseEnPlace AnyFormulaElement.swift
[10/30] Compiling MiseEnPlace AnyIngredient.swift
[11/30] Compiling MiseEnPlace AnyProcedureElement.swift
[12/30] Compiling MiseEnPlace Multimedia.swift
[13/30] Compiling MiseEnPlace ProcedureElement.swift
[14/30] Compiling MiseEnPlace Proportioned.swift
[15/30] Compiling MiseEnPlace MeasurementUnit.swift
[16/30] Compiling MiseEnPlace MediaManager.swift
[17/30] Compiling MiseEnPlace MiseEnPlaceError.swift
[18/30] Compiling MiseEnPlace Ingredient.swift
[19/30] Compiling MiseEnPlace Intergral.swift
[20/30] Compiling MiseEnPlace Measured.swift
[21/30] Compiling MiseEnPlace Double+MiseEnPlace.swift
[22/30] Compiling MiseEnPlace FormulaElement.swift
[23/30] Compiling MiseEnPlace Fraction.swift
[24/30] Compiling MiseEnPlace String+MiseEnPlace.swift
[25/30] Compiling MiseEnPlace Unique.swift
[26/30] Compiling MiseEnPlace Recipe.swift
[27/30] Compiling MiseEnPlace Sequenced.swift
[28/30] Compiling MiseEnPlace Quantifiable.swift
[29/30] Compiling MiseEnPlace Quantification.swift
[30/30] Compiling MiseEnPlace Ratio.swift
Build of target: 'MiseEnPlace' complete! (1.28s)
     920
6	/Users/admin/builder/spi-builder-workspace/.docs/richardpiazza/miseenplace/5.3.0
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/richardpiazza/miseenplace/5.3.0
File count: 920
Doc size:   6.0MB
Preparing doc bundle ...
Uploading prod-richardpiazza-miseenplace-5.3.0-b2a66246.zip to s3://spi-docs-inbox/prod-richardpiazza-miseenplace-5.3.0-b2a66246.zip
Copying... [10%]
Copying... [20%]
Copying... [30%]
Copying... [40%]
Copying... [51%]
Copying... [61%]
Copying... [71%]
Copying... [81%]
Copying... [91%]
Copying... [100%]
Done.