record-player 0.1.0

Standalone Bitneedle record player, acoustic scratch engine, and browser command protocol
Documentation
#![forbid(unsafe_code)]

pub mod acoustic;
mod command;
mod engine;
mod event;
mod mixer;
mod state;
mod view;

pub use acoustic::{AcousticConfig, AcousticStatus, CalibrationAnchor, ScratchAcousticDsp, StylusCalibration};
pub use command::*;
pub use engine::*;
pub use event::*;
pub use mixer::*;
pub use state::*;
pub use view::*;

#[cfg(feature = "wasm")]
mod wasm;