lib.rs 538 B

123456789101112131415161718192021222324252627
  1. #[macro_use]
  2. extern crate log;
  3. #[macro_use]
  4. extern crate serde_json;
  5. extern crate base64;
  6. extern crate crypto;
  7. extern crate futures;
  8. extern crate hyper;
  9. extern crate num_bigint;
  10. extern crate protobuf;
  11. extern crate rand;
  12. extern crate tokio_core;
  13. extern crate url;
  14. #[cfg(feature = "with-dns-sd")]
  15. extern crate dns_sd;
  16. #[cfg(not(feature = "with-dns-sd"))]
  17. extern crate mdns;
  18. extern crate librespot_core as core;
  19. extern crate librespot_playback as playback;
  20. extern crate librespot_protocol as protocol;
  21. pub mod discovery;
  22. pub mod spirc;