Cargo.toml 904 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.5.0"
  10. byteorder = "1.0"
  11. bytes = "0.4"
  12. error-chain = { version = "0.11.0", default_features = false }
  13. extprim = "1.5.1"
  14. futures = "0.1.8"
  15. httparse = "1.2.4"
  16. hyper = "0.11.2"
  17. hyper-proxy = { version = "0.4.1", default_features = false }
  18. lazy_static = "0.2.0"
  19. log = "0.3.5"
  20. num-bigint = "0.1.35"
  21. num-integer = "0.1.32"
  22. num-traits = "0.1.36"
  23. protobuf = "1.1"
  24. rand = "0.3.13"
  25. rpassword = "0.3.0"
  26. serde = "0.9.6"
  27. serde_derive = "0.9.6"
  28. serde_json = "0.9.5"
  29. shannon = "0.2.0"
  30. tokio-core = "0.1.2"
  31. tokio-io = "0.1"
  32. url = "1.7.0"
  33. uuid = { version = "0.4", features = ["v4"] }
  34. sha-1 = "0.8.0"
  35. hmac = "0.7.0"
  36. pbkdf2 = "0.3.0"
  37. aes = "0.3.0"
  38. block-modes = "0.2.0"
  39. [build-dependencies]
  40. rand = "0.3.13"
  41. vergen = "0.1.0"