The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SoundpipeAudioKit, reference main (7a4b02), with Swift 6.1 for macOS (SPM) on 9 Jun 2025 22:56:45 UTC.

Swift 6 data race errors: 179

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

/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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'pulseWidthDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'phaseDistortionDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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:21: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
 19 |
 20 |     /// Specification for position
 21 |     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
 22 |         identifier: "position",
 23 |         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
    :
 19 |
 20 |     /// Specification for position
 21 |     public static let positionDef = NodeParameterDef(
    |                       |- note: add '@MainActor' to make static property 'positionDef' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |         identifier: "position",
 23 |         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:34: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
 32 |
 33 |     /// Specification for amplitude
 34 |     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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |         identifier: "amplitude",
 36 |         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:47: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
 45 |
 46 |     /// Specification for pitch ratio
 47 |     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: add '@MainActor' to make static property 'pitchRatioDef' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |         identifier: "pitchRatio",
 49 |         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
[446/452] Compiling SoundpipeAudioKit PhaseDistortionOscillator.swift
/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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'indexDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'pulseWidthDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'phaseDistortionDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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:21: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
 19 |
 20 |     /// Specification for position
 21 |     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
 22 |         identifier: "position",
 23 |         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
    :
 19 |
 20 |     /// Specification for position
 21 |     public static let positionDef = NodeParameterDef(
    |                       |- note: add '@MainActor' to make static property 'positionDef' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |         identifier: "position",
 23 |         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:34: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
 32 |
 33 |     /// Specification for amplitude
 34 |     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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |         identifier: "amplitude",
 36 |         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:47: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
 45 |
 46 |     /// Specification for pitch ratio
 47 |     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: add '@MainActor' to make static property 'pitchRatioDef' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |         identifier: "pitchRatio",
 49 |         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
[447/452] Compiling SoundpipeAudioKit PhaseLockedVocoder.swift
/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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'indexDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'pulseWidthDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'phaseDistortionDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningOffsetDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'detuningMultiplierDef' part of global actor 'MainActor'
    |                       `- 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:21: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
 19 |
 20 |     /// Specification for position
 21 |     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
 22 |         identifier: "position",
 23 |         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
    :
 19 |
 20 |     /// Specification for position
 21 |     public static let positionDef = NodeParameterDef(
    |                       |- note: add '@MainActor' to make static property 'positionDef' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 22 |         identifier: "position",
 23 |         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:34: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
 32 |
 33 |     /// Specification for amplitude
 34 |     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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 35 |         identifier: "amplitude",
 36 |         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:47: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
 45 |
 46 |     /// Specification for pitch ratio
 47 |     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: add '@MainActor' to make static property 'pitchRatioDef' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 48 |         identifier: "pitchRatio",
 49 |         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
[448/452] Compiling SoundpipeAudioKit PinkNoise.swift
/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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tonguePositionDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tongueDiameterDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tensenessDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'nasalityDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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/PitchTap.swift:68:66: warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
66 |         let length = UInt(buffer.frameLength)
67 |         while trackers.count < channelCount {
68 |             trackers.append(akPitchTrackerCreate(UInt32(Settings.audioFormat.sampleRate), 4096, 20))
   |                                                                  `- warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
69 |         }
70 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Internals/Settings/Settings+macOS.swift:10:23: note: class property declared here
 8 | extension Settings {
 9 |     /// Global audio format AudioKit will default to for new objects and connections
10 |     public static var audioFormat = defaultAudioFormat
   |                       `- note: class property declared here
11 |
12 |     /// The hardware ioBufferDuration. Setting this will request the new value, getting
[449/452] Compiling SoundpipeAudioKit PluckedString.swift
/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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tonguePositionDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tongueDiameterDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tensenessDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'nasalityDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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/PitchTap.swift:68:66: warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
66 |         let length = UInt(buffer.frameLength)
67 |         while trackers.count < channelCount {
68 |             trackers.append(akPitchTrackerCreate(UInt32(Settings.audioFormat.sampleRate), 4096, 20))
   |                                                                  `- warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
69 |         }
70 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Internals/Settings/Settings+macOS.swift:10:23: note: class property declared here
 8 | extension Settings {
 9 |     /// Global audio format AudioKit will default to for new objects and connections
10 |     public static var audioFormat = defaultAudioFormat
   |                       `- note: class property declared here
11 |
12 |     /// The hardware ioBufferDuration. Setting this will request the new value, getting
[450/452] Compiling SoundpipeAudioKit VocalTract.swift
/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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tonguePositionDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tongueDiameterDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tensenessDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'nasalityDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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/PitchTap.swift:68:66: warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
66 |         let length = UInt(buffer.frameLength)
67 |         while trackers.count < channelCount {
68 |             trackers.append(akPitchTrackerCreate(UInt32(Settings.audioFormat.sampleRate), 4096, 20))
   |                                                                  `- warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
69 |         }
70 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Internals/Settings/Settings+macOS.swift:10:23: note: class property declared here
 8 | extension Settings {
 9 |     /// Global audio format AudioKit will default to for new objects and connections
10 |     public static var audioFormat = defaultAudioFormat
   |                       `- note: class property declared here
11 |
12 |     /// The hardware ioBufferDuration. Setting this will request the new value, getting
[451/452] Compiling SoundpipeAudioKit WhiteNoise.swift
/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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tonguePositionDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tongueDiameterDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tensenessDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'nasalityDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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/PitchTap.swift:68:66: warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
66 |         let length = UInt(buffer.frameLength)
67 |         while trackers.count < channelCount {
68 |             trackers.append(akPitchTrackerCreate(UInt32(Settings.audioFormat.sampleRate), 4096, 20))
   |                                                                  `- warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
69 |         }
70 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Internals/Settings/Settings+macOS.swift:10:23: note: class property declared here
 8 | extension Settings {
 9 |     /// Global audio format AudioKit will default to for new objects and connections
10 |     public static var audioFormat = defaultAudioFormat
   |                       `- note: class property declared here
11 |
12 |     /// The hardware ioBufferDuration. Setting this will request the new value, getting
[452/452] Compiling SoundpipeAudioKit PitchTap.swift
/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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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: add '@MainActor' to make static property 'frequencyDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tonguePositionDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tongueDiameterDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'tensenessDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'nasalityDef' part of global actor 'MainActor'
    |                       `- 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: add '@MainActor' to make static property 'amplitudeDef' part of global actor 'MainActor'
   |                       `- 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/PitchTap.swift:68:66: warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
66 |         let length = UInt(buffer.frameLength)
67 |         while trackers.count < channelCount {
68 |             trackers.append(akPitchTrackerCreate(UInt32(Settings.audioFormat.sampleRate), 4096, 20))
   |                                                                  `- warning: reference to class property 'audioFormat' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
69 |         }
70 |
/Users/admin/builder/spi-builder-workspace/.build/checkouts/AudioKit/Sources/AudioKit/Internals/Settings/Settings+macOS.swift:10:23: note: class property declared here
 8 | extension Settings {
 9 |     /// Global audio format AudioKit will default to for new objects and connections
10 |     public static var audioFormat = defaultAudioFormat
   |                       `- note: class property declared here
11 |
12 |     /// The hardware ioBufferDuration. Setting this will request the new value, getting
Build complete! (26.21s)
warning: 'tonic': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/.build/checkouts/Tonic/Sources/Tonic/Chord.swift.orig
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"
    },
    {
      "identity" : "tonic",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/AudioKit/Tonic"
    }
  ],
  "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",
      "product_dependencies" : [
        "Tonic"
      ],
      "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/EnsembleTests.swift",
        "Effects Tests/FlatFrequencyResponseReverbTests.swift",
        "Effects Tests/PitchCorrectTests.swift",
        "Effects Tests/PitchShifterTests.swift",
        "Effects Tests/TalkboxTests.swift",
        "Effects Tests/VibratoTests.swift",
        "Effects Tests/VocoderTests.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",
        "Tonic"
      ],
      "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/Ensemble.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/PitchCorrect.swift",
        "Effects/PitchShifter.swift",
        "Effects/ResonantFilter.swift",
        "Effects/RolandTB303Filter.swift",
        "Effects/StringResonator.swift",
        "Effects/Talkbox.swift",
        "Effects/TanhDistortion.swift",
        "Effects/ThreePoleLowpassFilter.swift",
        "Effects/ToneComplementFilter.swift",
        "Effects/ToneFilter.swift",
        "Effects/Tremolo.swift",
        "Effects/VariableDelay.swift",
        "Effects/Vibrato.swift",
        "Effects/Vocoder.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/custom/Yin.c",
        "modules/custom/circular_buffer.c",
        "modules/custom/pitchcalculate.c",
        "modules/custom/pitchcorrect.c",
        "modules/custom/pitchshift.c",
        "modules/custom/pitchshift2.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/EnsembleDSP.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/PitchCorrectDSP.mm",
        "Effects/PitchShifterDSP.mm",
        "Effects/ResonantFilterDSP.mm",
        "Effects/RolandTB303FilterDSP.mm",
        "Effects/StringResonatorDSP.mm",
        "Effects/TalkboxDSP.mm",
        "Effects/TanhDistortionDSP.mm",
        "Effects/ThreePoleLowpassFilterDSP.mm",
        "Effects/ToneComplementFilterDSP.mm",
        "Effects/ToneFilterDSP.mm",
        "Effects/TremoloDSP.mm",
        "Effects/VariableDelayDSP.mm",
        "Effects/VibratoDSP.mm",
        "Effects/VocoderDSP.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.