NeuralAmpModeler-rs 3.0.2

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

//! Modules specific to standalone execution (PipeWire, CLI).

#![cfg(feature = "standalone")]

pub mod cli;
pub mod colors;
pub mod pw_host;
pub mod rt_setup;

pub use cli::*;
pub use colors::*;
pub use pw_host::*;
pub use rt_setup::*;