Feat: cleanup
This commit is contained in:
@@ -7,20 +7,27 @@ mod timing;
|
||||
|
||||
pub use timing::{substeps_in_window, StepTiming, SyncTime};
|
||||
|
||||
// Used by plugin and desktop crates via the lib; not by the terminal binary directly.
|
||||
pub use audio::{preload_sample_heads, AnalysisHandle, ScopeBuffer, SpectrumBuffer};
|
||||
|
||||
// Re-exported for the plugin crate (not used by the terminal binary).
|
||||
#[allow(unused_imports)]
|
||||
pub use audio::{
|
||||
preload_sample_heads, spawn_analysis_thread, AnalysisHandle, ScopeBuffer, SpectrumBuffer,
|
||||
};
|
||||
pub use audio::spawn_analysis_thread;
|
||||
|
||||
#[cfg(feature = "cli")]
|
||||
pub use audio::{build_stream, AudioStreamConfig};
|
||||
#[cfg(feature = "cli")]
|
||||
#[allow(unused_imports)]
|
||||
pub use audio::{build_stream, AudioStreamConfig, AudioStreamInfo};
|
||||
pub use audio::AudioStreamInfo;
|
||||
|
||||
pub use link::LinkState;
|
||||
pub use sequencer::{
|
||||
spawn_sequencer, AudioCommand, MidiCommand, PatternChange, PatternSnapshot, SeqCommand,
|
||||
SequencerConfig, SequencerHandle, SequencerSnapshot, StepSnapshot,
|
||||
};
|
||||
|
||||
// Re-exported for the plugin crate (not used by the terminal binary).
|
||||
#[allow(unused_imports)]
|
||||
pub use sequencer::{
|
||||
parse_midi_command, spawn_sequencer, AudioCommand, MidiCommand, PatternChange, PatternSnapshot,
|
||||
SeqCommand, SequencerConfig, SequencerHandle, SequencerSnapshot, SequencerState,
|
||||
SharedSequencerState, StepSnapshot, TickInput, TickOutput, TimestampedCommand,
|
||||
parse_midi_command, SequencerState, SharedSequencerState, TickInput, TickOutput,
|
||||
TimestampedCommand,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user