mirror of
https://github.com/RustAudio/rodio
synced 2024-11-10 14:14:21 +00:00
commit
ae21370019
3 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "rodio"
|
||||
version = "0.7.0"
|
||||
version = "0.8.0"
|
||||
authors = ["Pierre Krieger <pierre.krieger1708@gmail.com>"]
|
||||
license = "Apache-2.0"
|
||||
description = "Audio playback library"
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
Rust playback library.
|
||||
|
||||
- Playback is handled by [cpal](https://github.com/tomaka/cpal).
|
||||
- MP3 decoding is handled by [minimp3](https://github.com/lieff/minimp3).
|
||||
- WAV decoding is handled by [hound](https://github.com/ruud-v-a/hound).
|
||||
- Vorbis decoding is handled by [lewton](https://github.com/est31/lewton).
|
||||
- Flac decoding is handled by [claxon](https://github.com/ruuda/claxon).
|
||||
|
|
|
@ -18,7 +18,7 @@ mod wav;
|
|||
|
||||
/// Source of audio samples from decoding a file.
|
||||
///
|
||||
/// Supports WAV, Vorbis and Flac.
|
||||
/// Supports MP3, WAV, Vorbis and Flac.
|
||||
#[cfg(any(feature = "wav", feature = "flac", feature = "vorbis", feature = "mp3"))]
|
||||
pub struct Decoder<R>(DecoderImpl<R>)
|
||||
where
|
||||
|
|
Loading…
Reference in a new issue