Cargo.toml 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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.4.2"
  17. eventual = "~0.1.5"
  18. getopts = "~0.2.14"
  19. json_macros = "~0.2.6"
  20. lazy_static = "~0.1.15"
  21. num = "~0.1.29"
  22. protobuf = "~1.0.10"
  23. rand = "~0.3.12"
  24. rpassword = "~0.1.0"
  25. rust-crypto = "~0.2.34"
  26. rustc-serialize = "~0.3.16"
  27. time = "~0.1.34"
  28. tiny_http = "~0.5.1"
  29. tempfile = "~1.1.3"
  30. url = "~0.5.2"
  31. vorbis = "~0.0.13"
  32. [dependencies.dns-sd]
  33. version = "~0.1.1"
  34. optional = true
  35. [dependencies.protobuf_macros]
  36. git = "https://github.com/plietar/rust-protobuf-macros.git"
  37. [dependencies.shannon]
  38. git = "https://github.com/plietar/rust-shannon.git"
  39. [dependencies.portaudio]
  40. git = "https://github.com/mvdnes/portaudio-rs"
  41. [build-dependencies]
  42. vergen = "~0.0.16"
  43. [features]
  44. default = ["dns-sd"]