Cargo.toml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. bit-set = "~0.2.0"
  16. byteorder = "~0.3.13"
  17. eventual = "~0.1.4"
  18. getopts = "~0.2.14"
  19. lazy_static = "~0.1.14"
  20. mod_path = "~0.1.5"
  21. num = "~0.1.27"
  22. rand = "~0.3.11"
  23. rpassword = "~0.0.5"
  24. rust-crypto = "~0.2.31"
  25. time = "~0.1.32"
  26. tempfile = "~1.1.1"
  27. vorbis = "~0.0.12"
  28. [dependencies.clippy]
  29. git = "https://github.com/Manishearth/rust-clippy.git"
  30. [dependencies.protobuf]
  31. git = "https://github.com/plietar/rust-protobuf.git"
  32. [dependencies.protobuf_macros]
  33. git = "https://github.com/plietar/rust-protobuf-macros.git"
  34. [dependencies.rust-gmp]
  35. git = "https://github.com/plietar/rust-gmp.git"
  36. [dependencies.shannon]
  37. git = "https://github.com/plietar/rust-shannon.git"
  38. [dependencies.portaudio]
  39. git = "https://github.com/mvdnes/portaudio-rs"
  40. [build-dependencies]
  41. vergen = "~0.0.16"