fixed-resample 0.11.1

An easy to use crate for resampling at a fixed ratio
Documentation
#[cfg(feature = "resampler")]
mod resampler;

#[cfg(feature = "resampler")]
pub use resampler::*;

#[cfg(feature = "channel")]
mod channel;
#[cfg(feature = "channel")]
pub use channel::*;

#[cfg(feature = "resampler")]
pub use rubato;

#[cfg(feature = "resampler")]
pub use rubato::Sample;

#[cfg(not(feature = "resampler"))]
mod sample;
#[cfg(not(feature = "resampler"))]
pub use sample::Sample;

pub use audioadapter_buffers;