Cargo.toml 978 B

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