Cargo.toml 953 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. [dependencies.protobuf]
  24. git = "https://github.com/plietar/rust-protobuf.git"
  25. [dependencies.protobuf_macros]
  26. git = "https://github.com/plietar/rust-protobuf-macros.git"
  27. [dependencies.rust-gmp]
  28. git = "https://github.com/plietar/rust-gmp.git"
  29. [dependencies.shannon]
  30. git = "https://github.com/plietar/rust-shannon.git"
  31. [dependencies.readall]
  32. git = "https://github.com/plietar/rust-readall.git"
  33. [dependencies.portaudio]
  34. git = "https://github.com/mvdnes/portaudio-rs"
  35. [dependencies.vorbis]
  36. git = "https://github.com/plietar/vorbis-rs"
  37. [build-dependencies]
  38. vergen = "*"