Cargo.toml 928 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. [package]
  2. name = "librespot-core"
  3. version = "0.1.2"
  4. authors = ["Paul Lietar <paul@lietar.net>"]
  5. build = "build.rs"
  6. description="The core functionality provided by librespot"
  7. license="MIT"
  8. edition = "2018"
  9. [dependencies.librespot-protocol]
  10. path = "../protocol"
  11. version = "0.1.2"
  12. [dependencies]
  13. base64 = "0.10"
  14. byteorder = "1.3"
  15. bytes = "0.4"
  16. error-chain = { version = "0.12", default_features = false }
  17. futures = "0.1"
  18. httparse = "1.3"
  19. hyper = "0.11"
  20. hyper-proxy = { version = "0.4", default_features = false }
  21. lazy_static = "1.3"
  22. log = "0.4"
  23. num-bigint = "0.2"
  24. num-integer = "0.1"
  25. num-traits = "0.2"
  26. protobuf = "~2.14.0"
  27. rand = "0.7"
  28. serde = "1.0"
  29. serde_derive = "1.0"
  30. serde_json = "1.0"
  31. shannon = "0.2.0"
  32. tokio-codec = "0.1"
  33. tokio-core = "0.1"
  34. tokio-io = "0.1"
  35. url = "1.7"
  36. uuid = { version = "0.7", features = ["v4"] }
  37. sha-1 = "0.8"
  38. hmac = "0.7"
  39. pbkdf2 = "0.3"
  40. aes = "0.3"
  41. [build-dependencies]
  42. rand = "0.7"
  43. vergen = "3.0.4"