Cargo.toml 839 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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 = "2.0.5"
  24. rand = "0.6"
  25. rpassword = "0.3.0"
  26. rust-crypto = "0.2.36"
  27. serde = "0.9.6"
  28. serde_derive = "0.9.6"
  29. serde_json = "0.9.5"
  30. shannon = "0.2.0"
  31. tokio-core = "0.1.2"
  32. tokio-io = "0.1"
  33. url = "1.7.0"
  34. uuid = { version = "0.4", features = ["v4"] }
  35. [build-dependencies]
  36. rand = "0.6"
  37. vergen = "0.1.0"