Cargo.toml 832 B

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