Cargo.toml 496 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.5"
  9. byteorder = "1.3"
  10. futures = "0.1"
  11. lewton = "0.9"
  12. log = "0.4"
  13. num-bigint = "0.2"
  14. num-traits = "0.2"
  15. tempfile = "3.1"
  16. aes-ctr = "0.3"
  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"]