Cargo.toml 547 B

123456789101112131415161718192021222324252627
  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.4.0"
  9. byteorder = "1.0"
  10. bytes = "0.4"
  11. futures = "0.1.8"
  12. lewton = "0.9.3"
  13. log = "0.3.5"
  14. num-bigint = "0.1.35"
  15. num-traits = "0.1.36"
  16. rust-crypto = "0.2.36"
  17. tempfile = "2.1"
  18. tokio = "0.1.2"
  19. tremor = { git = "https://github.com/plietar/rust-tremor", optional = true }
  20. vorbis = { version ="0.1.0", optional = true }
  21. [features]
  22. with-tremor = ["tremor"]
  23. with-vorbis = ["vorbis"]