Cargo.toml 580 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. log = "0.3.5"
  12. num-bigint = "0.1.35"
  13. num-traits = "0.1.36"
  14. rust-crypto = { git = "https://github.com/awmath/rust-crypto.git", branch = "avx2" }
  15. tempfile = "2.1"
  16. vorbis = "0.1.0"
  17. tremor = { git = "https://github.com/plietar/rust-tremor", optional = true }
  18. lewton = { version = "0.8.0", optional = true }
  19. [features]
  20. with-tremor = ["tremor"]
  21. with-lewton = ["lewton"]