Cargo.toml 863 B

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