Cargo.toml 707 B

123456789101112131415161718192021222324252627282930313233343536
  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.10"
  13. futures = "0.1"
  14. hyper = "0.11"
  15. log = "0.4"
  16. num-bigint = "0.2"
  17. protobuf = "2.7"
  18. rand = "0.7"
  19. serde = "1.0"
  20. serde_derive = "1.0"
  21. serde_json = "1.0"
  22. tokio-core = "0.1"
  23. url = "1.7"
  24. sha-1 = "0.8"
  25. hmac = "0.7"
  26. aes-ctr = "0.3"
  27. block-modes = "0.3"
  28. dns-sd = { version = "0.1.3", optional = true }
  29. mdns = { git = "https://github.com/plietar/rust-mdns", optional = true }
  30. [features]
  31. default = ["mdns"]
  32. with-dns-sd = ["dns-sd"]