Cargo.toml 768 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. [dependencies.librespot-playback]
  10. path = "../playback"
  11. [dependencies.librespot-protocol]
  12. path = "../protocol"
  13. [dependencies]
  14. base64 = "0.10"
  15. futures = "0.1"
  16. hyper = "0.11"
  17. log = "0.4"
  18. num-bigint = "0.2"
  19. protobuf = "2.8.1"
  20. rand = "0.7"
  21. serde = "1.0"
  22. serde_derive = "1.0"
  23. serde_json = "1.0"
  24. tokio-core = "0.1"
  25. url = "1.7"
  26. sha-1 = "0.8"
  27. hmac = "0.7"
  28. aes-ctr = "0.3"
  29. block-modes = "0.3"
  30. dns-sd = { version = "0.1.3", optional = true }
  31. libmdns = { version = "0.2", optional = true }
  32. [features]
  33. default = ["libmdns"]
  34. with-dns-sd = ["dns-sd"]