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 SoundpipeAudioKit, reference main (792fbf), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 05:11:50 UTC.

Swift 6 data race errors: 145

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

   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |         identifier: "attackDuration",
39 |         name: "Attack duration",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/FormantFilter.swift:50:23: warning: static property 'decayDurationDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 |     /// Specification details for decayDuration
50 |     public static let decayDurationDef = NodeParameterDef(
   |                       |- warning: static property 'decayDurationDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'decayDurationDef' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
51 |         identifier: "decayDuration",
52 |         name: "Decay duration",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/HighPassButterworthFilter.swift:24:23: warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 |     /// Specification details for cutoffFrequency
24 |     public static let cutoffFrequencyDef = NodeParameterDef(
   |                       `- warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
25 |         identifier: "cutoffFrequency",
26 |         name: "Cutoff Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/HighPassButterworthFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
22 |
23 |     /// Specification details for cutoffFrequency
24 |     public static let cutoffFrequencyDef = NodeParameterDef(
   |                       |- note: annotate 'cutoffFrequencyDef' 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
25 |         identifier: "cutoffFrequency",
26 |         name: "Cutoff Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/HighShelfParametricEqualizerFilter.swift:22:23: warning: static property 'centerFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for centerFrequency
22 |     public static let centerFrequencyDef = NodeParameterDef(
   |                       `- warning: static property 'centerFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "centerFrequency",
24 |         name: "Corner Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/HighShelfParametricEqualizerFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for centerFrequency
22 |     public static let centerFrequencyDef = NodeParameterDef(
   |                       |- note: annotate 'centerFrequencyDef' 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
23 |         identifier: "centerFrequency",
24 |         name: "Corner Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/HighShelfParametricEqualizerFilter.swift:35:23: warning: static property 'gainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 |     /// Specification details for gain
35 |     public static let gainDef = NodeParameterDef(
   |                       |- warning: static property 'gainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'gainDef' 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
36 |         identifier: "gain",
37 |         name: "Gain",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/HighShelfParametricEqualizerFilter.swift:48:23: warning: static property 'qDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
46 |
47 |     /// Specification details for q
48 |     public static let qDef = NodeParameterDef(
   |                       |- warning: static property 'qDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'qDef' 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 |         identifier: "q",
50 |         name: "Q",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/KorgLowPassFilter.swift:22:23: warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for cutoffFrequency
22 |     public static let cutoffFrequencyDef = NodeParameterDef(
   |                       `- warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "cutoffFrequency",
24 |         name: "Filter cutoff",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/KorgLowPassFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for cutoffFrequency
22 |     public static let cutoffFrequencyDef = NodeParameterDef(
   |                       |- note: annotate 'cutoffFrequencyDef' 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
23 |         identifier: "cutoffFrequency",
24 |         name: "Filter cutoff",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/KorgLowPassFilter.swift:35:23: warning: static property 'resonanceDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 |     /// Specification details for resonance
35 |     public static let resonanceDef = NodeParameterDef(
   |                       |- warning: static property 'resonanceDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'resonanceDef' 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
36 |         identifier: "resonance",
37 |         name: "Resonance",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/KorgLowPassFilter.swift:48:23: warning: static property 'saturationDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
46 |
47 |     /// Specification details for saturation
48 |     public static let saturationDef = NodeParameterDef(
   |                       |- warning: static property 'saturationDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'saturationDef' 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 |         identifier: "saturation",
50 |         name: "Saturation",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/LowPassButterworthFilter.swift:24:23: warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 |     /// Specification details for cutoffFrequency
24 |     public static let cutoffFrequencyDef = NodeParameterDef(
   |                       `- warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
25 |         identifier: "cutoffFrequency",
26 |         name: "Cutoff Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/LowPassButterworthFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
22 |
23 |     /// Specification details for cutoffFrequency
24 |     public static let cutoffFrequencyDef = NodeParameterDef(
   |                       |- note: annotate 'cutoffFrequencyDef' 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
25 |         identifier: "cutoffFrequency",
26 |         name: "Cutoff Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/LowShelfParametricEqualizerFilter.swift:22:23: warning: static property 'cornerFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for cornerFrequency
22 |     public static let cornerFrequencyDef = NodeParameterDef(
   |                       `- warning: static property 'cornerFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "cornerFrequency",
24 |         name: "Corner Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/LowShelfParametricEqualizerFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for cornerFrequency
22 |     public static let cornerFrequencyDef = NodeParameterDef(
   |                       |- note: annotate 'cornerFrequencyDef' 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
23 |         identifier: "cornerFrequency",
24 |         name: "Corner Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/LowShelfParametricEqualizerFilter.swift:35:23: warning: static property 'gainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 |     /// Specification details for gain
35 |     public static let gainDef = NodeParameterDef(
   |                       |- warning: static property 'gainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'gainDef' 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
36 |         identifier: "gain",
37 |         name: "Gain",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/LowShelfParametricEqualizerFilter.swift:48:23: warning: static property 'qDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
46 |
47 |     /// Specification details for q
48 |     public static let qDef = NodeParameterDef(
   |                       |- warning: static property 'qDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'qDef' 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 |         identifier: "q",
50 |         name: "Q",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ModalResonanceFilter.swift:24:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
22 |
23 |     /// Specification details for frequency
24 |     public static let frequencyDef = NodeParameterDef(
   |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
25 |         identifier: "frequency",
26 |         name: "Resonant Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ModalResonanceFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
22 |
23 |     /// Specification details for frequency
24 |     public static let frequencyDef = NodeParameterDef(
   |                       |- note: annotate 'frequencyDef' 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
25 |         identifier: "frequency",
26 |         name: "Resonant Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ModalResonanceFilter.swift:37:23: warning: static property 'qualityFactorDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
35 |
36 |     /// Specification details for qualityFactor
37 |     public static let qualityFactorDef = NodeParameterDef(
   |                       |- warning: static property 'qualityFactorDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'qualityFactorDef' 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
38 |         identifier: "qualityFactor",
39 |         name: "Quality Factor",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/MoogLadder.swift:26:23: warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
24 |
25 |     /// Specification details for cutoffFrequency
26 |     public static let cutoffFrequencyDef = NodeParameterDef(
   |                       `- warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
27 |         identifier: "cutoffFrequency",
28 |         name: "Cutoff Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/MoogLadder.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
24 |
25 |     /// Specification details for cutoffFrequency
26 |     public static let cutoffFrequencyDef = NodeParameterDef(
   |                       |- note: annotate 'cutoffFrequencyDef' 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
27 |         identifier: "cutoffFrequency",
28 |         name: "Cutoff Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/MoogLadder.swift:39:23: warning: static property 'resonanceDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
37 |
38 |     /// Specification details for resonance
39 |     public static let resonanceDef = NodeParameterDef(
   |                       |- warning: static property 'resonanceDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'resonanceDef' 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 |         identifier: "resonance",
41 |         name: "Resonance",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Panner.swift:22:23: warning: static property 'panDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for pan
22 |     public static let panDef = NodeParameterDef(
   |                       `- warning: static property 'panDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "pan",
24 |         name: "Pan",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Panner.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for pan
22 |     public static let panDef = NodeParameterDef(
   |                       |- note: annotate 'panDef' 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
23 |         identifier: "pan",
24 |         name: "Pan",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/PeakingParametricEqualizerFilter.swift:22:23: warning: static property 'centerFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for centerFrequency
22 |     public static let centerFrequencyDef = NodeParameterDef(
   |                       `- warning: static property 'centerFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "centerFrequency",
24 |         name: "Center Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/PeakingParametricEqualizerFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for centerFrequency
22 |     public static let centerFrequencyDef = NodeParameterDef(
   |                       |- note: annotate 'centerFrequencyDef' 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
23 |         identifier: "centerFrequency",
24 |         name: "Center Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/PeakingParametricEqualizerFilter.swift:35:23: warning: static property 'gainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 |     /// Specification details for gain
35 |     public static let gainDef = NodeParameterDef(
   |                       |- warning: static property 'gainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'gainDef' 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
36 |         identifier: "gain",
37 |         name: "Gain",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/PeakingParametricEqualizerFilter.swift:48:23: warning: static property 'qDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
46 |
47 |     /// Specification details for q
48 |     public static let qDef = NodeParameterDef(
   |                       |- warning: static property 'qDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'qDef' 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 |         identifier: "q",
50 |         name: "Q",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:22:23: warning: static property 'notchMinimumFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 20 |
 21 |     /// Specification details for notchMinimumFrequency
 22 |     public static let notchMinimumFrequencyDef = NodeParameterDef(
    |                       `- warning: static property 'notchMinimumFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |         identifier: "notchMinimumFrequency",
 24 |         name: "Min notch frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 20 |
 21 |     /// Specification details for notchMinimumFrequency
 22 |     public static let notchMinimumFrequencyDef = NodeParameterDef(
    |                       |- note: annotate 'notchMinimumFrequencyDef' 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
 23 |         identifier: "notchMinimumFrequency",
 24 |         name: "Min notch frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:35:23: warning: static property 'notchMaximumFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Specification details for notchMaximumFrequency
 35 |     public static let notchMaximumFrequencyDef = NodeParameterDef(
    |                       |- warning: static property 'notchMaximumFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'notchMaximumFrequencyDef' 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
 36 |         identifier: "notchMaximumFrequency",
 37 |         name: "Max notch frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:48:23: warning: static property 'notchWidthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |     /// Specification details for notchWidth
 48 |     public static let notchWidthDef = NodeParameterDef(
    |                       |- warning: static property 'notchWidthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'notchWidthDef' 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 |         identifier: "notchWidth",
 50 |         name: "Notch width",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:61:23: warning: static property 'notchFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 |     /// Specification details for notchFrequency
 61 |     public static let notchFrequencyDef = NodeParameterDef(
    |                       |- warning: static property 'notchFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'notchFrequencyDef' 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
 62 |         identifier: "notchFrequency",
 63 |         name: "Notch frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:74:23: warning: static property 'vibratoModeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 72 |
 73 |     /// Specification details for vibratoMode
 74 |     public static let vibratoModeDef = NodeParameterDef(
    |                       |- warning: static property 'vibratoModeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'vibratoModeDef' 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
 75 |         identifier: "vibratoMode",
 76 |         name: "Vibrato mode",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:87:23: warning: static property 'depthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 85 |
 86 |     /// Specification details for depth
 87 |     public static let depthDef = NodeParameterDef(
    |                       |- warning: static property 'depthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'depthDef' 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
 88 |         identifier: "depth",
 89 |         name: "Depth",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:100:23: warning: static property 'feedbackDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 98 |
 99 |     /// Specification details for feedback
100 |     public static let feedbackDef = NodeParameterDef(
    |                       |- warning: static property 'feedbackDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'feedbackDef' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |         identifier: "feedback",
102 |         name: "Feedback",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:113:23: warning: static property 'invertedDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
111 |
112 |     /// Specification details for inverted
113 |     public static let invertedDef = NodeParameterDef(
    |                       |- warning: static property 'invertedDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'invertedDef' 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
114 |         identifier: "inverted",
115 |         name: "Inversion",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Phaser.swift:126:23: warning: static property 'lfoBPMDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
124 |
125 |     /// Specification details for lfoBPM
126 |     public static let lfoBPMDef = NodeParameterDef(
    |                       |- warning: static property 'lfoBPMDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'lfoBPMDef' 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
127 |         identifier: "lfoBPM",
128 |         name: "LFO Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/PitchShifter.swift:22:23: warning: static property 'shiftDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for shift
22 |     public static let shiftDef = NodeParameterDef(
   |                       `- warning: static property 'shiftDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "shift",
24 |         name: "Shift",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/PitchShifter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for shift
22 |     public static let shiftDef = NodeParameterDef(
   |                       |- note: annotate 'shiftDef' 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
23 |         identifier: "shift",
24 |         name: "Shift",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/PitchShifter.swift:35:23: warning: static property 'windowSizeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 |     /// Specification details for windowSize
35 |     public static let windowSizeDef = NodeParameterDef(
   |                       |- warning: static property 'windowSizeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'windowSizeDef' 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
36 |         identifier: "windowSize",
37 |         name: "Window size",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/PitchShifter.swift:48:23: warning: static property 'crossfadeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
46 |
47 |     /// Specification details for crossfade
48 |     public static let crossfadeDef = NodeParameterDef(
   |                       |- warning: static property 'crossfadeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'crossfadeDef' 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 |         identifier: "crossfade",
50 |         name: "Crossfade",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ResonantFilter.swift:22:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for frequency
22 |     public static let frequencyDef = NodeParameterDef(
   |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "frequency",
24 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ResonantFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for frequency
22 |     public static let frequencyDef = NodeParameterDef(
   |                       |- note: annotate 'frequencyDef' 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
23 |         identifier: "frequency",
24 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ResonantFilter.swift:35:23: warning: static property 'bandwidthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 |     /// Specification details for bandwidth
35 |     public static let bandwidthDef = NodeParameterDef(
   |                       |- warning: static property 'bandwidthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'bandwidthDef' 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
36 |         identifier: "bandwidth",
37 |         name: "Bandwidth of the filter.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/RolandTB303Filter.swift:22:23: warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 20 |
 21 |     /// Specification details for cutoffFrequency
 22 |     public static let cutoffFrequencyDef = NodeParameterDef(
    |                       `- warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |         identifier: "cutoffFrequency",
 24 |         name: "Cutoff Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/RolandTB303Filter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 20 |
 21 |     /// Specification details for cutoffFrequency
 22 |     public static let cutoffFrequencyDef = NodeParameterDef(
    |                       |- note: annotate 'cutoffFrequencyDef' 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
 23 |         identifier: "cutoffFrequency",
 24 |         name: "Cutoff Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/RolandTB303Filter.swift:35:23: warning: static property 'resonanceDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Specification details for resonance
 35 |     public static let resonanceDef = NodeParameterDef(
    |                       |- warning: static property 'resonanceDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'resonanceDef' 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
 36 |         identifier: "resonance",
 37 |         name: "Resonance",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/RolandTB303Filter.swift:48:23: warning: static property 'distortionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |     /// Specification details for distortion
 48 |     public static let distortionDef = NodeParameterDef(
    |                       |- warning: static property 'distortionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'distortionDef' 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 |         identifier: "distortion",
 50 |         name: "Distortion",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/RolandTB303Filter.swift:61:23: warning: static property 'resonanceAsymmetryDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 |     /// Specification details for resonanceAsymmetry
 61 |     public static let resonanceAsymmetryDef = NodeParameterDef(
    |                       |- warning: static property 'resonanceAsymmetryDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'resonanceAsymmetryDef' 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
 62 |         identifier: "resonanceAsymmetry",
 63 |         name: "Resonance Asymmetry",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/StringResonator.swift:27:23: warning: static property 'fundamentalFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 |     /// Specification details for fundamentalFrequency
27 |     public static let fundamentalFrequencyDef = NodeParameterDef(
   |                       `- warning: static property 'fundamentalFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
28 |         identifier: "fundamentalFrequency",
29 |         name: "Fundamental Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/StringResonator.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
25 |
26 |     /// Specification details for fundamentalFrequency
27 |     public static let fundamentalFrequencyDef = NodeParameterDef(
   |                       |- note: annotate 'fundamentalFrequencyDef' 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
28 |         identifier: "fundamentalFrequency",
29 |         name: "Fundamental Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/StringResonator.swift:40:23: warning: static property 'feedbackDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
38 |
39 |     /// Specification details for feedback
40 |     public static let feedbackDef = NodeParameterDef(
   |                       |- warning: static property 'feedbackDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'feedbackDef' 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
41 |         identifier: "feedback",
42 |         name: "Feedback",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/TanhDistortion.swift:22:23: warning: static property 'pregainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 20 |
 21 |     /// Specification details for pregain
 22 |     public static let pregainDef = NodeParameterDef(
    |                       `- warning: static property 'pregainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |         identifier: "pregain",
 24 |         name: "Pregain",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/TanhDistortion.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 20 |
 21 |     /// Specification details for pregain
 22 |     public static let pregainDef = NodeParameterDef(
    |                       |- note: annotate 'pregainDef' 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
 23 |         identifier: "pregain",
 24 |         name: "Pregain",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/TanhDistortion.swift:35:23: warning: static property 'postgainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Specification details for postgain
 35 |     public static let postgainDef = NodeParameterDef(
    |                       |- warning: static property 'postgainDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'postgainDef' 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
 36 |         identifier: "postgain",
 37 |         name: "Postgain",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/TanhDistortion.swift:48:23: warning: static property 'positiveShapeParameterDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |     /// Specification details for positiveShapeParameter
 48 |     public static let positiveShapeParameterDef = NodeParameterDef(
    |                       |- warning: static property 'positiveShapeParameterDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'positiveShapeParameterDef' 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 |         identifier: "positiveShapeParameter",
 50 |         name: "Positive Shape Parameter",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/TanhDistortion.swift:61:23: warning: static property 'negativeShapeParameterDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 |     /// Specification details for negativeShapeParameter
 61 |     public static let negativeShapeParameterDef = NodeParameterDef(
    |                       |- warning: static property 'negativeShapeParameterDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'negativeShapeParameterDef' 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
 62 |         identifier: "negativeShapeParameter",
 63 |         name: "Negative Shape Parameter",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/TanhDistortion.swift:74:23: warning: static property 'dryWetMixDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 72 |
 73 |     /// Specification details for dryWetMix
 74 |     public static let dryWetMixDef = NodeParameterDef(
    |                       |- warning: static property 'dryWetMixDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dryWetMixDef' 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
 75 |         identifier: "dryWetMix",
 76 |         name: "Dry/Wet Mix",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ThreePoleLowpassFilter.swift:22:23: warning: static property 'distortionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for distortion
22 |     public static let distortionDef = NodeParameterDef(
   |                       `- warning: static property 'distortionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "distortion",
24 |         name: "Distortion",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ThreePoleLowpassFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for distortion
22 |     public static let distortionDef = NodeParameterDef(
   |                       |- note: annotate 'distortionDef' 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
23 |         identifier: "distortion",
24 |         name: "Distortion",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ThreePoleLowpassFilter.swift:35:23: warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 |     /// Specification details for cutoffFrequency
35 |     public static let cutoffFrequencyDef = NodeParameterDef(
   |                       |- warning: static property 'cutoffFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'cutoffFrequencyDef' 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
36 |         identifier: "cutoffFrequency",
37 |         name: "Cutoff Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ThreePoleLowpassFilter.swift:48:23: warning: static property 'resonanceDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
46 |
47 |     /// Specification details for resonance
48 |     public static let resonanceDef = NodeParameterDef(
   |                       |- warning: static property 'resonanceDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'resonanceDef' 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 |         identifier: "resonance",
50 |         name: "Resonance",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ToneComplementFilter.swift:22:23: warning: static property 'halfPowerPointDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for halfPowerPoint
22 |     public static let halfPowerPointDef = NodeParameterDef(
   |                       `- warning: static property 'halfPowerPointDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "halfPowerPoint",
24 |         name: "Half-Power Point",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ToneComplementFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for halfPowerPoint
22 |     public static let halfPowerPointDef = NodeParameterDef(
   |                       |- note: annotate 'halfPowerPointDef' 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
23 |         identifier: "halfPowerPoint",
24 |         name: "Half-Power Point",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ToneFilter.swift:22:23: warning: static property 'halfPowerPointDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for halfPowerPoint
22 |     public static let halfPowerPointDef = NodeParameterDef(
   |                       `- warning: static property 'halfPowerPointDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "halfPowerPoint",
24 |         name: "Half-Power Point",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ToneFilter.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for halfPowerPoint
22 |     public static let halfPowerPointDef = NodeParameterDef(
   |                       |- note: annotate 'halfPowerPointDef' 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
23 |         identifier: "halfPowerPoint",
24 |         name: "Half-Power Point",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Tremolo.swift:28:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |
 27 |     /// Specification details for frequency
 28 |     public static let frequencyDef = NodeParameterDef(
    |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 29 |         identifier: "frequency",
 30 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Tremolo.swift:5:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  3 | // Updated manually for DynamicWaveformNode
  4 |
  5 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  6 | import AudioKitEX
  7 | import AVFoundation
    :
 26 |
 27 |     /// Specification details for frequency
 28 |     public static let frequencyDef = NodeParameterDef(
    |                       |- note: annotate 'frequencyDef' 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
 29 |         identifier: "frequency",
 30 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/Tremolo.swift:41:23: warning: static property 'depthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 39 |
 40 |     /// Specification details for depth
 41 |     public static let depthDef = NodeParameterDef(
    |                       |- warning: static property 'depthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'depthDef' 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
 42 |         identifier: "depth",
 43 |         name: "Depth",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/VariableDelay.swift:22:23: warning: static property 'timeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Specification details for time
22 |     public static let timeDef = NodeParameterDef(
   |                       `- warning: static property 'timeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
23 |         identifier: "time",
24 |         name: "Delay time",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/VariableDelay.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
20 |
21 |     /// Specification details for time
22 |     public static let timeDef = NodeParameterDef(
   |                       |- note: annotate 'timeDef' 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
23 |         identifier: "time",
24 |         name: "Delay time",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/VariableDelay.swift:35:23: warning: static property 'feedbackDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
33 |
34 |     /// Specification details for feedback
35 |     public static let feedbackDef = NodeParameterDef(
   |                       |- warning: static property 'feedbackDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'feedbackDef' 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
36 |         identifier: "feedback",
37 |         name: "Feedback",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:22:23: warning: static property 'predelayDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 20 |
 21 |     /// Specification details for predelay
 22 |     public static let predelayDef = NodeParameterDef(
    |                       `- warning: static property 'predelayDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |         identifier: "predelay",
 24 |         name: "PreDelay",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 20 |
 21 |     /// Specification details for predelay
 22 |     public static let predelayDef = NodeParameterDef(
    |                       |- note: annotate 'predelayDef' 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
 23 |         identifier: "predelay",
 24 |         name: "PreDelay",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:35:23: warning: static property 'crossoverFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Specification details for crossoverFrequency
 35 |     public static let crossoverFrequencyDef = NodeParameterDef(
    |                       |- warning: static property 'crossoverFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'crossoverFrequencyDef' 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
 36 |         identifier: "crossoverFrequency",
 37 |         name: "Crossover frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:48:23: warning: static property 'lowReleaseTimeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |     /// Specification details for lowReleaseTime
 48 |     public static let lowReleaseTimeDef = NodeParameterDef(
    |                       |- warning: static property 'lowReleaseTimeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'lowReleaseTimeDef' 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 |         identifier: "lowReleaseTime",
 50 |         name: "Low release time",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:61:23: warning: static property 'midReleaseTimeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 |     /// Specification details for midReleaseTime
 61 |     public static let midReleaseTimeDef = NodeParameterDef(
    |                       |- warning: static property 'midReleaseTimeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'midReleaseTimeDef' 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
 62 |         identifier: "midReleaseTime",
 63 |         name: "Mid Release Time",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:74:23: warning: static property 'dampingFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 72 |
 73 |     /// Specification details for dampingFrequency
 74 |     public static let dampingFrequencyDef = NodeParameterDef(
    |                       |- warning: static property 'dampingFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dampingFrequencyDef' 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
 75 |         identifier: "dampingFrequency",
 76 |         name: "Damping Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:87:23: warning: static property 'equalizerFrequency1Def' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 85 |
 86 |     /// Specification details for equalizerFrequency1
 87 |     public static let equalizerFrequency1Def = NodeParameterDef(
    |                       |- warning: static property 'equalizerFrequency1Def' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'equalizerFrequency1Def' 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
 88 |         identifier: "equalizerFrequency1",
 89 |         name: "EQ Frequency 1",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:100:23: warning: static property 'equalizerLevel1Def' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 98 |
 99 |     /// Specification details for equalizerLevel1
100 |     public static let equalizerLevel1Def = NodeParameterDef(
    |                       |- warning: static property 'equalizerLevel1Def' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'equalizerLevel1Def' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 |         identifier: "equalizerLevel1",
102 |         name: "EQ Level 1",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:113:23: warning: static property 'equalizerFrequency2Def' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
111 |
112 |     /// Specification details for equalizerFrequency2
113 |     public static let equalizerFrequency2Def = NodeParameterDef(
    |                       |- warning: static property 'equalizerFrequency2Def' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'equalizerFrequency2Def' 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
114 |         identifier: "EQ Frequency 2",
115 |         name: "EQ Frequency 2",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:126:23: warning: static property 'equalizerLevel2Def' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
124 |
125 |     /// Specification details for equalizerLevel2
126 |     public static let equalizerLevel2Def = NodeParameterDef(
    |                       |- warning: static property 'equalizerLevel2Def' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'equalizerLevel2Def' 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
127 |         identifier: "equalizerLevel2",
128 |         name: "EQ Level 2",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Effects/ZitaReverb.swift:139:23: warning: static property 'dryWetMixDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
137 |
138 |     /// Specification details for dryWetMix
139 |     public static let dryWetMixDef = NodeParameterDef(
    |                       |- warning: static property 'dryWetMixDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'dryWetMixDef' 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
140 |         identifier: "dryWetMix",
141 |         name: "Dry Wet Mix",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/BrownianNoise.swift:15:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Specification details for amplitude
15 |     public static let amplitudeDef = NodeParameterDef(
   |                       `- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
16 |         identifier: "amplitude",
17 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/BrownianNoise.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
13 |
14 |     /// Specification details for amplitude
15 |     public static let amplitudeDef = NodeParameterDef(
   |                       |- note: annotate 'amplitudeDef' 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
16 |         identifier: "amplitude",
17 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/DynamicOscillator.swift:25:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |
 24 |     /// Specification details for frequency
 25 |     public static let frequencyDef = NodeParameterDef(
    |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 26 |         identifier: "frequency",
 27 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/DynamicOscillator.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 23 |
 24 |     /// Specification details for frequency
 25 |     public static let frequencyDef = NodeParameterDef(
    |                       |- note: annotate 'frequencyDef' 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
 26 |         identifier: "frequency",
 27 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/DynamicOscillator.swift:38:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// Specification details for amplitude
 38 |     public static let amplitudeDef = NodeParameterDef(
    |                       |- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'amplitudeDef' 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
 39 |         identifier: "amplitude",
 40 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/DynamicOscillator.swift:51:23: warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 49 |
 50 |     /// Specification details for detuningOffset
 51 |     public static let detuningOffsetDef = NodeParameterDef(
    |                       |- warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningOffsetDef' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 52 |         identifier: "detuningOffset",
 53 |         name: "Frequency offset",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/DynamicOscillator.swift:64:23: warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 62 |
 63 |     /// Specification details for detuningMultiplier
 64 |     public static let detuningMultiplierDef = NodeParameterDef(
    |                       |- warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningMultiplierDef' 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
 65 |         identifier: "detuningMultiplier",
 66 |         name: "Frequency detuning multiplier",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/FMOscillator.swift:17:23: warning: static property 'baseFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 |     /// Specification details for baseFrequency
 17 |     public static let baseFrequencyDef = NodeParameterDef(
    |                       `- warning: static property 'baseFrequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 18 |         identifier: "baseFrequency",
 19 |         name: "Base Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/FMOscillator.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 15 |
 16 |     /// Specification details for baseFrequency
 17 |     public static let baseFrequencyDef = NodeParameterDef(
    |                       |- note: annotate 'baseFrequencyDef' 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
 18 |         identifier: "baseFrequency",
 19 |         name: "Base Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/FMOscillator.swift:30:23: warning: static property 'carrierMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 28 |
 29 |     /// Specification details for carrierMultiplier
 30 |     public static let carrierMultiplierDef = NodeParameterDef(
    |                       |- warning: static property 'carrierMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'carrierMultiplierDef' 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
 31 |         identifier: "carrierMultiplier",
 32 |         name: "Carrier Multiplier",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/FMOscillator.swift:43:23: warning: static property 'modulatingMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 41 |
 42 |     /// Specification details for modulatingMultiplier
 43 |     public static let modulatingMultiplierDef = NodeParameterDef(
    |                       |- warning: static property 'modulatingMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'modulatingMultiplierDef' 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
 44 |         identifier: "modulatingMultiplier",
 45 |         name: "Modulating Multiplier",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/FMOscillator.swift:56:23: warning: static property 'modulationIndexDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 54 |
 55 |     /// Specification details for modulationIndex
 56 |     public static let modulationIndexDef = NodeParameterDef(
    |                       |- warning: static property 'modulationIndexDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'modulationIndexDef' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 57 |         identifier: "modulationIndex",
 58 |         name: "Modulation Index",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/FMOscillator.swift:69:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 67 |
 68 |     /// Specification details for amplitude
 69 |     public static let amplitudeDef = NodeParameterDef(
    |                       |- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'amplitudeDef' 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
 70 |         identifier: "amplitude",
 71 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MetalBar.swift:19:23: warning: static property 'leftBoundaryConditionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 17 |
 18 |     /// Specification details for leftBoundaryCondition
 19 |     public static let leftBoundaryConditionDef = NodeParameterDef(
    |                       `- warning: static property 'leftBoundaryConditionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 20 |         identifier: "leftBoundaryCondition",
 21 |         name: "Boundary condition at left end of bar. 1 = clamped, 2 = pivoting, 3 = free",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MetalBar.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 17 |
 18 |     /// Specification details for leftBoundaryCondition
 19 |     public static let leftBoundaryConditionDef = NodeParameterDef(
    |                       |- note: annotate 'leftBoundaryConditionDef' 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
 20 |         identifier: "leftBoundaryCondition",
 21 |         name: "Boundary condition at left end of bar. 1 = clamped, 2 = pivoting, 3 = free",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MetalBar.swift:32:23: warning: static property 'rightBoundaryConditionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |
 31 |     /// Specification details for rightBoundaryCondition
 32 |     public static let rightBoundaryConditionDef = NodeParameterDef(
    |                       |- warning: static property 'rightBoundaryConditionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'rightBoundaryConditionDef' 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
 33 |         identifier: "rightBoundaryCondition",
 34 |         name: "Boundary condition at right end of bar. 1 = clamped, 2 = pivoting, 3 = free",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MetalBar.swift:45:23: warning: static property 'decayDurationDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 43 |
 44 |     /// Specification details for decayDuration
 45 |     public static let decayDurationDef = NodeParameterDef(
    |                       |- warning: static property 'decayDurationDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'decayDurationDef' 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
 46 |         identifier: "decayDuration",
 47 |         name: "30db decay time (in seconds).",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MetalBar.swift:58:23: warning: static property 'scanSpeedDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 56 |
 57 |     /// Specification details for scanSpeed
 58 |     public static let scanSpeedDef = NodeParameterDef(
    |                       |- warning: static property 'scanSpeedDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'scanSpeedDef' 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
 59 |         identifier: "scanSpeed",
 60 |         name: "Speed of scanning the output location.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MetalBar.swift:71:23: warning: static property 'positionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 69 |
 70 |     /// Specification details for position
 71 |     public static let positionDef = NodeParameterDef(
    |                       |- warning: static property 'positionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'positionDef' 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 |         identifier: "position",
 73 |         name: "Position along bar that strike occurs.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MetalBar.swift:84:23: warning: static property 'strikeVelocityDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 82 |
 83 |     /// Specification details for strikeVelocity
 84 |     public static let strikeVelocityDef = NodeParameterDef(
    |                       |- warning: static property 'strikeVelocityDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'strikeVelocityDef' 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 |         identifier: "strikeVelocity",
 86 |         name: "Normalized strike velocity",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MetalBar.swift:97:23: warning: static property 'strikeWidthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 95 |
 96 |     /// Specification details for strikeWidth
 97 |     public static let strikeWidthDef = NodeParameterDef(
    |                       |- warning: static property 'strikeWidthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'strikeWidthDef' 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
 98 |         identifier: "strikeWidth",
 99 |         name: "Spatial width of strike.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MorphingOscillator.swift:19:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 17 |
 18 |     /// Specification details for frequency
 19 |     public static let frequencyDef = NodeParameterDef(
    |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 20 |         identifier: "frequency",
 21 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MorphingOscillator.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 17 |
 18 |     /// Specification details for frequency
 19 |     public static let frequencyDef = NodeParameterDef(
    |                       |- note: annotate 'frequencyDef' 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
 20 |         identifier: "frequency",
 21 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MorphingOscillator.swift:32:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |
 31 |     /// Specification details for amplitude
 32 |     public static let amplitudeDef = NodeParameterDef(
    |                       |- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'amplitudeDef' 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
 33 |         identifier: "amplitude",
 34 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MorphingOscillator.swift:45:23: warning: static property 'indexDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 43 |
 44 |     /// Specification details for index
 45 |     public static let indexDef = NodeParameterDef(
    |                       |- warning: static property 'indexDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'indexDef' 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
 46 |         identifier: "index",
 47 |         name: "Index",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MorphingOscillator.swift:58:23: warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 56 |
 57 |     /// Specification details for detuningOffset
 58 |     public static let detuningOffsetDef = NodeParameterDef(
    |                       |- warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningOffsetDef' 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
 59 |         identifier: "detuningOffset",
 60 |         name: "Detuning offset",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/MorphingOscillator.swift:71:23: warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 69 |
 70 |     /// Specification details for detuningMultiplier
 71 |     public static let detuningMultiplierDef = NodeParameterDef(
    |                       |- warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningMultiplierDef' 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 |         identifier: "detuningMultiplier",
 73 |         name: "Detuning multiplier",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/Oscillator.swift:19:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 17 |
 18 |     /// Specification details for frequency
 19 |     public static let frequencyDef = NodeParameterDef(
    |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 20 |         identifier: "frequency",
 21 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/Oscillator.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 17 |
 18 |     /// Specification details for frequency
 19 |     public static let frequencyDef = NodeParameterDef(
    |                       |- note: annotate 'frequencyDef' 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
 20 |         identifier: "frequency",
 21 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/Oscillator.swift:32:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 30 |
 31 |     /// Specification details for amplitude
 32 |     public static let amplitudeDef = NodeParameterDef(
    |                       |- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'amplitudeDef' 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
 33 |         identifier: "amplitude",
 34 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/Oscillator.swift:45:23: warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 43 |
 44 |     /// Specification details for detuningOffset
 45 |     public static let detuningOffsetDef = NodeParameterDef(
    |                       |- warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningOffsetDef' 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
 46 |         identifier: "detuningOffset",
 47 |         name: "Frequency offset",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/Oscillator.swift:58:23: warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 56 |
 57 |     /// Specification details for detuningMultiplier
 58 |     public static let detuningMultiplierDef = NodeParameterDef(
    |                       |- warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningMultiplierDef' 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
 59 |         identifier: "detuningMultiplier",
 60 |         name: "Frequency detuning multiplier",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PWMOscillator.swift:20:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 18 |
 19 |     /// Specification details for frequency
 20 |     public static let frequencyDef = NodeParameterDef(
    |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |         identifier: "frequency",
 22 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PWMOscillator.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 18 |
 19 |     /// Specification details for frequency
 20 |     public static let frequencyDef = NodeParameterDef(
    |                       |- note: annotate 'frequencyDef' 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
 21 |         identifier: "frequency",
 22 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PWMOscillator.swift:33:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 31 |
 32 |     /// Specification details for amplitude
 33 |     public static let amplitudeDef = NodeParameterDef(
    |                       |- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'amplitudeDef' 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
 34 |         identifier: "amplitude",
 35 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PWMOscillator.swift:46:23: warning: static property 'pulseWidthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// Specification details for pulseWidth
 46 |     public static let pulseWidthDef = NodeParameterDef(
    |                       |- warning: static property 'pulseWidthDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'pulseWidthDef' 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
 47 |         identifier: "pulseWidth",
 48 |         name: "Pulse Width",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PWMOscillator.swift:59:23: warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 57 |
 58 |     /// Specification details for detuningOffset
 59 |     public static let detuningOffsetDef = NodeParameterDef(
    |                       |- warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningOffsetDef' 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
 60 |         identifier: "detuningOffset",
 61 |         name: "Frequency offset",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PWMOscillator.swift:72:23: warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 |     /// Specification details for detuningMultiplier
 72 |     public static let detuningMultiplierDef = NodeParameterDef(
    |                       |- warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningMultiplierDef' 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
 73 |         identifier: "detuningMultiplier",
 74 |         name: "Frequency detuning multiplier",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseDistortionOscillator.swift:22:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 20 |
 21 |     /// Specification details for frequency
 22 |     public static let frequencyDef = NodeParameterDef(
    |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 23 |         identifier: "frequency",
 24 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseDistortionOscillator.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 20 |
 21 |     /// Specification details for frequency
 22 |     public static let frequencyDef = NodeParameterDef(
    |                       |- note: annotate 'frequencyDef' 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
 23 |         identifier: "frequency",
 24 |         name: "Frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseDistortionOscillator.swift:35:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 33 |
 34 |     /// Specification details for amplitude
 35 |     public static let amplitudeDef = NodeParameterDef(
    |                       |- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'amplitudeDef' 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
 36 |         identifier: "amplitude",
 37 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseDistortionOscillator.swift:48:23: warning: static property 'phaseDistortionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 46 |
 47 |     /// Specification details for phaseDistortion
 48 |     public static let phaseDistortionDef = NodeParameterDef(
    |                       |- warning: static property 'phaseDistortionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'phaseDistortionDef' 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 |         identifier: "phaseDistortion",
 50 |         name: "Phase distortion",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseDistortionOscillator.swift:61:23: warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 59 |
 60 |     /// Specification details for detuningOffset
 61 |     public static let detuningOffsetDef = NodeParameterDef(
    |                       |- warning: static property 'detuningOffsetDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningOffsetDef' 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
 62 |         identifier: "detuningOffset",
 63 |         name: "Frequency offset",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseDistortionOscillator.swift:74:23: warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 72 |
 73 |     /// Specification details for detuningMultiplier
 74 |     public static let detuningMultiplierDef = NodeParameterDef(
    |                       |- warning: static property 'detuningMultiplierDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'detuningMultiplierDef' 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
 75 |         identifier: "detuningMultiplier",
 76 |         name: "Detuning multiplier",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseLockedVocoder.swift:20:23: warning: static property 'positionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 18 |
 19 |     /// Specification for position
 20 |     public static let positionDef = NodeParameterDef(
    |                       `- warning: static property 'positionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |         identifier: "position",
 22 |         name: "Position in time. When non-changing it will do a spectral freeze of a the current point in time.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseLockedVocoder.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  1 | // Copyright AudioKit. All Rights Reserved. Revision History at http://github.com/AudioKit/AudioKit/
  2 |
  3 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  4 | import AudioKitEX
  5 | import AVFoundation
    :
 18 |
 19 |     /// Specification for position
 20 |     public static let positionDef = NodeParameterDef(
    |                       |- note: annotate 'positionDef' 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
 21 |         identifier: "position",
 22 |         name: "Position in time. When non-changing it will do a spectral freeze of a the current point in time.",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseLockedVocoder.swift:33:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 31 |
 32 |     /// Specification for amplitude
 33 |     public static let amplitudeDef = NodeParameterDef(
    |                       |- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'amplitudeDef' 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
 34 |         identifier: "amplitude",
 35 |         name: "Amplitude.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PhaseLockedVocoder.swift:46:23: warning: static property 'pitchRatioDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// Specification for pitch ratio
 46 |     public static let pitchRatioDef = NodeParameterDef(
    |                       |- warning: static property 'pitchRatioDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'pitchRatioDef' 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
 47 |         identifier: "pitchRatio",
 48 |         name: "Pitch ratio. A value of. 1  normal, 2 is double speed, 0.5 is halfspeed, etc.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PinkNoise.swift:15:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Specification details for amplitude
15 |     public static let amplitudeDef = NodeParameterDef(
   |                       `- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
16 |         identifier: "amplitude",
17 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PinkNoise.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
13 |
14 |     /// Specification details for amplitude
15 |     public static let amplitudeDef = NodeParameterDef(
   |                       |- note: annotate 'amplitudeDef' 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
16 |         identifier: "amplitude",
17 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PluckedString.swift:19:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
17 |
18 |     /// Specification details for frequency
19 |     public static let frequencyDef = NodeParameterDef(
   |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
20 |         identifier: "frequency",
21 |         name: "Variable frequency. Values less than the initial frequency are doubled until greater than that.",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PluckedString.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
17 |
18 |     /// Specification details for frequency
19 |     public static let frequencyDef = NodeParameterDef(
   |                       |- note: annotate 'frequencyDef' 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
20 |         identifier: "frequency",
21 |         name: "Variable frequency. Values less than the initial frequency are doubled until greater than that.",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/PluckedString.swift:32:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     /// Specification details for amplitude
32 |     public static let amplitudeDef = NodeParameterDef(
   |                       |- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'amplitudeDef' 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
33 |         identifier: "amplitude",
34 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/VocalTract.swift:20:23: warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 18 |
 19 |     /// Specification details for frequency
 20 |     public static let frequencyDef = NodeParameterDef(
    |                       `- warning: static property 'frequencyDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 21 |         identifier: "frequency",
 22 |         name: "Glottal frequency",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/VocalTract.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
  3 |
  4 | import AudioKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
  5 | import AudioKitEX
  6 | import AVFoundation
    :
 18 |
 19 |     /// Specification details for frequency
 20 |     public static let frequencyDef = NodeParameterDef(
    |                       |- note: annotate 'frequencyDef' 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
 21 |         identifier: "frequency",
 22 |         name: "Glottal frequency",
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/VocalTract.swift:33:23: warning: static property 'tonguePositionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 31 |
 32 |     /// Specification details for tonguePosition
 33 |     public static let tonguePositionDef = NodeParameterDef(
    |                       |- warning: static property 'tonguePositionDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'tonguePositionDef' 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
 34 |         identifier: "tonguePosition",
 35 |         name: "Tongue position",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/VocalTract.swift:46:23: warning: static property 'tongueDiameterDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     /// Specification details for tongueDiameter
 46 |     public static let tongueDiameterDef = NodeParameterDef(
    |                       |- warning: static property 'tongueDiameterDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'tongueDiameterDef' 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
 47 |         identifier: "tongueDiameter",
 48 |         name: "Tongue diameter",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/VocalTract.swift:59:23: warning: static property 'tensenessDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 57 |
 58 |     /// Specification details for tenseness
 59 |     public static let tensenessDef = NodeParameterDef(
    |                       |- warning: static property 'tensenessDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'tensenessDef' 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
 60 |         identifier: "tenseness",
 61 |         name: "Vocal tenseness",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/VocalTract.swift:72:23: warning: static property 'nasalityDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
 70 |
 71 |     /// Specification details for nasality
 72 |     public static let nasalityDef = NodeParameterDef(
    |                       |- warning: static property 'nasalityDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'nasalityDef' 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
 73 |         identifier: "nasality",
 74 |         name: "Nasality",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/WhiteNoise.swift:15:23: warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
13 |
14 |     /// Specification details for amplitude
15 |     public static let amplitudeDef = NodeParameterDef(
   |                       `- warning: static property 'amplitudeDef' is not concurrency-safe because non-'Sendable' type 'NodeParameterDef' may have shared mutable state; this is an error in the Swift 6 language mode
16 |         identifier: "amplitude",
17 |         name: "Amplitude",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Nodes/NodeParameter.swift:6:15: note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  4 |
  5 | /// Definition or specification of a node parameter
  6 | public struct NodeParameterDef {
    |               `- note: struct 'NodeParameterDef' does not conform to the 'Sendable' protocol
  7 |     /// Unique ID
  8 |     public var identifier: String
/Users/admin/builder/spi-builder-workspace/Sources/SoundpipeAudioKit/Generators/WhiteNoise.swift:4:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 2 | // This file was auto-autogenerated by scripts and templates at http://github.com/AudioKit/AudioKitDevTools/
 3 |
 4 | import AudioKit
   | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AudioKit'
 5 | import AudioKitEX
 6 | import AVFoundation
   :
13 |
14 |     /// Specification details for amplitude
15 |     public static let amplitudeDef = NodeParameterDef(
   |                       |- note: annotate 'amplitudeDef' 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
16 |         identifier: "amplitude",
17 |         name: "Amplitude",
Build complete! (41.81s)
Build complete.
{
  "cxx_language_standard" : "c++14",
  "dependencies" : [
    {
      "identity" : "kissfft",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/AudioKit/KissFFT"
    },
    {
      "identity" : "audiokit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.6.0",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/AudioKit/AudioKit"
    },
    {
      "identity" : "audiokitex",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.5.0",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/AudioKit/AudioKitEX"
    }
  ],
  "manifest_display_name" : "SoundpipeAudioKit",
  "name" : "SoundpipeAudioKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SoundpipeAudioKit",
      "targets" : [
        "SoundpipeAudioKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SoundpipeAudioKitTests",
      "module_type" : "SwiftTarget",
      "name" : "SoundpipeAudioKitTests",
      "path" : "Tests/SoundpipeAudioKitTests",
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Tests/SoundpipeAudioKitTests/TestResources",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "AmplitudeEnvelopeTests.swift",
        "BalancerTests.swift",
        "Effects Tests/ConvolutionTests.swift",
        "Effects Tests/DiodeLadderFilterTests.swift",
        "Effects Tests/FlatFrequencyResponseReverbTests.swift",
        "Effects Tests/PitchShifterTests.swift",
        "Effects Tests/ZitaReverbTests.swift",
        "Generator Tests/DynamicOscillatorTests.swift",
        "Generator Tests/MetalBarTests.swift",
        "Generator Tests/PhaseLockedVocoderTests.swift",
        "Generator Tests/PluckedStringTests.swift",
        "GenericNodeTests.swift",
        "OscillatorAutomationTests.swift",
        "PitchTapTests.swift",
        "RenderTests.swift",
        "ValidatedMD5s.swift"
      ],
      "target_dependencies" : [
        "SoundpipeAudioKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SoundpipeAudioKit",
      "module_type" : "SwiftTarget",
      "name" : "SoundpipeAudioKit",
      "path" : "Sources/SoundpipeAudioKit",
      "product_dependencies" : [
        "AudioKit",
        "AudioKitEX"
      ],
      "product_memberships" : [
        "SoundpipeAudioKit"
      ],
      "sources" : [
        "Effects/AmplitudeEnvelope.swift",
        "Effects/AutoPanner.swift",
        "Effects/AutoWah.swift",
        "Effects/Balancer.swift",
        "Effects/BandPassButterworthFilter.swift",
        "Effects/BandRejectButterworthFilter.swift",
        "Effects/BitCrusher.swift",
        "Effects/ChowningReverb.swift",
        "Effects/Clipper.swift",
        "Effects/CombFilterReverb.swift",
        "Effects/Convolution.swift",
        "Effects/CostelloReverb.swift",
        "Effects/DCBlock.swift",
        "Effects/DiodeLadderFilter.swift",
        "Effects/DynamicRangeCompressor.swift",
        "Effects/EqualizerFilter.swift",
        "Effects/FlatFrequencyResponseReverb.swift",
        "Effects/FormantFilter.swift",
        "Effects/HighPassButterworthFilter.swift",
        "Effects/HighShelfParametricEqualizerFilter.swift",
        "Effects/KorgLowPassFilter.swift",
        "Effects/LowPassButterworthFilter.swift",
        "Effects/LowShelfParametricEqualizerFilter.swift",
        "Effects/ModalResonanceFilter.swift",
        "Effects/MoogLadder.swift",
        "Effects/Panner.swift",
        "Effects/PeakingParametricEqualizerFilter.swift",
        "Effects/Phaser.swift",
        "Effects/PitchShifter.swift",
        "Effects/ResonantFilter.swift",
        "Effects/RolandTB303Filter.swift",
        "Effects/StringResonator.swift",
        "Effects/TanhDistortion.swift",
        "Effects/ThreePoleLowpassFilter.swift",
        "Effects/ToneComplementFilter.swift",
        "Effects/ToneFilter.swift",
        "Effects/Tremolo.swift",
        "Effects/VariableDelay.swift",
        "Effects/ZitaReverb.swift",
        "Generators/BrownianNoise.swift",
        "Generators/DynamicOscillator.swift",
        "Generators/FMOscillator.swift",
        "Generators/MetalBar.swift",
        "Generators/MorphingOscillator.swift",
        "Generators/Oscillator.swift",
        "Generators/PWMOscillator.swift",
        "Generators/PhaseDistortionOscillator.swift",
        "Generators/PhaseLockedVocoder.swift",
        "Generators/PinkNoise.swift",
        "Generators/PluckedString.swift",
        "Generators/VocalTract.swift",
        "Generators/WhiteNoise.swift",
        "PitchTap.swift"
      ],
      "target_dependencies" : [
        "CSoundpipeAudioKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "Soundpipe",
      "module_type" : "ClangTarget",
      "name" : "Soundpipe",
      "path" : "Sources/Soundpipe",
      "product_dependencies" : [
        "KissFFT"
      ],
      "product_memberships" : [
        "SoundpipeAudioKit"
      ],
      "sources" : [
        "external/growl.c",
        "external/vocwrapper.c",
        "lib/fft/fft.c",
        "lib/inih/ini.c",
        "modules/adsr.c",
        "modules/allpass.c",
        "modules/atone.c",
        "modules/autowah.c",
        "modules/bal.c",
        "modules/bar.c",
        "modules/base.c",
        "modules/biquad.c",
        "modules/biscale.c",
        "modules/bitcrush.c",
        "modules/blsaw.c",
        "modules/blsquare.c",
        "modules/bltriangle.c",
        "modules/brown.c",
        "modules/butbp.c",
        "modules/butbr.c",
        "modules/buthp.c",
        "modules/butlp.c",
        "modules/clamp.c",
        "modules/clip.c",
        "modules/clock.c",
        "modules/comb.c",
        "modules/compressor.c",
        "modules/conv.c",
        "modules/count.c",
        "modules/crossfade.c",
        "modules/dcblock.c",
        "modules/delay.c",
        "modules/diode.c",
        "modules/dist.c",
        "modules/dmetro.c",
        "modules/dtrig.c",
        "modules/dust.c",
        "modules/dynamicosc.c",
        "modules/eqfil.c",
        "modules/expon.c",
        "modules/fftwrapper.c",
        "modules/fof.c",
        "modules/fofilt.c",
        "modules/fog.c",
        "modules/fold.c",
        "modules/foo.c",
        "modules/fosc.c",
        "modules/ftbl.c",
        "modules/gbuzz.c",
        "modules/hilbert.c",
        "modules/in.c",
        "modules/incr.c",
        "modules/jcrev.c",
        "modules/jitter.c",
        "modules/line.c",
        "modules/lpf18.c",
        "modules/maygate.c",
        "modules/metro.c",
        "modules/mincer.c",
        "modules/mode.c",
        "modules/moogladder.c",
        "modules/noise.c",
        "modules/nsmp.c",
        "modules/osc.c",
        "modules/oscmorph.c",
        "modules/oscmorph2d.c",
        "modules/padsynth.c",
        "modules/pan2.c",
        "modules/panst.c",
        "modules/pareq.c",
        "modules/paulstretch.c",
        "modules/pdhalf.c",
        "modules/peaklim.c",
        "modules/phaser.c",
        "modules/phasor.c",
        "modules/pinknoise.c",
        "modules/pitchamdf.c",
        "modules/pluck.c",
        "modules/port.c",
        "modules/posc3.c",
        "modules/progress.c",
        "modules/prop.c",
        "modules/pshift.c",
        "modules/ptrack.c",
        "modules/randh.c",
        "modules/randi.c",
        "modules/randmt.c",
        "modules/random.c",
        "modules/reson.c",
        "modules/reverse.c",
        "modules/revsc.c",
        "modules/rms.c",
        "modules/rpt.c",
        "modules/rspline.c",
        "modules/samphold.c",
        "modules/saturator.c",
        "modules/scale.c",
        "modules/scrambler.c",
        "modules/sdelay.c",
        "modules/slice.c",
        "modules/smoothdelay.c",
        "modules/sndwarp.c",
        "modules/streson.c",
        "modules/switch.c",
        "modules/tabread.c",
        "modules/tadsr.c",
        "modules/talkbox.c",
        "modules/tblrec.c",
        "modules/tbvcf.c",
        "modules/tdiv.c",
        "modules/tenv.c",
        "modules/tenv2.c",
        "modules/tenvx.c",
        "modules/tevent.c",
        "modules/tgate.c",
        "modules/thresh.c",
        "modules/timer.c",
        "modules/tin.c",
        "modules/tone.c",
        "modules/trand.c",
        "modules/tseg.c",
        "modules/tseq.c",
        "modules/vdelay.c",
        "modules/voc.c",
        "modules/vocoder.c",
        "modules/waveset.c",
        "modules/wpkorg35.c",
        "modules/zitarev.c",
        "test/md5.c",
        "test/test.c"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CSoundpipeAudioKitTests",
      "module_type" : "ClangTarget",
      "name" : "CSoundpipeAudioKitTests",
      "path" : "Tests/CSoundpipeAudioKitTests",
      "sources" : [
        "PitchTrackerTests.mm"
      ],
      "target_dependencies" : [
        "CSoundpipeAudioKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CSoundpipeAudioKit",
      "module_type" : "ClangTarget",
      "name" : "CSoundpipeAudioKit",
      "path" : "Sources/CSoundpipeAudioKit",
      "product_dependencies" : [
        "AudioKit",
        "AudioKitEX"
      ],
      "product_memberships" : [
        "SoundpipeAudioKit"
      ],
      "sources" : [
        "Effects/AmplitudeEnvelopeDSP.mm",
        "Effects/AutoPannerDSP.mm",
        "Effects/AutoWahDSP.mm",
        "Effects/BalancerDSP.mm",
        "Effects/BandPassButterworthFilterDSP.mm",
        "Effects/BandRejectButterworthFilterDSP.mm",
        "Effects/BitCrusherDSP.mm",
        "Effects/ChowningReverbDSP.mm",
        "Effects/ClipperDSP.mm",
        "Effects/CombFilterReverbDSP.mm",
        "Effects/ConvolutionDSP.mm",
        "Effects/CostelloReverbDSP.mm",
        "Effects/DCBlockDSP.mm",
        "Effects/DiodeLadderFilterDSP.mm",
        "Effects/DynamicRangeCompressorDSP.mm",
        "Effects/EqualizerFilterDSP.mm",
        "Effects/FlatFrequencyResponseReverbDSP.mm",
        "Effects/FormantFilterDSP.mm",
        "Effects/HighPassButterworthFilterDSP.mm",
        "Effects/HighShelfParametricEqualizerFilterDSP.mm",
        "Effects/KorgLowPassFilterDSP.mm",
        "Effects/LowPassButterworthFilterDSP.mm",
        "Effects/LowShelfParametricEqualizerFilterDSP.mm",
        "Effects/ModalResonanceFilterDSP.mm",
        "Effects/MoogLadderDSP.mm",
        "Effects/PannerDSP.mm",
        "Effects/PeakingParametricEqualizerFilterDSP.mm",
        "Effects/PhaserDSP.mm",
        "Effects/PitchShifterDSP.mm",
        "Effects/ResonantFilterDSP.mm",
        "Effects/RolandTB303FilterDSP.mm",
        "Effects/StringResonatorDSP.mm",
        "Effects/TanhDistortionDSP.mm",
        "Effects/ThreePoleLowpassFilterDSP.mm",
        "Effects/ToneComplementFilterDSP.mm",
        "Effects/ToneFilterDSP.mm",
        "Effects/TremoloDSP.mm",
        "Effects/VariableDelayDSP.mm",
        "Effects/ZitaReverbDSP.mm",
        "Generators/BrownianNoiseDSP.mm",
        "Generators/DynamicOscillatorDSP.mm",
        "Generators/FMOscillatorDSP.mm",
        "Generators/MetalBarDSP.mm",
        "Generators/MorphingOscillatorDSP.mm",
        "Generators/OscillatorDSP.mm",
        "Generators/PWMOscillatorDSP.mm",
        "Generators/PhaseDistortionOscillatorDSP.mm",
        "Generators/PhaseLockedVocoderDSP.mm",
        "Generators/PinkNoiseDSP.mm",
        "Generators/PluckedStringDSP.mm",
        "Generators/VocalTractDSP.mm",
        "Generators/WhiteNoiseDSP.mm",
        "PitchTracker.mm",
        "SoundpipeDSPBase.mm"
      ],
      "target_dependencies" : [
        "Soundpipe"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.