Cargo.toml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. lmdb-rs = "0.7.0"
  23. num = "~0.1.30"
  24. protobuf = "~1.0.15"
  25. rand = "~0.3.13"
  26. rpassword = "~0.2.2"
  27. rust-crypto = "~0.2.34"
  28. rustc-serialize = "~0.3.16"
  29. tempfile = "~2.1.3"
  30. time = "~0.1.34"
  31. url = "~1.0.0"
  32. log = "0.3.5"
  33. env_logger = "0.3.2"
  34. shannon = { git = "https://github.com/plietar/rust-shannon" }
  35. vorbis = "~0.0.14"
  36. tremor = { git = "https://github.com/plietar/rust-tremor", optional = true }
  37. dns-sd = { version = "~0.1.1", optional = true }
  38. portaudio = { git = "https://github.com/mvdnes/portaudio-rs", optional = true }
  39. libpulse-sys = { git = "https://github.com/astro/libpulse-sys", optional = true }
  40. json_macros = { git = "https://github.com/plietar/json_macros" }
  41. protobuf_macros = { git = "https://github.com/plietar/rust-protobuf-macros" }
  42. clippy = { version = "*", optional = true }
  43. openssl = { version = "0.7", optional = true }
  44. [build-dependencies]
  45. vergen = "~0.1.0"
  46. syntex = { version = "^0.31.0", optional = true }
  47. protobuf_macros = { git = "https://github.com/plietar/rust-protobuf-macros" }
  48. json_macros = { git = "https://github.com/plietar/json_macros" }
  49. [features]
  50. discovery = ["dns-sd"]
  51. with-syntex = ["syntex", "protobuf_macros/with-syntex", "json_macros/with-syntex"]
  52. with-tremor = ["tremor"]
  53. facebook = ["hyper/ssl", "openssl"]
  54. portaudio-backend = ["portaudio"]
  55. pulseaudio-backend= ["libpulse-sys"]
  56. static-appkey = []
  57. default = ["with-syntex", "portaudio-backend"]