NeuralAmpModeler-rs 3.0.0

An opinionated, high-performance Neural Amp Modeler (NAM) client and core implementation in Rust for Linux/PipeWire and CLAP plugins.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2026 Fábio Henrique de Lima Silva (fhl.bsb@gmail.com) All rights reserved.

//! Modules shared between the standalone version and plugin.

pub mod alloc_audit;
pub mod diagnostics;
pub mod panic_hook;
pub mod params;
pub mod spsc;
#[cfg(target_arch = "x86_64")]
pub mod tsc;

pub use diagnostics::*;
pub use panic_hook::*;
pub use params::*;
pub use spsc::*;