Cargo.toml 822 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "librespot-connect"
  3. version = "0.1.0"
  4. authors = ["Paul Lietar <paul@lietar.net>"]
  5. description="The discovery and Spotify Connect logic for librespot"
  6. license="MIT"
  7. [dependencies.librespot-core]
  8. path = "../core"
  9. version = "0.1.0"
  10. [dependencies.librespot-playback]
  11. path = "../playback"
  12. version = "0.1.0"
  13. [dependencies.librespot-protocol]
  14. path = "../protocol"
  15. version = "0.1.0"
  16. [dependencies]
  17. base64 = "0.10"
  18. futures = "0.1"
  19. hyper = "0.11"
  20. log = "0.4"
  21. num-bigint = "0.2"
  22. protobuf = "2.8.1"
  23. rand = "0.7"
  24. serde = "1.0"
  25. serde_derive = "1.0"
  26. serde_json = "1.0"
  27. tokio-core = "0.1"
  28. url = "1.7"
  29. sha-1 = "0.8"
  30. hmac = "0.7"
  31. aes-ctr = "0.3"
  32. block-modes = "0.3"
  33. dns-sd = { version = "0.1.3", optional = true }
  34. libmdns = { version = "0.2", optional = true }
  35. [features]
  36. default = ["libmdns"]
  37. with-dns-sd = ["dns-sd"]