Cargo.toml 510 B

1234567891011121314151617181920212223242526
  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. bytes = "0.4"
  11. futures = "0.1"
  12. lewton = "0.9"
  13. log = "0.4"
  14. num-bigint = "0.2"
  15. num-traits = "0.2"
  16. tempfile = "3.1"
  17. aes-ctr = "0.3"
  18. tremor = { git = "https://github.com/plietar/rust-tremor", optional = true }
  19. vorbis = { version ="0.1.0", optional = true }
  20. [features]
  21. with-tremor = ["tremor"]
  22. with-vorbis = ["vorbis"]