Cargo.toml 642 B

1234567891011121314151617181920212223242526272829
  1. [package]
  2. name = "librespot-discovery"
  3. version = "0.1.0"
  4. authors = ["Paul Lietar <paul@lietar.net>"]
  5. [dependencies.librespot-core]
  6. path = "../core"
  7. [dependencies]
  8. base64 = "0.5.0"
  9. futures = "0.1.8"
  10. hyper = "0.11.2"
  11. log = "0.3.5"
  12. num-bigint = "0.1.35"
  13. protobuf = "1.1"
  14. rand = "0.3.13"
  15. rust-crypto = { git = "https://github.com/awmath/rust-crypto.git", branch = "avx2" }
  16. serde = "0.9.6"
  17. serde_derive = "0.9.6"
  18. serde_json = "0.9.5"
  19. tokio-core = "0.1.2"
  20. url = "1.3"
  21. dns-sd = { version = "0.1.3", optional = true }
  22. mdns = { git = "https://github.com/plietar/rust-mdns", optional = true }
  23. [features]
  24. default = ["mdns"]
  25. with-dns-sd = ["dns-sd"]