awedio 0.6.0

A low-overhead and adaptable audio playback library
Documentation
1
2
3
4
5
6
7
8
9
10
//! Backends handle the device and OS specific logic for outputting audio.
//!
//! See comments on [Renderer][crate::manager::Renderer] for how to implement
//! a new backend which can be done in this crate or in a separate crate.

#[cfg(feature = "cpal")]
mod cpal_backend;

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