Cargo.toml 848 B

1234567891011121314151617181920212223242526272829303132333435
  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. [dependencies.protobuf]
  17. git = "https://github.com/plietar/rust-protobuf.git"
  18. [dependencies.protobuf_macros]
  19. git = "https://github.com/plietar/rust-protobuf-macros.git"
  20. [dependencies.rust-gmp]
  21. git = "https://github.com/plietar/rust-gmp.git"
  22. [dependencies.shannon]
  23. git = "https://github.com/plietar/rust-shannon.git"
  24. [dependencies.readall]
  25. git = "https://github.com/plietar/rust-readall.git"
  26. [dependencies.portaudio]
  27. git = "https://github.com/mvdnes/portaudio-rs"
  28. [dependencies.vorbis]
  29. git = "https://github.com/plietar/vorbis-rs"
  30. [build-dependencies]
  31. vergen = "*"