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:
parent
2846d3acfd
commit
ec8f80df75
9 changed files with 64 additions and 14 deletions
17
audio/src/lib.rs
Normal file
17
audio/src/lib.rs
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue