Cargo.toml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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 = "librespot"
  11. path = "src/main.rs"
  12. [dependencies.librespot-protocol]
  13. path = "protocol"
  14. [dependencies]
  15. bit-set = "~0.4.0"
  16. byteorder = "~0.5.1"
  17. eventual = "~0.1.6"
  18. getopts = "~0.2.14"
  19. hyper = { version = "0.9.1", default-features = false }
  20. #json_macros = "~0.3.0"
  21. lazy_static = "~0.2.0"
  22. linear-map = "1.0"
  23. lmdb-rs = "0.7.0"
  24. num = "~0.1.30"
  25. protobuf = "~1.0.15"
  26. rand = "~0.3.13"
  27. rpassword = "~0.2.2"
  28. rust-crypto = "~0.2.34"
  29. rustc-serialize = "~0.3.16"
  30. tempfile = "~2.1.3"
  31. time = "~0.1.34"
  32. url = "~0.5.0"
  33. log = "0.3.5"
  34. env_logger = "0.3.2"
  35. shannon = { git = "https://github.com/plietar/rust-shannon" }
  36. vorbis = "~0.0.14"
  37. tremor = { git = "https://github.com/plietar/rust-tremor", optional = true }
  38. dns-sd = { version = "~0.1.1", optional = true }
  39. portaudio = { git = "https://github.com/mvdnes/portaudio-rs", optional = true }
  40. libpulse-sys = { git = "https://github.com/astro/libpulse-sys", optional = true }
  41. json_macros = { git = "https://github.com/plietar/json_macros" }
  42. protobuf_macros = { git = "https://github.com/plietar/rust-protobuf-macros" }
  43. clippy = { version = "*", optional = true }
  44. openssl = { version = "0.7", optional = true }
  45. [build-dependencies]
  46. vergen = "~0.1.0"
  47. syntex = { version = "^0.32.0", optional = true }
  48. protobuf_macros = { git = "https://github.com/plietar/rust-protobuf-macros" }
  49. json_macros = { git = "https://github.com/plietar/json_macros" }
  50. [features]
  51. discovery = ["dns-sd"]
  52. with-syntex = ["syntex", "protobuf_macros/with-syntex", "json_macros/with-syntex"]
  53. with-tremor = ["tremor"]
  54. facebook = ["hyper/ssl", "openssl"]
  55. portaudio-backend = ["portaudio"]
  56. pulseaudio-backend= ["libpulse-sys"]
  57. static-appkey = []
  58. default = ["with-syntex", "portaudio-backend"]