mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
18 lines
546 B
Rust
18 lines
546 B
Rust
#![crate_name = "librespot"]
|
|
#![cfg_attr(feature = "cargo-clippy", allow(unused_io_amount))]
|
|
|
|
extern crate base64;
|
|
extern crate futures;
|
|
extern crate hyper;
|
|
extern crate num_bigint;
|
|
extern crate protobuf;
|
|
extern crate rand;
|
|
extern crate tokio_core;
|
|
extern crate url;
|
|
|
|
pub extern crate librespot_audio as audio;
|
|
pub extern crate librespot_connect as connect;
|
|
pub extern crate librespot_core as core;
|
|
pub extern crate librespot_metadata as metadata;
|
|
pub extern crate librespot_playback as playback;
|
|
pub extern crate librespot_protocol as protocol;
|