Cargo.toml 905 B

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