Cargo.toml 843 B

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