Cargo.toml 909 B

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