Cargo.toml 766 B

1234567891011121314151617181920212223242526272829303132333435363738
  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.9.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. lazy_static = "0.2.0"
  18. log = "0.3.5"
  19. num-bigint = "0.1.35"
  20. num-integer = "0.1.32"
  21. num-traits = "0.1.36"
  22. protobuf = "1.1"
  23. rand = "0.3.13"
  24. rpassword = "0.3.0"
  25. rust-crypto = "0.2.36"
  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. uuid = { version = "0.4", features = ["v4"] }
  33. [build-dependencies]
  34. rand = "0.3.13"
  35. vergen = "0.1.0"