Cargo.toml 601 B

1234567891011121314151617181920212223242526272829
  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. bytes = "0.4"
  14. futures = "0.1"
  15. lewton = "0.9"
  16. log = "0.4"
  17. num-bigint = "0.2"
  18. num-traits = "0.2"
  19. tempfile = "3.1"
  20. aes-ctr = "0.3"
  21. librespot-tremor = { version = "0.1.0", optional = true }
  22. vorbis = { version ="0.1.0", optional = true }
  23. [features]
  24. with-tremor = ["librespot-tremor"]
  25. with-vorbis = ["vorbis"]