Cargo.toml 818 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. futures = "0.1"
  14. httparse = "1.3"
  15. hyper = "0.11"
  16. hyper-proxy = { version = "0.4", default_features = false }
  17. lazy_static = "1.3"
  18. log = "0.4"
  19. num-bigint = "0.2"
  20. num-integer = "0.1"
  21. num-traits = "0.2"
  22. protobuf = "2.8.*"
  23. rand = "0.7"
  24. serde = "1.0"
  25. serde_derive = "1.0"
  26. serde_json = "1.0"
  27. shannon = "0.2.0"
  28. tokio-codec = "0.1"
  29. tokio-core = "0.1"
  30. tokio-io = "0.1"
  31. url = "1.7"
  32. uuid = { version = "0.7", features = ["v4"] }
  33. sha-1 = "0.8"
  34. hmac = "0.7"
  35. pbkdf2 = "0.3"
  36. aes = "0.3"
  37. [build-dependencies]
  38. rand = "0.7"
  39. vergen = "3.0.4"