Cargo.toml 569 B

123456789101112131415161718192021222324252627
  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. [dependencies]
  10. bit-set = "0.5"
  11. byteorder = "1.3"
  12. futures = "0.1"
  13. lewton = "0.9"
  14. log = "0.4"
  15. num-bigint = "0.2"
  16. num-traits = "0.2"
  17. tempfile = "3.1"
  18. aes-ctr = "0.3"
  19. librespot-tremor = { version = "0.1.0", optional = true }
  20. vorbis = { version ="0.1.0", optional = true }
  21. [features]
  22. with-tremor = ["librespot-tremor"]
  23. with-vorbis = ["vorbis"]