Cargo.toml 835 B

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