main.rs 424 B

12345678910111213141516171819202122232425262728
  1. #![crate_name = "librespot"]
  2. #![feature(plugin,core)]
  3. #![plugin(mod_path)]
  4. #![plugin(protobuf_macros)]
  5. #[macro_use] extern crate lazy_static;
  6. extern crate byteorder;
  7. extern crate crypto;
  8. extern crate gmp;
  9. extern crate num;
  10. extern crate protobuf;
  11. extern crate rand;
  12. mod connection;
  13. mod cryptoutil;
  14. mod protocol;
  15. mod session;
  16. mod util;
  17. use session::Session;
  18. fn main() {
  19. let mut s = Session::new();
  20. s.login();
  21. }