Cargo.toml 903 B

1234567891011121314151617181920212223242526272829303132333435
  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. error-chain = { version = "0.9.0", default_features = false }
  12. futures = "0.1.8"
  13. hyper = { git = "https://github.com/hyperium/hyper" }
  14. lazy_static = "0.2.0"
  15. log = "0.3.5"
  16. num-bigint = "0.1.35"
  17. num-integer = "0.1.32"
  18. num-traits = "0.1.36"
  19. protobuf = "1.1"
  20. rand = "0.3.13"
  21. rpassword = "0.3.0"
  22. rust-crypto = { git = "https://github.com/awmath/rust-crypto.git", branch = "avx2" }
  23. serde = "0.9.6"
  24. serde_derive = "0.9.6"
  25. serde_json = "0.9.5"
  26. shannon = "0.2.0"
  27. tokio-core = "0.1.2"
  28. uuid = { version = "0.4", features = ["v4"] }
  29. [build-dependencies]
  30. protobuf_macros = { git = "https://github.com/plietar/rust-protobuf-macros", features = ["with-syntex"] }
  31. rand = "0.3.13"
  32. vergen = "0.1.0"