Cargo.toml 729 B

123456789101112131415161718192021222324252627282930313233343536
  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. futures = "0.1.8"
  14. hyper = "0.11.2"
  15. lazy_static = "0.2.0"
  16. log = "0.3.5"
  17. num-bigint = "0.1.35"
  18. num-integer = "0.1.32"
  19. num-traits = "0.1.36"
  20. protobuf = "1.1"
  21. rand = "0.3.13"
  22. rpassword = "0.3.0"
  23. rust-crypto = "0.2.36"
  24. serde = "0.9.6"
  25. serde_derive = "0.9.6"
  26. serde_json = "0.9.5"
  27. shannon = "0.2.0"
  28. tokio-core = "0.1.2"
  29. tokio-io = "0.1"
  30. uuid = { version = "0.4", features = ["v4"] }
  31. [build-dependencies]
  32. rand = "0.3.13"
  33. vergen = "0.1.0"