Cargo.toml 688 B

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