Cargo.toml 587 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "librespot-audio"
  3. version = "0.1.0"
  4. authors = ["Paul Lietar <paul@lietar.net>"]
  5. description="The audio fetching and processing logic for librespot"
  6. license="MIT"
  7. [dependencies.librespot-core]
  8. path = "../core"
  9. version = "0.1.0"
  10. [dependencies]
  11. bit-set = "0.5"
  12. byteorder = "1.3"
  13. futures = "0.1"
  14. lewton = "0.9"
  15. log = "0.4"
  16. num-bigint = "0.2"
  17. num-traits = "0.2"
  18. tempfile = "3.1"
  19. aes-ctr = "0.3"
  20. librespot-tremor = { version = "0.1.0", optional = true }
  21. vorbis = { version ="0.1.0", optional = true }
  22. [features]
  23. with-tremor = ["librespot-tremor"]
  24. with-vorbis = ["vorbis"]