Cargo.toml 987 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "librespot"
  3. version = "0.1.0"
  4. authors = ["Paul Liétar <paul@lietar.net>"]
  5. build = "build.rs"
  6. [lib]
  7. name = "librespot"
  8. path = "src/lib.rs"
  9. [[bin]]
  10. name = "main"
  11. path = "src/main.rs"
  12. [dependencies.librespot-protocol]
  13. path = "protocol"
  14. [dependencies]
  15. mod_path = "*"
  16. byteorder = "*"
  17. num = "*"
  18. rand = "*"
  19. lazy_static = "0.1.*"
  20. rust-crypto = "*"
  21. time = "*"
  22. tempfile = "*"
  23. rpassword = "*"
  24. getopts = "0.2.4"
  25. [dependencies.protobuf]
  26. git = "https://github.com/plietar/rust-protobuf.git"
  27. [dependencies.protobuf_macros]
  28. git = "https://github.com/plietar/rust-protobuf-macros.git"
  29. [dependencies.rust-gmp]
  30. git = "https://github.com/plietar/rust-gmp.git"
  31. [dependencies.shannon]
  32. git = "https://github.com/plietar/rust-shannon.git"
  33. [dependencies.readall]
  34. git = "https://github.com/plietar/rust-readall.git"
  35. [dependencies.portaudio]
  36. git = "https://github.com/mvdnes/portaudio-rs"
  37. [dependencies.vorbis]
  38. git = "https://github.com/plietar/vorbis-rs"
  39. [build-dependencies]
  40. vergen = "*"