Cargo.toml 857 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. lazy_static = "~0.1.15"
  20. num = "~0.1.29"
  21. protobuf = "~1.0.9"
  22. rand = "~0.3.12"
  23. rpassword = "~0.1.0"
  24. rust-crypto = "~0.2.34"
  25. time = "~0.1.34"
  26. tempfile = "~1.1.3"
  27. vorbis = "~0.0.13"
  28. [dependencies.protobuf_macros]
  29. git = "https://github.com/plietar/rust-protobuf-macros.git"
  30. [dependencies.shannon]
  31. git = "https://github.com/plietar/rust-shannon.git"
  32. [dependencies.portaudio]
  33. git = "https://github.com/mvdnes/portaudio-rs"
  34. [build-dependencies]
  35. vergen = "~0.0.16"