Cargo.toml 858 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.3.13"
  17. eventual = "~0.1.4"
  18. getopts = "~0.2.14"
  19. lazy_static = "~0.1.14"
  20. num = "~0.1.27"
  21. protobuf = "~1.0.4"
  22. rand = "~0.3.11"
  23. rpassword = "~0.0.5"
  24. rust-crypto = "~0.2.31"
  25. time = "~0.1.32"
  26. tempfile = "~1.1.1"
  27. vorbis = "~0.0.12"
  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"