Cargo.toml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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.2.0"
  16. byteorder = "~0.4.2"
  17. eventual = "~0.1.5"
  18. getopts = "~0.2.14"
  19. #json_macros = "~0.3.0"
  20. lazy_static = "~0.1.15"
  21. num = "~0.1.30"
  22. protobuf = "~1.0.15"
  23. rand = "~0.3.13"
  24. rpassword = "~0.1.1"
  25. rust-crypto = "~0.2.34"
  26. rustc-serialize = "~0.3.16"
  27. tempfile = "~2.0.0"
  28. time = "~0.1.34"
  29. tiny_http = "~0.5.1"
  30. url = "~0.5.2"
  31. vorbis = "~0.0.14"
  32. dns-sd = { version = "~0.1.1", optional = true }
  33. portaudio = { git = "https://github.com/mvdnes/portaudio-rs" }
  34. json_macros = { git = "https://github.com/plietar/json_macros" }
  35. protobuf_macros = { git = "https://github.com/plietar/rust-protobuf-macros" }
  36. shannon = { git = "https://github.com/plietar/rust-shannon" }
  37. [build-dependencies]
  38. vergen = "~0.1.0"
  39. syntex = { version = "*", optional = true }
  40. protobuf_macros = { git = "https://github.com/plietar/rust-protobuf-macros" }
  41. json_macros = { git = "https://github.com/plietar/json_macros" }
  42. [features]
  43. discovery = ["dns-sd"]
  44. with-syntex = ["syntex", "protobuf_macros/with-syntex", "json_macros/with-syntex"]
  45. default = ["with-syntex"]