Cargo.toml 620 B

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