Cargo.toml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. bit-set = "0.4.0"
  11. byteorder = "1.0"
  12. env_logger = "0.4.0"
  13. getopts = "0.2.14"
  14. hyper = { git = "https://github.com/hyperium/hyper" }
  15. lazy_static = "0.2.0"
  16. linear-map = "1.0"
  17. log = "0.3.5"
  18. num-bigint = "0.1.35"
  19. num-integer = "0.1.32"
  20. num-traits = "0.1.36"
  21. protobuf = "1.1"
  22. rand = "0.3.13"
  23. rpassword = "0.3.0"
  24. rust-crypto = { git = "https://github.com/awmath/rust-crypto.git", branch = "avx2" }
  25. serde = "0.9.6"
  26. serde_json = "0.9.5"
  27. serde_derive = "0.9.6"
  28. shannon = "0.2.0"
  29. tempfile = "2.1"
  30. url = "1.3"
  31. vorbis = "0.1.0"
  32. tremor = { git = "https://github.com/plietar/rust-tremor", optional = true }
  33. alsa = { git = "https://github.com/plietar/rust-alsa", optional = true }
  34. portaudio-rs = { version = "0.3.0", optional = true }
  35. libpulse-sys = { git = "https://github.com/astro/libpulse-sys", optional = true }
  36. mdns = { git = "https://github.com/plietar/rust-mdns" }
  37. error-chain = { version = "0.9.0", default_features = false }
  38. futures = "0.1.8"
  39. tokio-core = "0.1.2"
  40. tokio-proto = "0.1.0"
  41. tokio-signal = "0.1"
  42. uuid = { version = "0.4", features = ["v4"] }
  43. [build-dependencies]
  44. rand = "0.3.13"
  45. vergen = "0.1.0"
  46. protobuf_macros = { git = "https://github.com/plietar/rust-protobuf-macros", features = ["with-syntex"] }