Cargo Features

[dependencies]
firewheel = { version = "0.3.0", default-features = false, features = ["cpal", "cpal_resample_inputs", "symphonium", "symphonium_resample", "sampler_pool", "all_nodes", "beep_test_node", "peak_meter_node", "sampler_node", "spatial_basic_node", "stream_nodes", "bevy", "wasm-bindgen"] }
default = cpal, peak_meter_node, sampler_node, symphonium, symphonium_resample

These default features are set whenever firewheel is added without default-features = false somewhere in the dependency tree.

cpal default

Enables the cpal backend

Enables firewheel-cpal

cpal_resample_inputs

Enables resampling input streams in the cpal backend

Enables resample_inputs of optional firewheel-cpal

symphonium default

Enables using Symphonium for loading audio files

Enables symphonium of firewheel-core

symphonium_resample default

Enables resampling audio files when loading them with Symphonium

Enables resampler of firewheel-core

sampler_pool = sampler_node

Enables the SamplerPool helper type for constructing a pool of sampler nodes that can dynamically be assigned work.

Enables smallvec and thunderdome

Affects firewheel::sampler_pool

all_nodes = beep_test_node, peak_meter_node, sampler_node, spatial_basic_node, stream_nodes

Enables all built-in factory nodes

beep_test_node all_nodes?

Enables the "beep test" node

Enables beep_test of firewheel-nodes

peak_meter_node default all_nodes?

Enables the peak meter node

Enables peak_meter of firewheel-nodes

sampler_node default all_nodes? sampler_pool?

Enables the sampler node

Enables sampler of firewheel-nodes

spatial_basic_node all_nodes?

Enables the basic 3D spatial positioning node

Enables spatial_basic of firewheel-nodes

Affects sampler_pool::SpatialBasicChain

stream_nodes all_nodes?

Enables the stream writer/reader nodes for sending/receiving audio directly to/from the audio graph from another thread.

Enables stream of firewheel-nodes

bevy

Enables Component derive macros for node parameters

Enables bevy of firewheel-core and firewheel-nodes

wasm-bindgen

Enables the wasm-bindgen feature for the CPAL backend

Enables wasm-bindgen of firewheel-cpal