Cargo.toml 517 B

12345678910111213141516171819202122232425
  1. [package]
  2. name = "librespot-audio"
  3. version = "0.1.0"
  4. authors = ["Paul Lietar <paul@lietar.net>"]
  5. [dependencies.librespot-core]
  6. path = "../core"
  7. [dependencies]
  8. bit-set = "0.4.0"
  9. byteorder = "1.0"
  10. futures = "0.1.8"
  11. lewton = "0.8.0"
  12. log = "0.3.5"
  13. num-bigint = "0.1.35"
  14. num-traits = "0.1.36"
  15. rust-crypto = "0.2.36"
  16. tempfile = "2.1"
  17. tremor = { git = "https://github.com/plietar/rust-tremor", optional = true }
  18. vorbis = { version ="0.1.0", optional = true }
  19. [features]
  20. with-tremor = ["tremor"]
  21. with-vorbis = ["vorbis"]