1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-05 02:39:53 +02:00

Create new librespot-audio crate

This commit is contained in:
Paul Lietar 2017-08-03 20:37:04 +01:00
parent 2846d3acfd
commit ec8f80df75
9 changed files with 64 additions and 14 deletions

17
audio/src/lib.rs Normal file
View file

@ -0,0 +1,17 @@
#[macro_use] extern crate log;
#[macro_use] extern crate futures;
extern crate bit_set;
extern crate byteorder;
extern crate crypto;
extern crate num_traits;
extern crate num_bigint;
extern crate tempfile;
extern crate librespot_core as core;
mod fetch;
mod decrypt;
pub use fetch::{AudioFile, AudioFileOpen};
pub use decrypt::AudioDecrypt;